v.pack.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <h2>DESCRIPTION</h2>
  2. <em>v.pack</em> collects (packs) vector map elements and support files
  3. in GRASS Database and creates an compressed file using <em>gzip</em>
  4. algorithm. This file can be used to copy the vector map to another
  5. machine. The packed file can be afterwards unpacked
  6. by <em><a href="v.unpack.html">v.unpack</a></em>.
  7. <h2>NOTES</h2>
  8. Name of the pack file is determined by default from <b>input</b>
  9. parameter. Optionally the name can be given by <b>output</b> parameter.
  10. <h2>EXAMPLE</h2>
  11. Pack up vector map <i>random_point</i> into <i>random_point.pack</i> file.
  12. <div class="code"><pre>
  13. v.pack input=random_point
  14. </pre></div>
  15. the vector map can be afterwards unpacked by
  16. <div class="code"><pre>
  17. v.unpack input=random_point.pack
  18. </pre></div>
  19. <h2>SEE ALSO</h2>
  20. <em>
  21. <a href="v.unpack.html">v.unpack</a>,
  22. <a href="v.in.ogr.html">v.in.ogr</a>,
  23. <a href="g.copy.html">g.copy</a>,
  24. <a href="v.proj.html">v.proj</a>,
  25. <a href="r.unpack.html">r.unpack</a>
  26. </em>
  27. <h2>AUTHORS</h2>
  28. Luca Delucchi, Fondazione E. Mach (Italy), based on the <em>r.pack</em> code
  29. <!--
  30. <p>
  31. <i>Last changed: $Date$</i>
  32. -->