[GRASS-SVN] r57155 - grass/branches/releasebranch_6_4/imagery
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Jul 15 08:57:34 PDT 2013
Author: neteler
Date: 2013-07-15 08:57:34 -0700 (Mon, 15 Jul 2013)
New Revision: 57155
Modified:
grass/branches/releasebranch_6_4/imagery/imageryintro.html
Log:
imageryintro.html: general intro added
Modified: grass/branches/releasebranch_6_4/imagery/imageryintro.html
===================================================================
--- grass/branches/releasebranch_6_4/imagery/imageryintro.html 2013-07-15 15:55:45 UTC (rev 57154)
+++ grass/branches/releasebranch_6_4/imagery/imageryintro.html 2013-07-15 15:57:34 UTC (rev 57155)
@@ -14,17 +14,55 @@
<h2>Image processing in GRASS GIS</h2>
-<h3>Image data in general</h3>
+<h3>General introduction</h3>
-In GRASS, image data are identical to <a href="rasterintro.html">raster data</a>.
-However, a couple of commands are explicitly dedicated to image
-processing. The geographic boundaries of the raster/imagery file are
-described by the north, south, east, and west fields. These values
-describe the lines which bound the map at its edges. These lines do
-NOT pass through the center of the grid cells at the edge of the map,
-but along the edge of the map itself.
+<b>Digital numbers and physical values (reflection/radiance-at-sensor):</b>
+<p>
+Satellite imagery is commonly stored in Digital Numbers (DN) for
+minimizing the storage volume, i.e. the originally sampled analog
+physical value (color, temperature, etc) is stored a discrete
+representation in 8-16 bits. For example, Landsat data are stored in
+8bit values (i.e., ranging from 0 to 255); other satellite data may
+be stored in 10 or 16 bits. Having data stored in DN, it implies
+that these data are not yet the observed ground reality. Such data
+are called "at-satellite", for example the amount of energy sensed
+by the sensor of the satellite platform is encoded in 8 or more
+bits. This energy is called radiance-at-sensor. To obtain physical
+values from DNs, satellite image providers use a linear transform
+equation <tt>(y = a * x + b)</tt> to encode the radiance-at-sensor
+in 8 to 16 bits. DNs can be turned back into physical values by
+applying the reverse formula <tt>(x = (y - b))</tt>.
+<p>
+The GRASS GIS module <a href="i.landsat.toar.html">i.landsat.toar</a>
+easily transforms Landsat DN to radiance-at-sensor.
+For other satellites, <a href="r.mapcalc.html">r.mapcalc</a> can
+be employed.
+<p>
+<b>Reflection/radiance-at-sensor and surface reflectance</b>
+<p>
+When radiance-at-sensor has been obtained, still the atmosphere
+influences the signal as recorded at the sensor. This atmospheric
+interaction with the sun energy reflected back into space by
+ground/vegetation/soil needs to be corrected. There are two ways to
+apply atmospheric correction for satellite imagery. The simple way
+for Landsat is with <a href="i.landsat.toar.html">i.landsat.toar</a>,
+using the DOS correction method. The more accurate way is using
+<a href="i.atcorr.html">i.atcorr</a> (which works for many satellite
+sensors). The atmospherically corrected sensor data represent
+surface <a href="http://en.wikipedia.org/wiki/reflectance">reflectance</a>,
+which ranges theoretically from 0% to 100%. Note that this level of
+data correction is the proper level of correction to calculate
+vegetation indices.
+<p>
+In GRASS GIS, image data are identical to <a href="rasterintro.html">raster data</a>.
+However, a couple of commands are explicitly dedicated to image
+processing. The geographic boundaries of the raster/imagery file are
+described by the north, south, east, and west fields. These values
+describe the lines which bound the map at its edges. These lines do
+NOT pass through the center of the grid cells at the edge of the
+map, but along the edge of the map itself.
-<P>
+<p>
As a general rule in GRASS:
<ol>
<li> Raster/imagery output maps have their bounds and resolution equal
@@ -35,7 +73,7 @@
</ol>
-<h3>Raster import</h3>
+<h3>Imagery import</h3>
The module <a href="r.in.gdal.html">r.in.gdal</a> offers a common
interface for many different raster and satellite image
@@ -45,7 +83,7 @@
modules are available. Always the full map is imported. Imagery data
can be group (e.g. channel-wise) with <a href="i.group.html">i.group</a>.
-<P>
+<p>
For importing scanned maps, the user will need to create a
x,y-location, scan the map in the desired resolution and save it into
an appropriate raster format (e.g. tiff, jpeg, png, pbm) and then use
More information about the grass-commit
mailing list