Clear Filters
Clear Filters

plotting world map contour onto spatial data plot with different (long, lat)

3 views (last 30 days)
I have a spatial data file of size(192 96), and latitude and longitude vectors that correspond to that data file.
For the latitude vector, numbers range from -88.5722 to 88.5722 in increments of 1.8496; size(latitude)= (96 1).
For the longitude vector, numbers range from 0 to 358.1250 in increments of of 1.8750; size(longitude)= (192 1).
I was wondering how to plot the contours of the world map (such as topo.map) using the latitudes and longitudes from my data file (so that the world map contour will be on the same axis as the spatial data plot).

Answers (1)

Chad Greene
Chad Greene on 9 Feb 2015
Assuming you have the Mapping Toolbox,
worldmap('world') % initializes map
contourm(lat,lon,z) % plots contours
c = load('coast.mat'); % loads coastlines
plotm(c.lat,c.long) % plots coastlines

Community Treasure Hunt

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

Start Hunting!