v.to.lines.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <h2>DESCRIPTION</h2>
  2. <em>v.to.lines</em> converts vector polygons (boundaries) to lines as well
  3. as vector points to lines via triangulations.
  4. <h2>NOTES</h2>
  5. <em>v.to.lines</em> is able to convert point data (via triangulation)
  6. and areas to lines (via boundary to line conversion).
  7. This script is a wrapper script to <em>v.category</em>,
  8. <em>v.delaunay</em>, and <em>v.edit</em>.
  9. <p>
  10. In order to convert an ordered list of coordinates (ASCII table with
  11. x,y[,z] coordinates) into vector lines, use <em>v.in.lines</em>.
  12. <h2>EXAMPLES</h2>
  13. The examples are for the North Carolina sample dataset location:
  14. <h3>Area to line conversion</h3>
  15. <div class="code"><pre>
  16. v.to.lines input=boundary_municp output=boundary_municp_lines
  17. </pre></div>
  18. <h3>Point to line conversion</h3>
  19. <div class="code"><pre>
  20. v.to.lines input=geodetic_pts output=geodetic_pts_lines
  21. </pre></div>
  22. <h2>SEE ALSO</h2>
  23. <em>
  24. <a href="v.category.html">v.category</a>,
  25. <a href="v.delaunay.html">v.delaunay</a>,
  26. <a href="v.edit.html">v.edit</a>,
  27. <a href="v.in.lines.html">v.in.lines</a>,
  28. <a href="v.to.points.html">v.to.points</a>,
  29. <a href="v.type.html">v.type</a>
  30. </em>
  31. <h2>AUTHOR</h2>
  32. Luca Delucchi, Fondazione Edmund Mach
  33. <p>
  34. <i>Last changed: $Date$</i>