Skip to content

Instantly share code, notes, and snippets.

@robinkraft
Created January 29, 2015 00:19
Show Gist options
  • Save robinkraft/40f0d9dc13db2b5eb458 to your computer and use it in GitHub Desktop.
Save robinkraft/40f0d9dc13db2b5eb458 to your computer and use it in GitHub Desktop.
CLI commands to convert FORMA geotiff to text, with thresholding
gdal_translate -of XYZ ~/Downloads/forma-30104_2005-04-23-0000000000-0000000000.tif /tmp/forma.txt
grep -v "nan" /tmp/forma.txt | awk '$3 > 0.5' > /tmp/forma_hits.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment