Replies: 1 comment 2 replies
-
This is no longer needed in PROJ 6+ from what I understand. I would recommend asking the PROJ mailing list for clarification on that: https://lists.osgeo.org/mailman/listinfo/proj/ Side note: This is the recommended pyproj 2+ method for creating transformer to use with shapely/pygeos transform: project = pyproj.Transformer.from_crs("EPSG:31468", "EPSG:4326", always_xy=True)
poly = transform(project.transform, poly) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have an input polygon in epsg:31468 which I need to transform to epsg:4326, the code I'm currently using is this:
Loading both polygons into QGIS, I get an offset of ~ 2 meters for every point, though.
I got a suggestion on reddit /r/gis, that I may also need a datum transformation by using a towgs parameter - but I don't know which value I need to pick.
And there was another comment wether pyproj actually allows datum transformations?
Any help is appreciated!
Beta Was this translation helpful? Give feedback.
All reactions