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
This is actually incorrect for some transformations.
For example: http://epsg.io/5070
Transforming the corners omits large portion at the south of the extent, which is then actually not part of the displayed "projected bounds".
This happens because the projection bends significantly:
Possible solution is to transform a grid of points (instead of just 2) and calculate bbox of those points to be the projected bounds.
The text was updated successfully, but these errors were encountered:
Currently, the "projected bounds" are calculated by transforming the WGS84 bounds corners (two points): https://github.com/klokantech/epsg.io/blob/a8fc040f35565989cf0523f6929c85958955962c/app.py#L828
This is actually incorrect for some transformations.
For example: http://epsg.io/5070
Transforming the corners omits large portion at the south of the extent, which is then actually not part of the displayed "projected bounds".
This happens because the projection bends significantly:
Possible solution is to transform a grid of points (instead of just 2) and calculate bbox of those points to be the projected bounds.
The text was updated successfully, but these errors were encountered: