Joris Van den Bossche
Joris Van den Bossche
Tackling https://github.com/geopandas/dask-geopandas/issues/284, for now in a minimal way, i.e. keeping as much as possible the current code based on "legacy" dask and then turn that into an expression. For example,...
The `2024.2.0` release of Dask has deprecated the "legacy" `dask.dataframe` API. They are building a new API with "Query Planning" based on new high-level expressions (instead of the current HighLevelGraph),...
See https://github.com/geopandas/dask-geopandas/pull/229
I think in one of the issues/PRs related to adding the Arrow read support we already touched on this topic (about returning a pointer instead of a pyarrow object, so...
We get the warning *"RuntimeWarning: OGRFeatureDefn::GetTemporaryUnsealer() called on a unsealed object"* for various tests in the CI build using GDAL main (see eg https://github.com/geopandas/pyogrio/actions/runs/7870620687/job/21472183960) Related to https://gdal.org/development/rfc/rfc97_feature_and_fielddefn_sealing.html Didn't yet look...
We currently don't support writing binary values (to `OTFBinary` type). We don't support the numpy fixed-width bytes dtypes ("S"), but only the fixed width string: https://github.com/geopandas/pyogrio/blob/6b07e7d8a150f341592a9330760b5aa9fdeb6ce3/pyogrio/_io.pyx#L1454-L1456 and when putting bytes...
We support reading from an in-memory buffer / bytes object (https://github.com/geopandas/pyogrio/issues/22), but not yet writing to it. As a starter, the write path assumes the path is a string (or...
See https://gdal.org/development/rfc/rfc64_triangle_polyhedralsurface_tin.html PR adding Fiona support: https://github.com/Toblerity/Fiona/pull/679. Recent issue: https://github.com/Toblerity/Fiona/issues/1155
Some file formats allow multiple geometry columns, and the GDAL / OGR interface also has APIs to deal with that, so in theory we could support this in pyogrio as...
A couple of changes related to selecting columns in `read_file`: - Publicize to use `columns` (which I think the nicest API): explicitly add to the docstring (and will update the...