www.gusucode.com > map 案例源码 matlab代码程序 > map/CreateSouthernHemisphereConicProjectionExample.m

    %% Create Southern Hemisphere Conic Projection
% This example shows how to create a map of the standard version of the
% Lambert Conformal Conic projection into the Southern Hemisphere. The
% example overrides the default standard parallels and sets the
% |MapLatLimit| and |MapLonLimit| properties.
%%
% Load the coastline data MAT file, |coastlines.mat|. 

% Copyright 2015 The MathWorks, Inc.

load coastlines
%%
% Display the map, setting the |MapLatLimit| and |MapLonLimit| properties.
figure('Color','w')
axesm('lambertstd','MapParallels',[-75 -15], ...
		'MapLatLimit',[-75 -20],'MapLonLimit',[-30 60])
axis off
framem on
gridm on
mlabel on
plabel on
geoshow(coastlat,coastlon,'DisplayType','polygon')