Hi Idan,
thanks, that's already quite useful. This is typically the kind of default values I encounter when using GDAL in the command line indeed.
This does not match the values I find when using rasterio's reproject, when nodata is set to None, which would be, e.g.
- uint8: 255 -> ok
- uint16: 65535 -> ok
- int16: 32767 -> ok
- uint32: 999999 -> not the same
- float32: 1e20 -> not the same
- float64: 1e20 -> not the same
Amaury