2
我在MATLAB中繪製了一個在Mercator(平面)世界地圖上的輪廓圖。在MATLAB中使用Geoshow的顏色映射圖
而且我成功了,但是當我使用
geoshow('landareas.shp','FaceColor', [0.5 1.0 0,5])
它消除了地圖上的等高線圖。
我的代碼是:
axesm('mercator','MapLatLimit',[-50 90],'MapLonLimit',[0 250])
frame on;
grid on;
plotm(lat,long,'k')
contourfm(x,y,z)
反正是有應用
geoshow('landareas.shp','Display',[0.5 1.0 0.5])
MasterPJ - 非常感謝。我一直需要一個答案。我幾乎放棄了。 – user1608954
請幫我看看這個查詢:http://stackoverflow.com/questions/39155845/attaching-customized-colormap-to-geoshow-in-matlab – Munish