v.convert.all.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <h2>DESCRIPTION</h2>
  2. <em>v.convert.all</em> converts all GRASS 5.0/5.3/5.4 vectors in the current
  3. mapset into GRASS 7 vectors.
  4. <h2>NOTES</h2>
  5. Vector maps from 5.0/5.3/5.4 and 7 do not interfere. They are stored in different
  6. directories, so the same names can be kept. Old vector maps can be listed with
  7. <em>g.list oldvect</em>.
  8. <p>To convert back from 7 to 6 vector format, use <em>v.build</em> in GRASS 6.
  9. <p>To convert back from 6.0 into the 5.0/5.3/5.4 vector format,
  10. use <em>v.out.ogr</em> (to SHAPE format) and then <em>v.in.shape</em>
  11. in the old GRASS program.
  12. <p>
  13. As this GRASS version uses SQL for attribute management, there are
  14. some <a href=sql.html>SQL restrictings concerning the file names</a>.
  15. This script changes dots (e.g. "foo.bar") in old vector map names into
  16. underline(s) (e.g. "foo_bar").
  17. <h2>EXAMPLE</h2>
  18. To convert all old vector maps in the current mapset to the new vector format:
  19. <p><div class="code"><pre>
  20. v.convert.all
  21. </pre></div>
  22. <h2>SEE ALSO</h2>
  23. <em>
  24. <a href="g.list.html">g.list</a>,
  25. <a href="v.convert.html">v.convert</a>,
  26. <a href="v.out.ascii.html">v.out.ascii</a>,
  27. <a href="v.out.ogr.html">v.out.ogr</a>
  28. </em>
  29. <h2>AUTHOR</h2>
  30. Markus Neteler, ITC-Irst, Trento, Italy
  31. <p><i>Last changed: $Date$</i>