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

📄 sg_ll2xy.m

📁 任意边界结构正交曲线网格生成程序
💻 M
字号:
function [x, y] = sg_ll2xy(lon, lat)% sg_ll2xy -- Stub for m_map-like "m_ll2xy" function.%  [x, y] = sg_ll2xy(lon, lat) returns the (x, y) mappings%   that correspond to geographic positions (lon, lat),%   given in degrees. % Copyright (C) 1999 Dr. Charles R. Denham, ZYDECO.%  All Rights Reserved.%   Disclosure without explicit written consent from the%    copyright owner does not constitute publication. % Version of 27-Dec-1999 13:37:03.% Updated    25-Oct-2000 10:53:22.[theProjection, theCenter] = sg_proj;if isempty(theCenter)	theCenter = [0 0 0];endplon = theCenter(1);plat = theCenter(2);pang = theCenter(3);switch lower(theProjection)case 'mercator'	[x, y] = sg_mercator(lon, lat, 0, plon, plat, pang);case 'transverse mercator'	[x, y] = sg_mercator(lon, lat, 0, 0, 0, 90);case 'stereographic'	[x, y] = sg_stereographic(lon, lat, 0, plon, plat, pang);case 'lambert equal area'	[x, y] = sg_lambert_equal_area(lon, lat, 0, plon, plat, pang);otherwise	disp([' ## No such projection: ' theProjection])end

⌨️ 快捷键说明

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