How to plot a map like this in Matlab?
21 次查看(过去 30 天)
显示 更早的评论
The attached map was created using GMT based on the Earth Relief data. I wonder if anyone knows how to plot it using Matlab?
Many thanks!
2 个评论
Jaya
2021-10-31
I never tried something like this but you might want to see the accepted answer in this link. https://www.mathworks.com/matlabcentral/answers/79113-how-to-generate-a-geographical-heat-map-worldwide-country-level-granularity
Morten Sparre Andersen
2021-11-2
If you have access tio GMT, it may be more convenient making the map in GMT. Otherwise, the Mapping toolbox may be your best bet for a quick fix to your problem.
However, if you have the time, find the right projection, create the code to generate an X an Y array from the Lat-Lot data. If you interpolates to a regular grid, you may use imagesc to create the topographic grid. however, you can get a preview using mesh.
Next draw geodetic grid on top, if required.
You can find geodetic to UTM and back packages on the Matlab Central.
Good luck, Morten
回答(1 个)
Kelly Kearney
2021-11-3
Do you want to replicate that plot exactly, or just the general concept? If the former, I'd recommend looking at m_map, since it allows for a similar map border style, colormaps, etc. With the Mapping Toolbox, you should be able to get a close replica, though:
worldmap('north america')
geoshow('landareas.shp', 'facecolor', 'none')
Both m_map and the Mapping toolbox include a variety of options for plotting projected raster data, but you'll have to download the desired terrain data prior to that.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Mapping Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!