How to read an plot with coordinates a .tiff file?
22 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Philippe Corner
am 20 Jan. 2020
Beantwortet: Walter Roberson
am 4 Feb. 2020
I'm currently using this code:
[X,map]= imread('Z1.tiff');
image(X);
colormap(map);
This is the file im trying to read: http://www.mediafire.com/view/dzifgp0s3ima3z2/Z1.tiff/file
And this is the plot im trying to obtain:
Any idea why my code is not working?
2 Kommentare
Akzeptierte Antwort
Walter Roberson
am 4 Feb. 2020
[X, R] = geotiffread('Z1.tiff');
mapshow(X(:,:,1:3), R)
%touch up the labeling
ax = gca;
ax.XAxis.Exponent = 0;
ax.YAxis.Exponent = 0;
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!