12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <h2>DESCRIPTION</h2>
- <em>r.pack</em> collects raster map elements and support files and
- compressed them using <em>gzip</em> algorithm for copying. The resulting
- packed file can be afterwards unpacked within a GRASS GIS session
- by <em><a href="r.unpack.html">r.unpack</a></em>.
- Since the selected raster map is not exported but natively stored, the
- current region is not respected. Hence <em>r.pack</em> stores the entire
- raster map.
- <h2>NOTES</h2>
- By default, the name of the pack file is determined from the <b>input</b>
- parameter. Optionally a different name can be given by <b>output</b> parameter.
- Currently only 2D raster maps are supported.
- <h2>EXAMPLE</h2>
- Pack up the entire raster map <i>aspect</i> into <i>aspect.pack</i> file:
- <div class="code"><pre>
- r.pack input=aspect
- </pre></div>
- The packed raster map file <i>aspect.pack</i> can afterwards be unpacked by
- <div class="code"><pre>
- r.unpack input=aspect.pack
- </pre></div>
- <h2>SEE ALSO</h2>
- <em>
- <a href="r.unpack.html">r.unpack</a>,
- <a href="r.in.gdal.html">r.in.gdal</a>,
- <a href="g.copy.html">g.copy</a>,
- <a href="r.proj.html">r.proj</a>,
- <a href="v.unpack.html">v.unpack</a>
- </em>
- <h2>AUTHORS</h2>
- Original Bash script written by Hamish Bowman, Otago University, New Zealand
- <br>
- Converted to Python and updated for GRASS 7 by Martin Landa, Czech Technical University in Prague, Czech Republic
- <!--
- <p>
- <i>Last changed: $Date$</i>
- -->
|