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

3 次查看(过去 30 天)
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).

回答(1 个)

Chad Greene
Chad Greene 2015-2-9
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

类别

Help CenterFile Exchange 中查找有关 Lighting, Transparency, and Shading 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by