v.in.lines.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <h2>DESCRIPTION</h2>
  2. Imports a stream of ASCII x,y[,z] coordinates as a line or series of lines.
  3. <h2>NOTES</h2>
  4. Input ASCII coordinates are simply a series of "x&nbsp;y" data points.
  5. Lines are separated by a row containing "<tt>NaN&nbsp;NaN</tt>".
  6. <!-- TODO:? Line categories start at 1 and increase sequentially. -->
  7. <p>The user can import 3D lines by providing 3 columns of data in the input
  8. stream and using the <b>-z</b> flag.
  9. <p>This script is a simple wrapper around the <em>v.in.mapgen</em> module.
  10. <h2>EXAMPLE</h2>
  11. <div class="code"><pre>
  12. v.in.lines in=- out=two_lines separator=, &lt;&lt;EOF
  13. 167.846717,-46.516653
  14. 167.846663,-46.516645
  15. 167.846656,-46.516644
  16. 167.846649,-46.516644
  17. 167.846642,-46.516643
  18. NaN,NaN
  19. 167.846520,-46.516457
  20. 167.846528,-46.516461
  21. 167.846537,-46.516464
  22. 167.846535,-46.516486
  23. 167.846544,-46.516489
  24. 167.846552,-46.516493
  25. EOF
  26. </pre></div>
  27. <h2>SEE ALSO</h2>
  28. <em>
  29. <a href="v.in.ascii.html">v.in.ascii</a>,
  30. <a href="v.in.mapgen.html">v.in.mapgen</a>,
  31. <a href="v.out.ascii.html">v.out.ascii</a>,
  32. <a href="d.graph.html">d.graph</a>,
  33. <a href="r.in.poly.html">r.in.poly</a>
  34. </em>
  35. <h2>AUTHOR</h2>
  36. Hamish Bowman<br>
  37. Dunedin, New Zealand
  38. <p><i>Last changed: $Date$</i>