Color Map with Geoshow
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am plotting a contour over the mercator(planar) world map.
And I am successful but when I use the
geoshow('landareas.shp','FaceColor', [0.5 1.0 0,5])
it eliminates the contour plot on the map.
My code is:
axesm('mercator','MapLatLimit',[-50 90],'MapLonLimit',[0 250])
frame on;
grid on;
plotm(lat,long,'k')
contourfm(x,y,z)
Is there anyway to apply the
geoshow('landareas.shp','Display',[0.5 1.0 0.5])
without losing the contour map.
Thanks,
Amanda
0 comentarios
Respuestas (1)
Walter Roberson
el 24 de Ag. de 2012
It would look to me as if you should have a "hold on" after the plotm() call.
Ver también
Categorías
Más información sobre Map Display en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!