You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The catalog editor generates a max lat coordinate 58.95275, but the correct one is 72.66. This is likely because it transforms individual coordinates which is incorrect. This can be verified with gdaltransform:
$ gdaltransform -s_srs EPSG:3035 -t_srs EPSG:4326
Enter X Y [Z [T]] values separated by space, and press Return.
7400000 5500000
72.906136759009 58.9527510923263 0
It gives 58.952 like the catalog-editor and not 72.66.
The correct way is to transform the whole bbox, e.g. with gdalwarp:
The reprojection is done on the client side, using a library reproject-bbox which is using proj4 as it's dependecy.
I'm aware with the distortion related shift in coordinates near (lat 60, -60) from/to WGS84, I tested some wms samples ( in our backend case, and it was fine).
I'll do more invistigation and see what it is can be done in this case.
Hi @baloola, any update on this issue? I have pushed a couple of md records that use the Austrian projection, but the leaflet map shows something else:
(original discussion here)
Original bbox:
The catalog editor generates a max lat coordinate 58.95275, but the correct one is 72.66. This is likely because it transforms individual coordinates which is incorrect. This can be verified with
gdaltransform
:It gives 58.952 like the catalog-editor and not 72.66.
The correct way is to transform the whole bbox, e.g. with
gdalwarp
:gdalinfo bbox_epsg4326.vrt
:The text was updated successfully, but these errors were encountered: