Geotiffwrite is ploting the map upside down! (latitude only)
10 ビュー (過去 30 日間)
古いコメントを表示
I have a brazilian map in matlab (to study precipitation). When I try to convert the metrics results to geotiff (to plot in ArcGis), it is going upside down (i mean, the lattitude is inverted, but the longitude is ok).
Why is this happening? What Can I do?
1 件のコメント
Les Beckham
2018 年 2 月 25 日
Perhaps the latitude values are positive? For Brazil (in the southern hemisphere) they should be negative.
回答 (2 件)
Image Analyst
2018 年 2 月 25 日
Try this:
plot(.......... % or whatever you do
% Get the axes object.
ax = gca
% Flip the y axis direction.
ax.YDir = 'reverse'
Ana Tobon
2022 年 12 月 20 日
It may be late for the person who originally asked this question, but I will leave an answer here in case someone is struggling with the same issue. I had the same problem for a dataset of South America, which includes both positive and negative latitudes. The problem was the way I was defining the spatial reference R, with georasterref. I went to the documentation and found that it was not recommended, instead, there is georefcells. It works in a similar way BUT it allows to set if the columns should start north or south. This solved the problem!
1 件のコメント
vineetha vincent
2023 年 5 月 10 日
I also faced the same issue . https://fr.mathworks.com/help/map/ref/georefcells.html this solved peoblem.
参考
カテゴリ
Help Center および File Exchange で Map Display についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!