how to change my lat and lon value to more precise notation ?

1 回表示 (過去 30 日間)
Akim Mahmud
Akim Mahmud 2018 年 1 月 29 日
コメント済み: Walter Roberson 2018 年 2 月 7 日
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

採用された回答

Walter Roberson
Walter Roberson 2018 年 1 月 29 日
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 件のコメント
Akim Mahmud
Akim Mahmud 2018 年 1 月 29 日
thanks very much. looks like it worked but it added negative signs in front the numbers. How do i get rid of the negative signs ( please see the attached ) ? Thanks again
Walter Roberson
Walter Roberson 2018 年 2 月 7 日
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.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by