How to read an plot with coordinates a .tiff file?

39 Ansichten (letzte 30 Tage)
Philippe Corner
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);
And this is the plot im trying to obtain:
Screen Shot 2020-01-19 at 7.55.09 PM.png
Any idea why my code is not working?
  2 Kommentare
KSSV
KSSV am 20 Jan. 2020
Why you think your code is not working?
Philippe Corner
Philippe Corner am 4 Feb. 2020
Thats what im trying to ask

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
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;

Weitere Antworten (0)

Kategorien

Mehr zu Geographic 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!

Translated by