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

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개)

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

카테고리

도움말 센터File Exchange에서 Contour Plots에 대해 자세히 알아보기

질문:

2014년 11월 28일

답변:

2015년 2월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by