?? m_gshhs_i.m
字號:
function m_gshhs_i(varargin);% M_GSHHS_I Add a coastline to a given map using the 'intermediate' resolution of% the Global Self-consistant Hierarchical High-resolution % Shorelines.%% M_GSHHS_I( (standard line option,...,...) ) draws the coastline% as a simple line.% M_GSHHS_I('patch' ( ,standard patch options,...,...) ) draws the % coastline as a number of patches. %% M_GSHHS_I('save',FILENAME) saves the extracted coastline data% for the current projection in a file FILENAME. This allows % speedier replotting using M_USERCOAST(FILENAME). % % See also M_PROJ, M_GRID, M_COAST, M_GSHHS_L, M_GSHHS_H, M_GSHHS_C % M_USERCOAST % Rich Pawlowicz (rich@ocgy.ubc.ca) 15/June/98%%% This software is provided "as is" without warranty of any kind. But% it's mine, so you can't sell it.FILNAME='private/gshhs_i.b';% Set current projection to geographicCurrentmap=m_coord('set');m_coord('geographic');if length(varargin)>1 & strcmp(varargin{1},'save'), [ncst,Area,k]=mu_coast('i',FILNAME); eval(['save ' varargin{2} ' ncst k Area']);else mu_coast('i',FILNAME,varargin{:},'tag','m_gshhs_i');end;m_coord(Currentmap.name);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -