Last active
June 8, 2016 21:26
-
-
Save glw/0e340a987acdc1a49814 to your computer and use it in GitHub Desktop.
gdal compress and mosaic
This file contains hidden or 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
#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