how to change my lat and lon value to more precise notation ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Akim Mahmud
el 29 de En. de 2018
Comentada: Walter Roberson
el 7 de Feb. de 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 comentarios
Respuesta aceptada
Walter Roberson
el 29 de En. de 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 comentarios
Walter Roberson
el 7 de Feb. de 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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Axis Labels en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!