Joris Van den Bossche
Joris Van den Bossche
Thanks Matthew for chiming in. I agree with having the spatial partitions as a GeoSeries, it makes writing code very natural (I updated your original spatial join implementation last week...
We are speaking about "spatial indexing / partitioning" a lot here, but I think there are two distinct aspects: 1) How to store the "spatial partitioning" information, and how to...
Yes, I think it will indeed be interesting to investigate how we can leverage the work around high-level graphs to optimize this. > Another question that someone else may be...
What version of Fiona are you using?
Ah, sorry, I forgot to add `driver='GPKG'` (so it was actually writing a shapefile), so therefore I incorrectly thought it was working for me. I can confirm the error. In...
> QGIS must do something under the hood because the example above writes fine into GPKG. @darribas and what are the geometry types if you read that file? (eg all...
> pyogrio produces an empty GeoJSONSeq file (0 bytes) This is also what the title of the issue says? Although it is annoying that it cannot read such an empty...
Yes, I don't think writing it is a problem, it's just that ogr2ogr also is not able to roundtrip, it can't read the file it has written. If you start...
A question here: what happens if your GeoDataFrame has a "id" column? It seems that then this is preserved in the "properties" of the GeoJSON, but with this PR those...
Ah, cool, the `skip_features` and `max_features` should indeed provide the required functionality to read parts. Regarding releasing the GIL, I was taking a look at the code in io.pyx, and...