René Buffat

Results 139 comments of René Buffat

Did you change any environment variables while install gdal or proj? What is probably happening here is that fiona finds your new gdal 3.1 installation while it is compiled against...

@swiss-knight thanks for all the work! I could reproduce the issue in a fresh ubuntu VM. Rasterio searches first in the wheel directory while Fiona doesn't. Temporarily, you could edit...

@demiurg @rdmurphy The fix is already merged in maint-1.8 branch but not yet released. Until a new release is out, you could either manually apply the fix from https://github.com/Toblerity/Fiona/issues/897#issuecomment-626223187 or...

It is advised not to mix different GDAL installations, e.g. the GDAL included in the Fiona wheels and a system GDAL. The Fiona 1.8.21 wheels include GDAL 3.4.1, the wheels...

@phildias This is a packaging issue that only affects Fiona wheels listed on pypi (The *whl files listed here: https://pypi.org/project/Fiona/#files). If you use another package distribution, such as Anaconda, it...

@dzanaga is this bug still present in Fiona 1.8.16?

The error message `Operation timed out after 1001 milliseconds with 0 bytes received` suggests that there are connection issues to access the data. Does it work with accessing the file...

I never used Fiona with S3, and I currently don't have access to a S3 bucket. This makes it a bit difficult to test. @gcaria Could you check if both...

If the following works ``` import boto3 from fiona.session import AWSSession import fiona with fiona.Env(session=AWSSession(boto3.Session())): with fiona.Env(): fiona.open("s3://path/to/shapefile.shp") ``` I would expect that the following should work too: ``` from...

@sgillies I was thinking about refactoring the test_equal method of the testdata_generator to work with a collection of records instead of individual records and only refactoring the tests using it....