-
Hi @snowman2 and community! I'm having issues consistently building a compound horizontal + vertical CRS in an automated manner for any DEM, which involves converting a 3D CRS to 2D. The horizontal CRS is known from the metadata, while the vertical CRS can sometimes be user-input based. Why the issue arose If I understood the several linked issues that I read (e.g., #630, https://gis.stackexchange.com/questions/436401/transforming-epsg4979-to-given-wkt-epsg6654), this is now the expected behaviour? Issue CRS("EPSG:4979+5773")
while 2D work: CRS("EPSG:4326+5773") I need to be able to find the 2D version of a CRS (e.g., But I could not find a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Yes, you have to explicitly specify a 2D or 3D CRS.
Normally, I would suggest using @rouault do you have any suggestions? |
Beta Was this translation helpful? Give feedback.
For the record (if someone sees this discussion): we wrapped
CRS.to_2d()
inpyproj
in #1267.