How can I create the Basemaps subplots in matlab

Please, How can I create this kind of basemap subplots in matlab

3 Comments

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.
@Walter Roberson please can you give a prototype?
[Z,R] = egm96geoid;
[C,h] = contourm(Z,R, 'fill', 'on');
xlabel("Longitude")
ylabel("Latitude")
clegendm(C,h,-1)

Sign in to comment.

Answers (0)

Asked:

TTA
on 21 Jul 2023

Commented:

on 21 Jul 2023

Community Treasure Hunt

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

Start Hunting!