1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <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 packed
- file can be afterwards unpacked
- by <em><a href="r.unpack.html">r.unpack</a></em>.
- <h2>NOTES</h2>
- Name of the pack file is determined by default from <b>input</b>
- parameter. Optionaly the name can be given by <b>output</b> parameter.
- Currently only 2D raster maps are supported.
- <h2>EXAMPLE</h2>
- Pack up raster map <i>aspect</i> into <i>aspect.pack</i> file.
- <div class="code"><pre>
- r.pack input=aspect
- </pre></div>
- the raster map can be afterwards 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.out.gdal.html">r.in.gdal</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>
|