Kyle Barron
Kyle Barron
I was able to compile and install it locally with ``` virtualenv env source ./env/bin/activate pip install --no-cache-dir -e '.[dev,test,geopandas]' ``` but trying to use it with ```py import pyarrow...
I merged in https://github.com/geopandas/pyogrio/pull/351 which simplified this a lot. I'm still struggling with my dev environment though. In particular getting ``` ModuleNotFoundError: No module named 'pyogrio._ogr' ``` when trying to...
Ah yes I've hit this so many times. It's also why compiled rust projects advise to use a different name for the folder containing python code.
I added some conditional compilation statements around other functions that were trying to use GDAL Arrow struct definitions ``` IF CTE_GDAL_VERSION >= (3, 8, 0): ``` so let's see if...
I'll try to add some tests, but the meat of the PR should be ready for review
It looks like the geometry is not being picked up correctly. E.g trying to write GeoJSON I see: ``` { "type": "Feature", "properties": { "pop_est": 3856181, "continent": "Europe", "name": "Bosnia...
With the latest changes, I require a `geometry_name` argument and it appears to now be correctly interpreting the geometry column. _But_ the written file is still getting corrupted. Here the...
> I think the last commit should fix this, by ensuring we properly close the GDAL dataset object. Do you have an idea why CI is failing?
Thanks for pushing on this; this is really exciting!
Honestly it was mostly @jorisvandenbossche , but I'm happy to have got the ball rolling!