-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Datum transformation not applied in /map #87
Comments
I have tried a bit more and figured out that the coordinates in the upper right of the map window are in WGS84. The projected or converted coordinates at the bottom are in the local coordinate system. BUT: The datum transformations does not work correctly. I used http://epsg.io/4230-1613/map to convert from WGS84 to ED50 in the North Sea and specified EPSG::1613 to do the job. But, in fact the conversion used is EPSG::1133 - DMA ED50 mean!!! |
As you mentioned, the coordinates in the upper right of the map window are always in WGS84 - which is probably source of confusion on the original problem reported in this ticket. If we use http://epsg.io/4230 as the datum, and compare the transformation:
then both seems to be used correctly on the EPSG.io website... In the second comment you reported another problem - claiming that when you use in the online interface the transformation 1613 you are getting the same results as with transformation 1133. There is a different result for transformation 1613 and 1133. The transformation calculated on a command-line delivers the same result as on the website. http://epsg.io/4230-1613/map
Do you claim one of these results is numerically incorrect? I believe this ticket can be closed. Please confirm. |
Hi Petr, What I don’t understand is that your examples below show coordinates at the bottom of the map which are both from the EPSG:1133 transformation. I.e. 1613 is not used in the first one. Regards, Here are my calculations: 1613: 1133: |
I see. I overooked that. The report bug is acknowledged. The problem is in JavaScript of the /map application. Call to our API is wrong on the page : BTW Could you please drag&drop the screenshots/images to GitHub - they did not go through from your email reply. |
BTW Do you think we could meet on Skype? |
It is fixed now. |
Hi Petr, |
Correct link (also mentioned above) is http://epsg.io/4230-1613/map and http://epsg.io/4230-1133/map The url you mentioned is incorrect (and not linked from the website), because 1613 it is only code for transformation - not for a coordinate system (such as ED50 EPSG:4230). But you are right - the web should report you "404 Not found" instead of showing the map interface to avoid confusion in such case - this is reported under #90. |
Ok, thank you very much! |
In the map window, using ED50 as datum (http://epsg.io/23031/map), conversion from lat, lon to UTM results in wrong UTM easing, northing. Typing in (lat, lon) = (62.0, 3.0) in the input field at the top right, the result at the bottom of the screen is not correct. I get: Easting: 500093.28, Northing: 6874396.79
Using BlueMarble geodetic calculator I get Easting; 500000.0 Northing: 6874345.4
There should be no datum transformation involved. Using http://epsg.io/32631/map and the same parameters the result is: Easting; 500000.0 Northing: 6874180.15 which is equal to the result in BlueMarble.
What am I doing wrong with ED50?
The text was updated successfully, but these errors were encountered: