123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284 |
- <h2>DESCRIPTION</h2>
- <em>g.bands</em> prints available band references information of multispectral data
- defined by GRASS GIS. The following multispectral sensors are supported
- by default (other band reference registry files can be added, see below):
- <p>
- Generic multispectral system:
- <ul>
- <li>gen_r Visible red</li>
- <li>gen_g Visible green</li>
- <li>gen_b Visible blue</li>
- <li>gen_pan Visible panchromatic</li>
- <li>gen_nir Near infrared</li>
- </ul>
- <p>
- Landsat-5:
- <ul>
- <li>L5_1 Visible (Blue)</li>
- <li>L5_2 Visible (Green)</li>
- <li>L5_3 Visible (Red)</li>
- <li>L5_4 Near-Infrared</li>
- <li>L5_5 Short-wave infrared</li>
- <li>L5_6 Thermal</li>
- <li>L5_7 Short-wave infrared</li>
- </ul>
- <p>
- Landsat-7:
- <ul>
- <li>L7_1 Visible (Blue)</li>
- <li>L7_2 Visible (Green)</li>
- <li>L7_3 Visible (Red)</li>
- <li>L7_4 Near-Infrared</li>
- <li>L7_5 Near-Infrared</li>
- <li>L7_6 Thermal</li>
- <li>L7_7 Mid-Infrared</li>
- <li>L7_8 Panchromatic</li>
- </ul>
- <p>
- Landsat-8:
- <ul>
- <li>L8_1 Visible (Coastal/Aerosol)</li>
- <li>L8_2 Visible (Blue)</li>
- <li>L8_3 Visible (Green)</li>
- <li>L8_4 Visible (Red)</li>
- <li>L8_5 Near-Infrared</li>
- <li>L8_6 SWIR 1</li>
- <li>L8_7 SWIR 2</li>
- <li>L8_8 Panchromatic</li>
- <li>L8_9 Cirrus</li>
- <li>L8_10 TIRS 1</li>
- <li>L8_11 TIRS 1</li>
- </ul>
- <p>
- Sentinel-2:
- <ul>
- <li>S2_1 Visible (Coastal/Aerosol)</li>
- <li>S2_2 Visible (Blue)</li>
- <li>S2_3 Visible (Green)</li>
- <li>S2_4 Visible (Red)</li>
- <li>S2_5 Vegetation Red Edge 1</li>
- <li>S2_6 Vegetation Red Edge 2</li>
- <li>S2_7 Vegetation Red Edge 3</li>
- <li>S2_8 Near-Infrared</li>
- <li>S2_8A Narrow Near-Infrared</li>
- <li>S2_9 Water vapour</li>
- <li>S2_10 SWIR - Cirrus</li>
- <li>S2_11 SWIR 1</li>
- <li>S2_12 SWIR 2</li>
- </ul>
- <p>
- Band references to be printed can be filtered by a search pattern (or
- fully defined band reference identifier) which can be specified
- by <b>pattern</b> option. For pattern syntax
- see <a href="https://docs.python.org/3/library/re.html#regular-expression-syntax">Python
- regular expression operations</a> documentation. By
- default, <em>g.bands</em> prints all available band references.
- <p>
- Extended metadata (central wavelength, spatial resolution, etc.) is printed
- only when the <b>-e</b> flag is given.
- <h2>NOTES</h2>
- Specific band reference can be assigned to a raster map
- by <em><a href="i.band.html">i.band</a></em> module.
- <p>
- Band reference concept is supported by temporal GRASS modules,
- see <em><a href="t.register.html#support-for-band-references">t.register</a></em>,
- <em><a href="t.rast.list.html#filtering-the-result-by-band-references">t.rast.list</a></em>,
- <em><a href="t.info.html#space-time-dataset-with-band-references-assigned">t.info</a></em>
- and <em><a href="t.rast.mapcalc.html#band-reference-filtering">t.rast.mapcalc</a></em>
- modules for examples.
- <h3>Image collections</h3>
- Image collections are the common data type to reference time series of
- multi band data. It is used in many frameworks
- (see <a href="https://developers.google.com/earth-engine/tutorial_api_04">Google
- Earth Engine API</a> for example) to address multi spectral satellite
- images series. GRASS supports a multi-band raster layer approach
- basically with the imagery group concept
- (<em><a href="i.group.html">i.group</a></em>). A new band reference
- concept is designed in order to support image collections in GRASS
- GIS.
- <h3>Band reference registry files</h3>
- Band reference information is stored in JSON files with a pre-defined
- internal data structure. A minimalistic example is shown below.
- <div class="code"><pre>
- {
- "Sentinel2": {
- "description": "The Sentinel-2 A/B bands",
- "shortcut": "S2",
- "instruments": "MultiSpectral Instrument (MSI) optical and infrared",
- "launched": "23 June 2015 (A); 07 March 2017 (B)",
- "source": "https://sentinel.esa.int/web/sentinel/missions/sentinel-2",
- "bands": {
- "1": {
- "Sentinel 2A" : {
- "central wavelength (nm)": 443.9,
- "bandwidth (nm)": 27
- },
- "Sentinel 2B" : {
- "central wavelength (nm)": 442.3,
- "bandwidth (nm)": 45
- },
- "spatial resolution (meters)": 60,
- "tag": "Visible (Coastal/Aerosol)"
- },
- "2": {
- "Sentinel 2A" : {
- "central wavelength (nm)": 496.6,
- "bandwidth (nm)": 98
- },
- "Sentinel 2B" : {
- "central wavelength (nm)": 492.1,
- "bandwidth (nm)": 98
- },
- "spatial resolution (meters)": 10,
- "tag": "Visible (Blue)"
- }
- }
- }
- }
- </pre></div>
- Each series starts with an unique identifier ("Sentinel2"
- in example above). Required attributes are only two:
- a <tt>shortcut</tt> and <tt>bands</tt>. Note that a <i>shortcut</i>
- must be unique in all band reference registry files. Number of other
- attributes is not defined or even limited (in example above
- only <tt>description</tt> and <tt>instruments</tt> attributes are
- defined). List of bands is defined by a <tt>bands</tt> attribute. Each
- band is defined by an identifier ("1", "2" in example above). List of
- attributes describing each band is not pre-defined or limited. In
- example above each band is described by a <tt>central wavelength
- (nm)</tt>, <tt>bandwidth (nm)</tt>, and a <tt>tag</tt>.
- <p>
- Band reference identifier defined by <b>pattern</b> option is given by
- a <i>shortcut</i> in order to print band reference information for
- whole series or by specific <i>shortcut</i>_<i>band</i>
- identifier.
- <p>
- System-defined registry files are located in GRASS GIS installation
- directory (<tt>$GISBASE/etc/g.bands</tt>). Note that
- currently <i>g.bands</i> allows to manage only system-defined registry
- files. Support for user-defined registry files is planned to be
- implemented, see <a href="#known-issues">KNOWN ISSUES</a> section for
- details.
- <h2>EXAMPLES</h2>
- <h3>Print all available band references</h3>
- <div class="code"><pre>
- g.bands
- S2_1 Visible (Coastal/Aerosol)
- S2_2 Visible (Blue)
- ...
- L7_1 Visible (Blue)
- L7_2 Visible (Green)
- ...
- L8_1 Visible (Coastal/Aerosol)
- L8_2 Visible (Blue)
- ...
- </pre></div>
- The module prints band reference and related tag if defined.
- <h3>Filter band references by a shortcut</h3>
- Only band identifiers related to Sentinel-2 satellite will be
- printed.
- <div class="code"><pre>
- g.bands pattern=S2
- S2_1 Visible (Coastal/Aerosol)
- ...
- S2_12 SWIR 2
- </pre></div>
- <h3>Filter band references by a regular expression</h3>
- Print all available 2nd bands:
- <div class="code"><pre>
- g.bands pattern=.*_2
- S2_2 Visible (Blue)
- L7_2 Visible (Green)
- L8_2 Visible (Blue)
- ...
- </pre></div>
- <h3>Print extended metadata for specified band identifier</h3>
- Extended metadata related to the first band of Sentinel-2 satellite
- will be printed.
- <div class="code"><pre>
- g.bands -e pattern=S2_1
- description: The Sentinel-2 A/B bands
- shortcut: S2
- instruments: MultiSpectral Instrument (MSI) optical and infrared
- launched: 23 June 2015 (A); 07 March 2017 (B)
- source: https://sentinel.esa.int/web/sentinel/missions/sentinel-2
- band: 1
- Sentinel 2A:
- central wavelength (nm): 443.9
- bandwidth (nm): 27
- Sentinel 2B:
- central wavelength (nm): 442.3
- bandwidth (nm): 45
- spatial resolution (meters): 60
- tag: Visible (Coastal/Aerosol)
- </pre></div>
- <h2>KNOWN ISSUES</h2>
- <em>g.bands</em> has currently <b>very limited functionality</b>. Only
- system-defined band references are supported. The final implementation
- will support managing (add, modify, delete) user-defined band
- references.
- <p>
- Only very limited number of band references is currently
- defined, namely Sentinel-2, Landsat7, and Landsat8 satellites. This
- will be improved in the near future.
- <h2>REFERENCES</h2>
- <ul>
- <li><a href="https://developers.google.com/earth-engine/tutorial_api_04">Google Earth Engine API</a></li>
- </ul>
- <h2>SEE ALSO</h2>
- <em>
- <a href="i.band.html">i.band</a>,
- <a href="r.info.html">r.info</a>
- </em>
- <h2>AUTHORS</h2>
- Martin Landa<br>
- Development sponsored by <a href="https://www.mundialis.de/en">mundialis
- GmbH & Co. KG</a> (for the <a href="https://openeo.org">openEO</a>
- EU H2020 grant 776242)
- <!--
- <p>
- <i>Last changed: $Date$</i>
- -->
|