wgs2utm (version 2)

Convert WGS84 coordinates (Latitude, Longitude) into UTM coordinates (northing, easting).
7.5K 次下载
更新时间 2012/2/1

查看许可证

function similar to Rafael Palacios's deg2utm.m but using formulas from "Map Projections - A Working Manual" by J.P. Snyder (1987) for better precision in Southern hemisphere.

This second version allows forcing UTM zone and hemisphere in input, but can still be used like the previous version in which the function finds the appropriate zone.

Examples:
Lat=[48.866667; 34.05; -36.85 ];
Lon=[2.333056; -118.25; 174.783333];
% data zones:
[x1,y1,utmzone1,utmhemi1] = wgs2utm(Lat,Lon)
% forced zone:
[x2,y2,utmzone2,utmhemi2] = wgs2utm(Lat,Lon,60,'S')

引用格式

alexandre schimel (2024). wgs2utm (version 2) (https://www.mathworks.com/matlabcentral/fileexchange/14804-wgs2utm-version-2), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2011b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Coordinate Reference Systems 的更多信息
致谢

参考作品: deg2utm

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.2.0.0

completed descriptions and examples

1.1.0.0

Following requests, this second version allows forcing utm input

1.0.0.0