How can I create the Basemaps subplots in matlab
Show older comments
Please, How can I create this kind of basemap subplots in matlab

3 Comments
Walter Roberson
on 21 Jul 2023
MATLAB has two different ways of handling maps, some of which work on map coordinates and others that work on raster coordinates. I suspect that if you were using map coordinates, that you might end up using contourm for the color portion of those images.
TTA
on 21 Jul 2023
[Z,R] = egm96geoid;
[C,h] = contourm(Z,R, 'fill', 'on');
xlabel("Longitude")
ylabel("Latitude")
clegendm(C,h,-1)
Answers (0)
Categories
Find more on Lighting, Transparency, and Shading 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!