ERROR 3: Free disk space available is 55518121984 bytes, whereas 69156878736 are at least necessary. You can disable this check by defining the CHECK_DISK_FREE_SPACE configuration option to FALSE.
I receive this error when trying to re project a .tif file on my EC2 instance. I understand that warping a file requires more memory than the size of the file itself. Is there any way to decrease the amount of memory required?
Here is my command:
gdalwarp --config GDAL_CACHEMAX 2048 -wm 512 -wo NUM_THREADS=ALL_CPUS -srcnodata nodata_masking_values -dstnodata 0 input_file.tif output_file.tif
gdalwarp, but warping to a VRT first, then runninggdal_translatewith compression. – user2856 Apr 28 '20 at 02:35gdalinfo input_file.tif– user2856 Apr 28 '20 at 02:36CHECK_DISK_FREE_SPACE NOafter the--configparameter. – Germán Carrillo Mar 03 '21 at 21:54