File: v.pack.html

package info (click to toggle)
grass 8.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 277,040 kB
  • sloc: ansic: 460,798; python: 227,732; cpp: 42,026; sh: 11,262; makefile: 7,007; xml: 3,637; sql: 968; lex: 520; javascript: 484; yacc: 450; asm: 387; perl: 157; sed: 25; objc: 6; ruby: 4
file content (40 lines) | stat: -rw-r--r-- 1,077 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<h2>DESCRIPTION</h2>

<em>v.pack</em> collects (packs) vector map elements and support files
in GRASS Database and creates an compressed file using <em>gzip</em>
algorithm. This file can be used to copy the vector map to another
machine. The packed file can be afterwards unpacked
by <em><a href="v.unpack.html">v.unpack</a></em>.

<h2>NOTES</h2>

Name of the pack file is determined by default from <b>input</b>
parameter. Optionally the name can be given by <b>output</b> parameter.

<h2>EXAMPLE</h2>

Pack up vector map <i>random_point</i> into <i>random_point.pack</i> file.

<div class="code"><pre>
v.pack input=random_point
</pre></div>

the vector map can be afterwards unpacked by

<div class="code"><pre>
v.unpack input=random_point.pack
</pre></div>

<h2>SEE ALSO</h2>

<em>
  <a href="v.unpack.html">v.unpack</a>,
  <a href="v.in.ogr.html">v.in.ogr</a>,
  <a href="g.copy.html">g.copy</a>,
  <a href="v.proj.html">v.proj</a>,
  <a href="r.unpack.html">r.unpack</a>
</em>

<h2>AUTHOR</h2>

Luca Delucchi, Fondazione E. Mach (Italy), based on the <em>r.pack</em> code