-
-
Save arbennett/75c9805945472b012a9d7c34ded86bd4 to your computer and use it in GitHub Desktop.
Stuff for making a movie out of a sequence of GeoTIFFs
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
#!/usr/bin/env bash | |
mogrify -format jpg *.tif | |
convert xc:black xc:red xc:orange xc:yellow xc:green1 xc:cyan xc:blue xc:blueviolet xc:white +append -filter Cubic -flop rainbow_lut.png | |
find *.jpg -exec convert {} -colorspace gray rainbow_lut.png -clut {}.colored.jpg \; | |
convert -antialias -delay 1x15 *.colored.jpg output.mpeg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment