Sean Gillies
Sean Gillies
Next pre-release, 1.4a2, with improved support for Python filesystems on 2024-03-01.
We have quite a PR backlog and will need two more alpha releases, I think. One to get Numpy 2 compatible wheels on PyPI and one more with new features...
Closing, inactive.
I've gained some first hand experience with contextvars. It's available for Python versions supported by 1.4. It's going to help a lot.
Deferring to 2.0.
Here's a sorta breaking change that shouldn't be too controversial: make `/vsicurl/` the default HTTP handler. This is the case now for Rasterio, and users appreciate it. My opinion is...
Closing. There's a mismatch between rasterio's reproject API and GDALWarp. GDAL's core warper permits using arbitrary bands of an existing raster as destination, and so does reproject. GDALWarp, on the...
I played around with memray a bit today. Here's what I see with 20 reads and the following code ```python def bar(): with rasterio.Env(aws_unsigned=True) as env: for i in range(20):...
@vincentsarago with memray: https://github.com/bloomberg/memray. It gets more interesting! We can see the memory allocated by numpy (on the top right) as a scratch space (it's 32 MB). ![Screenshot from 2022-12-16...
> What would be helpful to differentiate would be to check the error code returned from the GDAL function to check for success before raising the error. I haven't yet...