Hi FME folks,
I'm trying to reproject these coordinates:
SRID=3857;POINT(530385.593659309 6910697.223221438) into a EPSG:28992 point.
I notice the result FME gives me differs a lot from other tools / methods - the difference is about 12 cm.
My method:
1: Scraping JSON: "geometrie": "SRID=3857;POINT(530385.593659309 6910697.223221438)"
2: CoordinateSystemSetter: EPSG:3857
2: Use regex to extract Lat / Lon.
3: Create point using VertexCreator
4: Reprojector: Source: EPSG:3857 | Destination: EPSG:28992
Results FME:
- POINT (112820.96207905837 513493.7654737713)
Other tools used:
- Internal geocoding tool: POINT (112820.87254041698 513493.83730794006)
- ChatGPT conversion: POINT (112820.87254041698 513493.83730794006)
- Google Gemini conversion: POINT (112820.87254042 513493.83730794)
- Grok conversion: POINT (112820.87254042 513493.83730794)
- Python conversion: POINT(112820.873 513493.837)
- SQL conversion: POINT (112820.87254041698 513493.83730794006)
So now I wonder, why is FME saying A and all the other tools I've used; B.
What's causing this ~12 cm difference?
Perhaps I've messed up the reprojection proces in FME? If so, how to do it properly?
(I'm using FME(R) 2022.2.3.0 (20230131 - Build 22789 - WIN64))