-
Hello,
How would you retrieve the projection of a GeoParquet file? This is what I am using to write my GeoParquet files. Maybe there is way to add the projection as an option somehow and then retrieve it when loading the data?
Thank you! 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hello! It's currently not possible to specify a projection when writing GeoParquet files. You can inspect the key-value metadata of an existing geoparquet file to extract any projection info manually using the parquet_kv_metadata function (in combination with the json extension to extract the "crs" property form the "geo" kv-metadata key). |
Beta Was this translation helpful? Give feedback.
-
Understood. Thank you @Maxxen ! |
Beta Was this translation helpful? Give feedback.
Hello! It's currently not possible to specify a projection when writing GeoParquet files. You can inspect the key-value metadata of an existing geoparquet file to extract any projection info manually using the parquet_kv_metadata function (in combination with the json extension to extract the "crs" property form the "geo" kv-metadata key).