r.semantic.label.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <h2>DESCRIPTION</h2>
  2. <em>r.semantic.label</em> allows assigning a semantic label information to a
  3. single raster map or to a list of specified raster maps. Semantic
  4. label can be defined by <b>semantic_label</b> option. Already assigned semantic
  5. label can be removed from a specified raster map
  6. by <b>operation=remove</b>. The module also allows printing detailed
  7. semantic label information already assigned to a raster map
  8. by <b>operation=print</b>.
  9. <p>
  10. Either a single raster map or a list of raster maps can be given
  11. by <b>map</b> option.
  12. <h2>NOTES</h2>
  13. Note that <i>only raster maps from the current mapsets</i> can be modified.
  14. <p>
  15. For more information about semantic label concept and supported sensors
  16. (generic multispectral system, Landsat-5, Landsat-7, Landsat-8, Sentinel-2)
  17. see the <em><a href="i.band.library.html">i.band.library</a></em> module.
  18. <p>
  19. Semantic labels are supported by temporal GRASS modules. Name of
  20. STRDS can be extended by band identifier in order to filter the result
  21. by a semantic label. See
  22. <em><a href="t.register.html#support-for-band-references">t.register</a></em>,
  23. <em><a href="t.rast.list.html#filtering-the-result-by-band-references">t.rast.list</a></em>,
  24. <em><a href="t.info.html#space-time-dataset-with-band-references-assigned">t.info</a></em>
  25. and <em><a href="t.rast.mapcalc.html#band-reference-filtering">t.rast.mapcalc</a></em>
  26. modules for examples.
  27. <h2>EXAMPLES</h2>
  28. <h3>Assign semantic label to a single raster map</h3>
  29. <div class="code"><pre>
  30. r.semantic.label map=T33UVR_20180506T100031_B01 semantic_label=S2_1
  31. </pre></div>
  32. <h3>Assign semantic label to a list of raster maps</h3>
  33. <div class="code"><pre>
  34. r.semantic.label map=T33UVR_20180506T100031_B01,T33UVR_20180521T100029_B01 semantic_label=S2_1,S2_1
  35. </pre></div>
  36. <h3>Assign different semantic labels to a list of raster maps</h3>
  37. <div class="code"><pre>
  38. r.semantic.label map=T33UVR_20180506T100031_B01,T33UVR_20180506T100031_B02 semantic_label=S2_1,S2_2
  39. </pre></div>
  40. <h3>Remove semantic label from a list of raster maps</h3>
  41. <div class="code"><pre>
  42. r.semantic.label map=T33UVR_20180506T100031_B01,T33UVR_20180506T100031_B02 operation=remove
  43. </pre></div>
  44. <h3>Print semantic label information about single raster map</h3>
  45. <div class="code"><pre>
  46. r.semantic.label map=T33UVR_20180506T100031_B01 operation=print
  47. </pre></div>
  48. <h3>Print extended semantic label information for a list of raster map</h3>
  49. <div class="code"><pre>
  50. r.semantic.label map=T33UVR_20180506T100031_B01,T33UVR_20180506T100031_B02 operation=print
  51. </pre></div>
  52. <h2>KNOWN ISSUES</h2>
  53. <em>r.semantic.label</em> allows managing semantic labels only related to 2D
  54. raster maps.
  55. <h2>SEE ALSO</h2>
  56. <em>
  57. <a href="i.band.library.html">i.band.library</a>,
  58. <a href="r.info.html">r.info</a>,
  59. <a href="r.support">r.support</a>
  60. </em>
  61. <h2>AUTHORS</h2>
  62. Martin Landa<br>
  63. Development sponsored by <a href="https://www.mundialis.de/en">mundialis
  64. GmbH &amp; Co. KG</a> (for the <a href="https://openeo.org">openEO</a>
  65. EU H2020 grant 776242)