I want plot like this.. which has lat, lon and 3rd parameter to be plotted on world map
How to plot surface data on world map
6 views (last 30 days)
Show older comments

Answers (1)
Abderrahim. B
on 12 Aug 2022
Edited: Abderrahim. B
on 12 Aug 2022
Hi!
Adapt this example to your case.
[N,R] = egm96geoid;
load coastlines
worldmap("world")
geoshow(N,R,'DisplayType','surface')
geoshow(coastlat,coastlon,'Color','k')
colormap("parula")
colorbar
Hope this helps
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!