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

    %% Create North-Polar Azimuthal Projection
% This example shows how to construct a North-polar Equal-Area Azimuthal 
% projection map extending from the Equator to the pole and centered by 
% default on longitude 0.
%%
% Load coastline data set MAT file, |coastlines.mat|.

% Copyright 2015 The MathWorks, Inc.

load coastlines
%%
% Create map. The call to |axesm| is equivalent to:
% |axesm('eqaazim','MLabelParallel',0,'Origin',[90 0 0],'FLatLimit',[-Inf 90]);|
figure('Color','w')
axesm('eqaazim','MapLatLimit',[0 90])
axis off
framem on
gridm on
mlabel on
plabel on;
setm(gca,'MLabelParallel',0)
%%
% Plot the coast lines.
geoshow(coastlat,coastlon,'DisplayType','polygon')