-
Hi,
but I have Is not natively supported? Thank you |
Beta Was this translation helpful? Give feedback.
Answered by
Maxxen
Aug 4, 2023
Replies: 2 comments 4 replies
-
Parquet isn't yet available as a format in the spatial extension https://github.com/duckdblabs/duckdb_spatial#embedded-gdal-based-inputoutput-functions What are you trying to achieve as you maybe able to do it using parquet and accessing the geometry as WKB. |
Beta Was this translation helpful? Give feedback.
1 reply
-
I think this may work.
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The recommended way to work with parquet for now is to export the geometry columns as wkb (with
ST_AsWKB)
and then import from wkb (withST_GeomFromWKB
). This will give you something similar to GeoParquet, except that we don't write the additional metadata required by the spec.e.g.
Getting the spatial and parquet extensions to work better together is on the roadmap.