~ubuntu-branches/ubuntu/wily/grass/wily

« back to all changes in this revision

Viewing changes to scripts/r.unpack/r.unpack.html

Tags: 7.0.0~rc1+ds1-1~exp1
* New upstream release candidate.
* Repack upstream tarball, remove precompiled Python objects.
* Add upstream metadata.
* Update gbp.conf and Vcs-Git URL to use the experimental branch.
* Update watch file for GRASS 7.0.
* Drop build dependencies for Tcl/Tk, add build dependencies:
  python-numpy, libnetcdf-dev, netcdf-bin, libblas-dev, liblapack-dev
* Update Vcs-Browser URL to use cgit instead of gitweb.
* Update paths to use grass70.
* Add configure options: --with-netcdf, --with-blas, --with-lapack,
  remove --with-tcltk-includes.
* Update patches for GRASS 7.
* Update copyright file, changes:
  - Update copyright years
  - Group files by license
  - Remove unused license sections
* Add patches for various typos.
* Fix desktop file with patch instead of d/rules.
* Use minimal dh rules.
* Bump Standards-Version to 3.9.6, no changes.
* Use dpkg-maintscript-helper to replace directories with symlinks.
  (closes: #776349)
* Update my email to use @debian.org address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<h2>DESCRIPTION</h2>
 
2
 
 
3
<em>r.unpack</em> allows unpacking raster maps packed by <em><a href="r.pack.html">r.pack</a></em>.
 
4
 
 
5
<h2>NOTES</h2>
 
6
 
 
7
Name of the raster map is determined by default from pack file
 
8
internals. Optionaly the name can be given by <b>output</b> parameter.
 
9
 
 
10
Currently only 2D raster maps are supported.
 
11
 
 
12
<h2>EXAMPLE</h2>
 
13
 
 
14
Pack up raster map <i>aspect</i> into <i>aspect.pack</i> file.
 
15
 
 
16
<div class="code"><pre>
 
17
r.pack input=aspect
 
18
</pre></div>
 
19
 
 
20
the raster map can be afterwards unpacked by
 
21
 
 
22
<div class="code"><pre>
 
23
r.unpack input=aspect.pack
 
24
</pre></div>
 
25
 
 
26
<h2>SEE ALSO</h2>
 
27
 
 
28
<em>
 
29
  <a href="r.pack.html">r.pack</a>,
 
30
  <a href="r.in.gdal.html">r.in.gdal</a>
 
31
</em>
 
32
 
 
33
<h2>AUTHORS</h2>
 
34
 
 
35
Original Bash script written by Hamish Bowman, Otago University, New Zealand as GRASS AddOns
 
36
<br>
 
37
Converted to Python and updated for GRASS 7 by Martin Landa, CTU in Prague, Czech Republic
 
38
 
 
39
<p><i>Last changed: $Date: 2011-11-08 13:24:20 -0800 (Tue, 08 Nov 2011) $</i>