OpenGeoscience/geoutilities

Name: geoutilities

Owner: OpenGeoscience

Description: null

Forked from: dorukozturk/Geospatial_Utilities

Created: 2016-09-21 20:25:31.0

Updated: 2017-11-24 21:09:34.0

Pushed: 2016-09-21 19:17:37.0

Homepage: null

Size: 17

Language: Python

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Geospatial_Utilities

To extract bands 3,2,1 with this order(True Color)

tiff -b 3,2,1 L57.Globe.month07.2011.hh09vv04.h6v1.doy182to212.NBAR.v3.0.hdf

To extract bands 4,3,2 with this order(False Color)

tiff -b 4,3,2 L57.Globe.month07.2011.hh09vv04.h6v1.doy182to212.NBAR.v3.0.hdf

To get a single band 9 (NDVI)

tiff -b 9 L57.Globe.month07.2011.hh09vv04.h6v1.doy182to212.NBAR.v3.0.hdf

To convert all the hdf files to tiffs

tiff -b 3,2,1,9 *.hdf

To overwrite existing tiff files

tiff -b 3,2,1,9 --clobber *.hdf

To specify a different output directory

tiff -b 3,2,1 --clobber -o some/dir *.hdf

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.