Even Rouault
Even Rouault
CC @atlight
For hatch, reading/setting the background color will be handled per https://github.com/OSGeo/gdal/pull/12735
> if there was a compiler change after macOS 12 likely. If the differences in pixels values are just one, nothing to worry about. There are floating point operations involved...
Did you try GDAL_HTTP_MULTIRANGE=SERIAL ? I wouldn't expect it to make a difference as normally the VSICurlHandle::ReadMultiRange() code path is only taken if GeoTIFF multithreaded decoding is enabled, which you...
> and monitored number of open file descriptors for the PID and observed a few things. Initially, ` ls /proc/$PID/fd | wc -l` would return values between 5-15 during `gdal...
> I don't know if "dissolve" should apply `GEOSLineMerge` (https://postgis.net/docs/ST_LineMerge.html) to the outputs of `UnaryUnion` (thus "dissolving" the linestrings) That would probably be reasonable. Looking at QGIS dissolve algorithms in...
> I want to be able to read and write sharded Zarr v3 files with GDAL. Normally, I should have funding to add read support for reading sharded Zarr within...
> In gdal it is called _operators_ for reference, this termonology comes from Mapserver's equivalent functionality: https://mapserver.org/mapfile/composite.html (COMPOP)
> Interesting, --quiet is configured in the same way but `gdal_calc --quiet` does not complain. --debug is handled by generic GDAL parsing argument code, before the rest of gdal_calc has...
Wouldn't the following be the most natural way: ``` gdal raster create --like output-alpha.tif output-alpha-new.tif gdal vector rasterize --burn 255 -i mask.json -o output-alpha.tif --update mv output-alpha-new.tif output-alpha.tif ```