how to change my lat and lon value to more precise notation ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Akim Mahmud
am 29 Jan. 2018
Kommentiert: Walter Roberson
am 7 Feb. 2018
Hi,
I have these two images ( please see the attached). the first image is taken from a paper and I made the second image. i want to make my 2nd image lat and lon notation look exactly the same as my first image. like 70 degree W inastead of just 70. Is there any way to change the format ? Thanks and i would accept any answers.
-Akim


0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 29 Jan. 2018
Since R2015a or so:
ax = gca;
ax.XRuler.TickLabelFormat = '%g \\circ W';
This will not use the true degree symbol: for that instead use
ax = gca;
ax.XRuler.TickLabelFormat = sprintf('%%g%s W', char(176));
2 Kommentare
Walter Roberson
am 7 Feb. 2018
Unfortunately you cannot control the negative sign by using the TickLabelFormat and will instead need to set the XTickLabel property to contain a cell array of the exact strings you want to use.
If you expect the user to zoom or pan then you will need to add support for a resize callback to change the XTickLabel property to suit the new axes limits.
If you expect the user to be able to use the data cursor then you will need to use datacursormode() and an UpdateFcn to construct the appropriate strings instead of the decimal degrees.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Axis Labels 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!