LANDSAT: Difference between revisions
Jump to navigation
Jump to search
m (→Modules) |
m (rm dupe section) |
||
Line 2: | Line 2: | ||
* data download from [http://landsat.usgs.gov/ USGS LANDSAT archive] and [http://glcfapp.umiacs.umd.edu GLCF] | * data download from [http://landsat.usgs.gov/ USGS LANDSAT archive] and [http://glcfapp.umiacs.umd.edu GLCF] | ||
* USGS GloVis Java app: http://glovis.usgs.gov | |||
* see also the [[Global datasets]] wiki page | |||
== Modules == | == Modules == | ||
Line 11: | Line 13: | ||
* {{AddonCmd|i.landsat.acca}} (addon) - cloud removal | * {{AddonCmd|i.landsat.acca}} (addon) - cloud removal | ||
* {{AddonCmd|i.landsat.dehaze}} (addon) - haze removal | * {{AddonCmd|i.landsat.dehaze}} (addon) - haze removal | ||
== LANDSAT Pre-Processing == | == LANDSAT Pre-Processing == |
Revision as of 08:40, 9 September 2010
LANDSAT Data Availability
- data download from USGS LANDSAT archive and GLCF
- USGS GloVis Java app: http://glovis.usgs.gov
- see also the Global datasets wiki page
Modules
- i.landsat.rgb - auto-enhance colors
- i.atcorr - correct top of atmosphere to surface reflectance
- i.oif - calculate the 3 bands showing the greatest difference (for use as R,G,B bands)
- i.landsat.toar (addon) - top of atmosphere radiance
- i.landsat.acca (addon) - cloud removal
- i.landsat.dehaze (addon) - haze removal
LANDSAT Pre-Processing
Some notes from Yann Chemin:
- Open GRASS GIS, select create location from georeferenced file
- Use r.in.gdal to import into GRASS GIS.
- In grass/add-ons look for any of these to correct from radiance to reflectance at top of atmosphere
- Use i.atcorr to correct top of atmosphere to surface reflectance
Notes
The i.landsat.toar and i.landsat.acca modules want the maps to be named such as "scenename.1, .2, .3", etc. for the different bands. GloVis names like _B10, _B20, _B30, etc.
Here's a little trick with r.reclass to rename it without touching the data or wasting disk space:
BASE=L71074092_09220040924_B
for BAND in 20 30 40 50 61 ; do
BAND1st=`echo $BAND | sed -e 's/0$//'`
r.reclass in="$BASE$BAND" out=$BASE.$BAND1st << EOF
* = *
EOF
done