Mapping toolbox move labels off frame
1 view (last 30 days)
Show older comments
I am trying to create a map of Antarctica, but my degree labels are on the frame, making them annoying to read. Is there a way to move the labels off of the frame without moving every individual one after the map is generated?
load coastlines
figure('Color','w')%Colors the figure white.
axesm('stereo','Origin',[-90 0],'MapLatLimit',[-90 -55])
axis off;
framem on;
framem('FEdgeColor',[.2 .2 .2],'FLineWidth',[.5])
gridm on;
gridm('plinelocation',10);
mlabel on;
plabel on;
setm(gca, 'MlabelLocation', 30, 'PlabelLocation',10,'MlabelParallel', 'north')
geoshow(coastlat,coastlon,'DisplayType','polygon', 'FaceColor', 'white')
This is what I would like to do.
3 Comments
Chad Greene
on 15 Feb 2019
Careful with that particular "coastline" of Antarctica though. Note that arond the Ross ice shelf it's a grounding line, whereas on the Filchner-Ronne it's the ice edge. Better off using antbounds from the Antarctic Mapping Toolbox for Matlab.
Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!