⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ell2proj.m

📁 Set of tools to perform transformations between projection, ellipsoidal and cartesian coordinates in
💻 M
字号:
function PRO=ell2proj(ELL,L0,sys,UND)

% ELL2PROJ performs transformation from ellipsoidal coordinates to a mapping projection
%
% PRO=ell2proj(ELL,L0,sys,UND)
%
% Also necessary:   Projections.mat   Ellipsoids.mat   (see beneath)
%
% Inputs:  ELL coordinates on ellipsoid as nx2-matrix (longitude, latitude) [degree]
%              2xn-matrices are allowed. Be careful with 2x2-matrices!
%              If for (some) points ellipsoidic height is available, ELL may be a nx3-matrix also.
%              Southern hemisphere is signalled by negative latitude.
%           L0 central meridian longitude [degree] to calculate projection zone identifier
%          sys is the projection system type as string in lower case letters
%              Default is 'gk'.
%              Information about the projection systems is stored in the mat-File "Projections.mat"
%              which has cell-array members named by the projection type, e.g. 'gk' or 'utm' for
%              Gauss-Kruger or UTM projection.
%              The projection cell array fields are
%                   m0  the scaling factor of the central meridian
%               ellips  the underlying ellipsoid as string in lower case letters
%                       The ellipsoids are stored in the mat-File "Ellipsoids.mat" also as
%                       cell-arrays named by the ellipsoid, e.g. 'bessel1841' or 'wgs84'.
%                       The ellipsoid cell array fields are
%                         a  semimajor axis
%                         b  semiminor axis
%                         f  flattening
%               ruleEll the rule to translate the zone identifier ID for the projection zone to
%                       longitude (not used in this m-file)
%                       The zone identifier is taken from the abscissa coordinate of the projection
%                       and is transformed into a addition on the calculated longitude-per-zone.
%                       For example, for GK-projection the rule is "+ID*3" due to 3

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -