Last active
August 29, 2015 14:02
-
-
Save glw/47a6ba2cb75d000390c1 to your computer and use it in GitHub Desktop.
Simple GDAL mosaic of all tifs in folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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