我有以下 OpenGis 数据,我想将其转换为纬度/经度坐标(谷歌地图使用)。
<address xmlns:gml="http://www.opengis.net/gml">
<gml:Point srsName="urn:ogc:def:crs:EPSG::28992">
<gml:pos>142629.0 523546.0</gml:pos>
</gml:Point>
</address>
在EPSG Registry上,我找到了 EPSG:28992 的原点位置。
Latitude of natural origin 52°09'22.178"N
Longitude of natural origin 5°23'15.5"E
Scale factor at natural origin 0.9999079 unity
False easting 155000 metre
False northing 463000 metre
我尝试使用proj4js,但我不知道如何将其放入投影中以及如何获得所需的输出。
我也试过自己计算。但我不知道我在这里做什么,也没有什么真正有意义的:(。