v.to.3d.html 952 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <h2>DESCRIPTION</h2>
  2. The <em>v.to.3d</em> module is used to transform 2D vector features
  3. to 3D. Height (z-coordinate) of 3D vector features can be specified
  4. by <b>height</b> parameter as fixed value or by <b>column</b>
  5. parameter.
  6. <h2>EXAMPLES</h2>
  7. <div class="code"><pre>
  8. # convert z-values from string to double
  9. v.db.addcol map=geodetic_pts columns="Z_VALUE_D double precision"
  10. v.db.update map=geodetic_pts column=Z_VALUE_D qcolumn=Z_VALUE
  11. v.db.select map=geodetic_pts columns=cat,Z_VALUE,Z_VALUE_
  12. # convert 2D vector point map to 3D based on attribute
  13. v.to.3d input=geodetic_pts out=geodetic_pts_3d column=Z_VALUE_D
  14. </pre></div>
  15. <h2>TODO</h2>
  16. <ul>
  17. <li>Implement reverse transformation</li>
  18. </ul>
  19. <h2>SEE ALSO</h2>
  20. <em>
  21. <a href="v.transform.html">v.transform</a>,
  22. <a href="v.extrude.html">v.extrude</a>,
  23. <a href="v.drape.html">v.drape</a>
  24. </em>
  25. <h2>AUTHORS</h2>
  26. Martin Landa, CTU in Prague, Czech Republic
  27. <p>
  28. <i>Last changed: $Date$</i>