I have the following OpenGis data, which I want to convert to a latitude/longitude coordinate (as used by Google maps).
<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>
On the EPSG Registry, I found the origin position of 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
I've tried to using proj4js, but I can't figure out how to put this in a projection and how to get the required output.
I've also tried calculating it myself. But I have no idea what I'm doing here and nothing really made sense :(.