v.to.lines.html 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. <h2>EXAMPLES</h2>
  10. The examples are for the North Carolina sample dataset location:
  11. <h3>Area to line conversion</h3>
  12. <div class="code"><pre>
  13. v.to.lines input=boundary_municp output=boundary_municp_lines
  14. </pre></div>
  15. <h3>Point to line conversion</h3>
  16. <div class="code"><pre>
  17. v.to.lines input=geodetic_pts output=geodetic_pts_lines
  18. </pre></div>
  19. <h2>SEE ALSO</h2>
  20. <em>
  21. <a href="v.category.html">v.category</a>,
  22. <a href="v.delaunay.html">v.delaunay</a>,
  23. <a href="v.edit.html">v.edit</a>,
  24. <a href="v.to.points.html">v.to.points</a>,
  25. <a href="v.type.html">v.type</a>
  26. </em>
  27. <h2>AUTHOR</h2>
  28. Luca Delucchi, Fondazione Edmund Mach
  29. <p>
  30. <i>Last changed: $Date$</i>