Created
July 10, 2013 02:53
-
-
Save celoyd/5963119 to your computer and use it in GitHub Desktop.
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
| # Quickie processing for LC81770782013190LGN00 | |
| # Cf. http://mapbox.com/blog/processing-landsat-8/ | |
| convert -combine *_B{4,3,2}.TIF rgb.tif | |
| convert -resize 200% rgb.tif rgb-big.tif | |
| convert -compose Colorize *_B8.TIF rgb-big.tif -composite pan.tif | |
| convert -channel B -gamma 0.95 -channel RGB -sigmoidal-contrast 60x13% pan.tif ready.tif | |
| convert -crop 3000x2000+8000+6000 ready.tif crater.jpeg | |
| convert -crop 3000x2000+2000+6000 ready.tif cliff.jpeg | |
| convert -crop 3000x2000+11000+4000 ready.tif pan.jpeg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment