René Buffat

Results 139 comments of René Buffat

When I played around with that idea it was an Ubuntu 16.04. I think I compiled then fiona against the ubuntugis repo version of gdal, then reverted back to the...

As @sgillies pointed out in https://github.com/Toblerity/Fiona/issues/469#issuecomment-359489182 the biggest bottleneck in the fiona + geopandas use case is probably the conversion of geometries to Python dictionaries and then again to binary...

There are two requirements that need to enable support for the format. - First, GDAL needs to be compiled with support for Spatialite. From https://gdal.org/drivers/vector/sqlite.html?highlight=spatialite I'm not sure if it...

Fiona will most likely not directly implement Features of Python 3.11 to maintain backward compatibility. From history, the highest probability to cause compatibility issues with new Python versions is Cython....

@henrymartin1 👋 Would it be possible to enable logging and report the output? ``` import logging import fiona logging.basicConfig( level=logging.WARN, ) ``` With that I get the following output: ```...

I think the issue is with the combination of the iteration over a collection and simultaneous random access (meuse[key]) . Opening two separate instances of the same file seems to...

@dotlambda Fiona maintains a list of driver capabilities (read, write, append). This test suggest, that with GDAL 3.5.1 FlatGeobuf gained support for append.

@ronaldocr9803 this issue tracker is to report bugs or other issues. There is a dedicated group for usage related questions: https://fiona.groups.io/g/main > The primary forum for questions about installation and...

https://gdal.org/development/rfc/rfc84_cmake.html > Add CMake as a new build system, and formally deprecate GNUmakefile and NMake base file systems. Users and packagers are encouraged to switch to CMake and actively report...

Looks like I opened a can of worms. This PR: - adds GDAL 3.5 to the CI matrix. - updates install scripts to use cmake. This is necessary for Proj...