Pieter Roggemans
Pieter Roggemans
We also have had the same issue, and it is indeed related to locking issues on CIFS/SMB mounts in containers that lead to problems in SQLite (a Geopackage file is...
Ideally it would be possible to combine it with multiple images as input... So par example something like this: ``` python rast=[("image1.tif", [1, 2, 3]), ("image2.tif", [4, 5, 6])] ```...
Not sure what the effort is, so difficult to judge the cost/benefits, but at least it is quite a bit cleaner. In quite some cases it might even be impossible...
> > Not sure why it is called default_value anyway instead of nodata or a variant. > > I would expect `nodata` to specify a value to be ignored, whereas...
Typically you want to have exceptions being thrown everywhere where explicitly relevant... so having to disable them specifically for these calls is not really an improvement compared to having to...
I'd like not to have an exception when using the transaction functions for datasources that don't support transactions, but having an exception when there is actually an error happening when...
For information, as mentioned by @martinfleis , if you would have to process larger datasets it would probably be more efficiënt to use only vectorized functions. E.g. like this: ```py...
Hello! GDAL has been supporting the use of spatialite functions for many many years. The PR you reference to just added spatialite to the docker container "ubuntu-small" (in may 2022),...
> Looks like when querying the GPKG file, some functions/aliases are missing. Not sure if this is a bug or expected behaviour. Interesting... and a bit weird. I looked a...
In general "as much linting as possible" is a good idea I think, especially with an interpreted language like Python, and ruff makes this quite easy. The reason I thought...