Contourm, geoshow, and layering issues (R2012b) change
古いコメントを表示
I'm having some problems with contourm and geoshow.
This code produces the intended output, which is a contour map overlaid on top of a map of North America.
if true
%Generate some peak data
lats = 35:54;
lons = -89:-70;
mval = peaks(20);
%make the world map
H1 = worldmap([25 55],[-90,-60]);
setm(gca,'mapprojection','mercator')%,'meridianlabel','off');
coast = load('coast');
states = shaperead('usastatehi', 'UseGeoCoords', true);
geoshow(coast.lat,coast.long);
%geoshow(coast.lat,coast.long,'DisplayType', 'polygon', 'FaceColor', [.45 .60 .30],'edgecolor','black')
%Plot the contours of the data
contourm(lats,lons,mval,'linewidth',2);
end
However, if change to the uncommented geoshow line, which fills in the coastline data to make the land green, the land mass appears to be plotted over the contour plots:
if true
%Generate some peak data
lats = 35:54;
lons = -89:-70;
mval = peaks(20);
%make the world map
H1 = worldmap([25 55],[-90,-60]);
setm(gca,'mapprojection','mercator')%,'meridianlabel','off');
coast = load('coast');
states = shaperead('usastatehi', 'UseGeoCoords', true);
%geoshow(coast.lat,coast.long);
geoshow(coast.lat,coast.long,'DisplayType', 'polygon', 'FaceColor', [.45 .60 .30],'edgecolor','black')
%Plot the contours of the data
contourm(lats,lons,mval,'linewidth',2);
end
I am running version 2012b on a windows 7 machine. When I try this in the linux system (R2012a), the second set of code produces the expected output. Any thoughts?
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Contour Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!