Skip to content

Instantly share code, notes, and snippets.

@glw
Last active August 29, 2015 14:02
Show Gist options
  • Save glw/47a6ba2cb75d000390c1 to your computer and use it in GitHub Desktop.
Save glw/47a6ba2cb75d000390c1 to your computer and use it in GitHub Desktop.
Simple GDAL mosaic of all tifs in folder
#Compress tif with gdal
gdal_translate -of GTiff -co COMPRESS=DEFLATE -co TILED=NO image1.tif image1_compressed.tif
#copy all tifs to new location
for %I in (image1.tif image2.tif image3.tif image4.tif) do copy %I test\folder\
#mosaic with gdal
gdalwarp --config GDAL_CACHEMAX 3000 -wm 3000 *.tif final_mosaic.tif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment