Text keeps going behind topographic map

1 view (last 30 days)
Hi I've used all the stuff below but my plotted text is always behind the land mass, I can see the last few letters of the sentence poking out of the island so i can see its plotted, how do i get the text to be infront?
surfl
colormap gray
shading interp
view(0,90)
hold on
plot(long, lat);
text(long,lat,'text');

Accepted Answer

David Wilson
David Wilson on 29 Mar 2020
Edited: David Wilson on 29 Mar 2020
Your mountains are covering the text (as they should). So you need to write your text above the highest peak, so that it is seen. Use text(x,y,z,'My text here), and make sure the "z" value is high enough, i.e. bigger than the immediate ground under the text.
[X,Y,Z] = peaks(30);
surfl(X,Y,Z)
colormap gray
shading interp
view(0,90)
hold on
longLow = -1; latLow = 0.5; % will be partially covered
longHi = 0; latHi = 1.5; % will be totally covered
plot(longLow, latLow);
h1 = text(longLow,latLow,11,'textLo'); % altitude of z=11 is above highest mountain
h2 = text(longHi,latHi,11,'textHi');
hold off
  2 Comments
Zara Conti
Zara Conti on 29 Mar 2020
Hi, When i used your code it made my map very fuzzy.
So i did the plot(lon,lat,z) and text(lon,lat,z) and made the z value above any height values on the map
and this came up:
Data must be a single matrix Y or a list of pairs X,Y.
Error in assessednmap (line 19)
plot(-91.4,-0.45,1700);
I just want to be able to label points on my map
David Wilson
David Wilson on 30 Mar 2020
You need to use plot3 (for 3D), not just plain plot.m (Note the 3 in the "plot3" name.)
plot3(-91.4,-0.45,1700); % make sure you include the "3"

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!