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
While reprojecting a geometry I got very confused that my starting geometry got reprojected in place.
I think we should add this info to the documentation and also add a ! to the function name to clarify that the reprojection happens in place.
using GADM
using ArchGDAL
julia> deu = GADM.get("DEU", depth=0)
(geom = ArchGDAL.IGeometry{ArchGDAL.wkbMultiPolygon}[Geometry: MULTIPOLYGON (((7.9864206310001647.5555305480001, ...02)))], GID_0 = ["DEU"], COUNTRY = ["Germany"])
julia> projdeu = ArchGDAL.reproject(only(deu.geom), EPSG(4326), ProjString(newproj))
Geometry: MULTIPOLYGON (((67.8564039238532-13.2639375695037...25)))
julia> deu
(geom = ArchGDAL.IGeometry{ArchGDAL.wkbMultiPolygon}[Geometry: MULTIPOLYGON (((67.8564039238532-13.2639375695037...25)))], GID_0 = ["DEU"], COUNTRY = ["Germany"])
The text was updated successfully, but these errors were encountered:
While reprojecting a geometry I got very confused that my starting geometry got reprojected in place.
I think we should add this info to the documentation and also add a ! to the function name to clarify that the reprojection happens in place.
The text was updated successfully, but these errors were encountered: