简体   繁体   English

将东和北转换为纬度经度坐标

[英]Convert easting and northing to latitude longitude cordinates

I have some easting and northing coordinates .. and I want to convert this coordinates to latitude longitude.. using java or android libraries. 我有一些东经和北经坐标..我想使用Java或android库将此坐标转换为纬度经度。

any suggestions please 任何建议请

That is basically the reverse of projection . 这基本上是投影的反面。 You need to know what projection your Eastings and Northings are in before you can do anything. 在执行任何操作之前,您需要了解Eastings和Northings的投影方式。 Then you can apply the converse of the projection transformation to get Latitudes and Longitudes on a datum. 然后,您可以应用投影变换的反函数来获取基准面上的纬度和经度。 You can either find the transformation (usually a fairly straightforward mathematical function, see the wikipedia link above) and implement it yourself, or use a 3rd-party library such as Geotools or GeoAPI . 您可以找到转换(通常是相当简单的数学函数,请参见上面的Wikipedia链接)并自己实现,也可以使用第三方库(例如GeotoolsGeoAPI)

See also these two useful pages about the often-used Spherical Mercator: 另请参阅关于常用的球形墨卡托的以下两个有用页面:

Spherical Mercator and Google Maps Tiles (Spherical Mercator section) 球形墨卡托Google地图图块 (“球形墨卡托”部分)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM