r.pack.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <h2>DESCRIPTION</h2>
  2. <em>r.pack</em> collects raster map elements and support files and
  3. compressed them using <em>gzip</em> algorithm for copying. The packed
  4. file can be afterwards unpacked
  5. by <em><a href="r.unpack.html">r.unpack</a></em>.
  6. <h2>NOTES</h2>
  7. Name of the pack file is determined by default from <b>input</b>
  8. parameter. Optionaly the name can be given by <b>output</b> parameter.
  9. Currently only 2D raster maps are supported.
  10. <h2>EXAMPLE</h2>
  11. Pack up raster map <i>aspect</i> into <i>aspect.pack</i> file.
  12. <div class="code"><pre>
  13. r.pack input=aspect
  14. </pre></div>
  15. the raster map can be afterwards unpacked by
  16. <div class="code"><pre>
  17. r.unpack input=aspect.pack
  18. </pre></div>
  19. <h2>SEE ALSO</h2>
  20. <em>
  21. <a href="r.unpack.html">r.unpack</a>,
  22. <a href="r.in.gdal.html">r.in.gdal</a>,
  23. <a href="g.copy.html">g.copy</a>,
  24. <a href="r.proj.html">r.proj</a>,
  25. <a href="v.unpack.html">v.unpack</a>
  26. </em>
  27. <h2>AUTHORS</h2>
  28. Original Bash script written by Hamish Bowman, Otago University, New Zealand
  29. <br>
  30. Converted to Python and updated for GRASS 7 by Martin Landa, Czech Technical University in Prague, Czech Republic
  31. <p>
  32. <i>Last changed: $Date$</i>