-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Description
Can I do the conversion from EPSG:32633 to EPSG:4326 [GPS/WGS84] with Geodesy.jl?
I read the documentation and I'm still puzzled on how to do this.
Here is the code using PyCall to pyproj transformations:
using PyCall
py"""
import pyproj
print(pyproj.Transformer.from_crs("EPSG:32633", "EPSG:4326").transform(599445.75,5347365.45))
print(pyproj.Transformer.from_crs("EPSG:4326", "EPSG:32633").transform(48.27168293014, 16.34019877249))
# 1st result: (48.27168293014006, 16.340198772490897)
# 2nd result: (599445.7499999339, 5347365.449999993)
"""
Can I do this with Geodesy?
Metadata
Metadata
Assignees
Labels
No labels