Created
January 29, 2020 11:15
-
-
Save jarnaldich/e347943c0288a3d711baa8d906f09985 to your computer and use it in GitHub Desktop.
RGBIZE DSM with rio calc for use with nextzen DTM tiles #rasterio #rio #dsm #bash
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
#!/bin/bash | |
SRC=$1 | |
DST=$2 | |
rio calc --co COMPRESS=LZW --co BIGTIFF=YES -t uint8 "(asarray (/ (+ 3278 (read 1 1)) 256) (mod (+ 3278 (read 1 1)) 256) (* 256 (- (+ 3278 (read 1 1)) (floor (+ 3278 (read 1 1))))))" $SRC $DST |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment