r.pack.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.out.gdal.html">r.in.gdal</a>
  23. </em>
  24. <h2>AUTHORS</h2>
  25. Original Bash script written by Hamish Bowman, Otago University, New Zealand
  26. <br>
  27. Converted to Python and updated for GRASS 7 by Martin Landa, Czech Technical University in Prague, Czech Republic
  28. <p>
  29. <i>Last changed: $Date$</i>