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
I am writing a python script to convert coordinates from EPSG:4937 to EPSG:9895. I am facing an error which is that the EPSG:9895 is not a valid CRS " Invalid projection: EPSG:9895 (Internal Proj Error: proj_create: crs not found). " . When I go to https://epsg.org/ , I can find the CRS in the EPSG Dataset : v10.058. Correct if I am wrong but I think that the pyproj does not take into consideration the latest version of the Dataset which is v10.058.
Could you please tell me how to force pyProj to synchronize with the latest version of EPSG Dataset in order to recognize my CRS ? Thank you in advance!
Here is the code where I encounter the problem :
trans_group = TransformerGroup(CRS("EPSG:4937").to_3d(),CRS("EPSG:9895").to_3d())
(The first one is OK, the second one is not recognizable)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello community!
I am writing a python script to convert coordinates from EPSG:4937 to EPSG:9895. I am facing an error which is that the EPSG:9895 is not a valid CRS " Invalid projection: EPSG:9895 (Internal Proj Error: proj_create: crs not found). " . When I go to https://epsg.org/ , I can find the CRS in the EPSG Dataset : v10.058. Correct if I am wrong but I think that the pyproj does not take into consideration the latest version of the Dataset which is v10.058.
Could you please tell me how to force pyProj to synchronize with the latest version of EPSG Dataset in order to recognize my CRS ? Thank you in advance!
Here is the code where I encounter the problem :
trans_group = TransformerGroup(CRS("EPSG:4937").to_3d(),CRS("EPSG:9895").to_3d())
(The first one is OK, the second one is not recognizable)
Here is my installations :
proj-data-1.8 installed with Anaconda
Beta Was this translation helpful? Give feedback.
All reactions