v.timestamp.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 vector map is printed. If
  4. a date argument is specified, then the timestamp for the vector map is
  5. 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 vector map, use <b>date=none</b>.
  13. <h2>EXAMPLES</h2>
  14. Prints the timestamp for the "lidar" vector map. If there is no
  15. timestamp for "lidar", nothing is printed. If there is a timestamp,
  16. one or two time strings are printed, depending on if the timestamp for
  17. the map consists of a single date or two dates (ie start and end
  18. dates).
  19. <div class="code"><pre>
  20. v.timestamp map=lidar
  21. </pre></div>
  22. Sets the timestamp for "lidar" to the single date "15 sep 1987".
  23. <div class="code"><pre>
  24. v.timestamp map=lidar date='15 sep 1987'
  25. </pre></div>
  26. Sets the timestamp for "lidar" to have the start date "15 sep 1987"
  27. and the end date "20 feb 1988".
  28. <div class="code"><pre>
  29. v.timestamp map=lidar date='15 sep 1987/20 feb 1988'
  30. </pre></div>
  31. Removes the timestamp for the "lidar" vector map.
  32. <div class="code"><pre>
  33. v.timestamp map=lidar date=none
  34. </pre></div>
  35. <h2>KNOWN ISSUES</h2>
  36. Spaces in the timestamp value are required.
  37. <h2>SEE ALSO</h2>
  38. <em>
  39. <a href="v.info.html">v.info</a>,
  40. <a href="r.timestamp.html">r.timestamp</a>,
  41. <a href="r3.timestamp.html">r3.timestamp</a>
  42. </em>
  43. <h2>AUTHOR</h2>
  44. Michael Shapiro, U.S.Army Construction Engineering Research Laboratory
  45. <p><i>Last changed: $Date$</i>