r3.timestamp.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <h2>DESCRIPTION</h2>
  2. This command has 2 modes of operation. If no <b>date</b> argument is
  3. supplied, then the current timestamp for the 3D raster map is
  4. printed. If a date argument is specified, then the timestamp for the
  5. 3D raster map is set to the specified date(s). See examples below.
  6. <p>
  7. See <a href="r.timestamp.html#timestamp-format">TIMESTAMP FORMAT</a>
  8. description for details.
  9. <h2>NOTES</h2>
  10. Strings containing spaces should be quoted. For specifying a range of
  11. time, the two timestamps should be separated by a forward slash. To
  12. remove the timestamp from a 3D raster map, use <b>date=none</b>.
  13. <h2>EXAMPLES</h2>
  14. Prints the timestamp for the "soils" 3D raster map. If there is no
  15. timestamp for soils, nothing is printed. If there is a timestamp, one
  16. or two lines are printed, depending on if the timestamp for the map
  17. consists of a single date or two dates (ie start and end dates).
  18. <div class="code"><pre>
  19. r3.timestamp map=soils
  20. </pre></div>
  21. Sets the timestamp for "soils" to the single date "15 sep 1987".
  22. <div class="code"><pre>
  23. r3.timestamp map=soils date='15 sep 1987'
  24. </pre></div>
  25. Sets the timestamp for "soils" to have the start date "15 sep 1987"
  26. and the end date "20 feb 1988".
  27. <div class="code"><pre>
  28. r3.timestamp map=soils date='15 sep 1987/20 feb 1988'
  29. </pre></div>
  30. Sets the timestamp for "soils" to have the start date "18 feb 2005
  31. 10:30:00" and the end date "20 jul 2007 20:30:00".
  32. <div class="code"><pre>
  33. r3.timestamp map=soils date='18 feb 2005 10:30:00/20 jul 2007 20:30:00'
  34. </pre></div>
  35. Removes the timestamp for the "soils" 3D raster map.
  36. <div class="code"><pre>
  37. r3.timestamp map=soils date=none
  38. </pre></div>
  39. <h2>KNOWN ISSUES</h2>
  40. Spaces in the timestamp value are required.
  41. <h2>SEE ALSO</h2>
  42. <em>
  43. <a href="r3.info.html">r3.info</a>,
  44. <a href="r.timestamp.html">r.timestamp</a>,
  45. <a href="v.timestamp.html">v.timestamp</a>
  46. </em>
  47. <h2>AUTHOR</h2>
  48. Michael Pelizzari<br>
  49. Lockheed Martin Space Systems<br>
  50. based on r.timestamp by Michael Shapiro, <br>
  51. U.S. Army Construction Engineering Research Laboratory
  52. <p><i>Last changed: $Date$</i>