Skip to content

Instantly share code, notes, and snippets.

@glw
Last active June 8, 2016 21:26
Show Gist options
  • Save glw/0e340a987acdc1a49814 to your computer and use it in GitHub Desktop.
Save glw/0e340a987acdc1a49814 to your computer and use it in GitHub Desktop.
gdal compress and mosaic
#as seen on http://blog.cleverelephant.ca/2015/02/geotiff-compression-for-dummies.html
gdal_translate \
-co COMPRESS=JPEG \
-co PHOTOMETRIC=YCBCR \
-co TILED=YES \
5255C.tif 5255C_JPEG_YCBCR.tif
#create overviews
gdaladdo \
--config COMPRESS_OVERVIEW JPEG \
--config PHOTOMETRIC_OVERVIEW YCBCR \
--config INTERLEAVE_OVERVIEW PIXEL \
-r average \
5255C_JPEG_YCBCR.tif \
2 4 8 16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment