Replies: 2 comments 2 replies
-
It does, but it's hidden because it's actually under the
In there you see
So you can pass Edit: |
Beta Was this translation helpful? Give feedback.
-
fixed per OSGeo/gdal#8262 . cf https://lists.osgeo.org/pipermail/gdal-dev/2023-August/057558.html |
Beta Was this translation helpful? Give feedback.
-
I've been doing a number of experiments with Overture building data, see https://beta.source.coop/cholmes/overture
The main thing I've been working on is being able to have a client where you can supply it with a GeoJSON and it'll query a global set of parquet files that have been partitioned and transform it into the GIS format that user wants. I've had some good success using DuckDB (could be gdal/ogr, etc), but recently realized that to get the performance acceptable was to format the data with more row groups - it'd take it from like a couple minutes to ~20 seconds to extract a small number of buildings.
But I couldn't find a GeoParquet tool that fully worked for me to create more row groups:
DuckDB does have the option in their native parquet format, but it doesn't (yet) support GeoParquet output. So I ended up just making https://beta.source.coop/cholmes/overture/geoparquet-3 with 'compatible' Parquet (WKB in geometry column) so I could experiment. But half the point of the admin partitioning is to enable people to just download a file and load it up in QGIS, so I'd really like it to be GeoParquet.
Any other tools that might be an option? And curious from @tschaub / @rouault / @jorisvandenbossche on what's needed to get the option. I can try to do more extensive testing to compare it, but the difference felt drastic. Shoot, just realized I took the version that had bigger row groups offline - I'll try to upload it again so everyone can compare.
Beta Was this translation helpful? Give feedback.
All reactions