In executing gdalwarp on an RGB TIFF to clip out an extent, the output TIFF changes values of 0 within a band to NoData. I cannot find anything explicitly referencing this scenario. Is there a flag to keep the 0's?
gdal_warp_str = '{gdalwarp_path}.exe ' \
'-dstnodata -9999 ' \
'-wo NUM_THREADS=ALL_CPUS ' \
'-co NUM_THREADS=ALL_CPUS ' \
'-q -te {georeferenced_extents} ' \
'{input_raster_path} {output_raster_path}'