How to rotate a map?
14 views (last 30 days)
Show older comments
I have SST data in .nc format and I proceeded with this script
ncinfo('filename')
ncdisp('filename')
variable_name=ncread('filenema','variable_name')
[laty, lonx] = meshgrid (lat,lon)
mean_sst = mean(analysed_sst,3)
imagesc(lon,lat,mean_sst)
and I got this result but the map of South Korea is rotated, what can be the problem?
1 Comment
Dyuman Joshi
on 8 Nov 2023
In the high-level version of the imagesc(), the direction of y-axis is reversed (along with some other changes), as can observed from the figure as well.
Another method to revert it back, aside from Chunru's answer below, is change the y-direction property to normal -
ax = gca;
ax.YDir = 'normal';
Answers (1)
See Also
Categories
Find more on Colormaps in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!