Forráskód Böngészése

clear meaning of packing (use export as in temporal), interlink the modules

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@65228 15284696-431f-4ddb-bdfa-cd5b030d7da7
Vaclav Petras 10 éve
szülő
commit
ec00bf8dc3

+ 2 - 1
raster/r.out.gdal/r.out.gdal.html

@@ -232,7 +232,8 @@ page.
 <a href="r.out.bin.html">r.out.bin</a>,
 <a href="r.out.mat.html">r.out.mat</a>,
 <a href="r.out.png.html">r.out.png</a>,
-<a href="r.out.ppm.html">r.out.ppm</a>
+<a href="r.out.ppm.html">r.out.ppm</a>,
+<a href="r.pack.html">r.pack</a>
 </em>
 
 <h2>REFERENCES</h2>

+ 4 - 1
scripts/r.pack/r.pack.html

@@ -32,7 +32,10 @@ r.unpack input=aspect.pack
 
 <em>
   <a href="r.unpack.html">r.unpack</a>,
-  <a href="r.out.gdal.html">r.in.gdal</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>
 
 

+ 1 - 1
scripts/r.pack/r.pack.py

@@ -14,7 +14,7 @@
 #############################################################################
 
 #%module
-#% description: Packs up a raster map and support files for copying.
+#% description: Exports a raster map as GRASS GIS specific archive file
 #% keyword: raster
 #% keyword: export
 #% keyword: copying

+ 2 - 1
scripts/r.unpack/r.unpack.html

@@ -27,7 +27,8 @@ r.unpack input=aspect.pack
 
 <em>
   <a href="r.pack.html">r.pack</a>,
-  <a href="r.in.gdal.html">r.in.gdal</a>
+  <a href="r.in.gdal.html">r.in.gdal</a>,
+  <a href="v.pack.html">v.pack</a>
 </em>
 
 <h2>AUTHORS</h2>

+ 1 - 1
scripts/r.unpack/r.unpack.py

@@ -14,7 +14,7 @@
 #############################################################################
 
 #%module
-#% description: Unpacks a raster map packed with r.pack.
+#% description: Imports a raster map as GRASS GIS specific archive file (packed with r.pack)
 #% keyword: raster
 #% keyword: import
 #% keyword: copying

+ 14 - 4
scripts/v.pack/v.pack.html

@@ -1,15 +1,18 @@
 <h2>DESCRIPTION</h2>
 
-<em>v.pack</em> collects vector map elements and support files and
-compressed them using <em>gzip</em> algorithm for copying. The packed
-file can be afterwards unpacked
+<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. Optionaly 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.
@@ -24,13 +27,20 @@ the vector map can be afterwards unpacked by
 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="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>AUTHORS</h2>
 
 Luca Delucchi, Fondazione E. Mach (Italy), based on the <em>r.pack</em> code
+
+<p><i>Last changed: $Date$</i>

+ 1 - 1
scripts/v.pack/v.pack.py

@@ -15,7 +15,7 @@
 #############################################################################
 
 #%module
-#% description: Packs up a vector map and support files for copying.
+#% description: Exports a vector map as GRASS GIS specific archive file
 #% keyword: vector
 #% keyword: export
 #% keyword: copying

+ 2 - 1
scripts/v.unpack/v.unpack.html

@@ -25,7 +25,8 @@ v.unpack input=random_point.pack
 
 <em>
   <a href="v.pack.html">v.pack</a>,
-  <a href="v.in.ogr.html">v.in.ogr</a>
+  <a href="v.in.ogr.html">v.in.ogr</a>,
+  <a href="r.pack.html">r.pack</a>
 </em>
 
 <h2>AUTHORS</h2>

+ 1 - 1
scripts/v.unpack/v.unpack.py

@@ -15,7 +15,7 @@
 #############################################################################
 
 #%module
-#% description: Unpacks a vector map packed with v.pack.
+#% description: Imports a vector map as GRASS GIS specific archive file (packed with v.pack)
 #% keyword: vector
 #% keyword: import
 #% keyword: copying

+ 5 - 3
temporal/t.rast.export/t.rast.export.html

@@ -2,7 +2,7 @@
 
 This module exports a space time raster dataset as a tar archive. The
 archive contains the raster maps either as GeoTIFF files or as GRASS
-binary files exported using <em>r.out.bin</em>. The map specific color tables
+binary files exported using <em>r.pack</em>. The map specific color tables
 are exported in case of GeoTIFF files. In addition several metadata files
 are created in the archive that describe the temporal layout.
 All time stamps are stored in the file "list.txt". For each map
@@ -122,7 +122,10 @@ Files:
 <em>
 <a href="t.rast.import.html">t.rast.import</a>,
 <a href="t.create.html">t.create</a>,
-<a href="t.info.html">t.info</a>
+<a href="t.info.html">t.info</a>,
+<a href="r.out.gdal.html">r.out.gdal</a>,
+<a href="r.pack.html">r.pack</a>,
+<a href="t.vect.export.html">t.vect.export</a>
 </em>
 
 <h2>AUTHOR</h2>
@@ -130,4 +133,3 @@ Files:
 S&ouml;ren Gebbert, Th&uuml;nen Institute of Climate-Smart Agriculture
 
 <p><i>Last changed: $Date$</i>
-

+ 4 - 1
temporal/t.rast.import/t.rast.import.html

@@ -26,7 +26,10 @@ t.rast.import input=lst_daily.tar.bzip2 output=lst_daily \
 <em>
 <a href="t.rast.export.html">t.rast.export</a>,
 <a href="t.create.html">t.create</a>,
-<a href="t.info.html">t.info</a>
+<a href="t.info.html">t.info</a>,
+<a href="r.in.gdal.html">r.in.gdal</a>,
+<a href="r.unpack.html">r.unpack</a>,
+<a href="t.vect.import.html">t.vect.import</a>
 </em>
 
 <h2>AUTHOR</h2>

+ 4 - 1
temporal/t.vect.export/t.vect.export.html

@@ -113,7 +113,10 @@ Files:
 <em>
 <a href="t.vect.import.html">t.vect.import</a>,
 <a href="t.create.html">t.create</a>,
-<a href="t.info.html">t.info</a>
+<a href="t.info.html">t.info</a>,
+<a href="v.in.ogr.html">v.in.ogr</a>,
+<a href="v.unpack.html">v.unpack</a>,
+<a href="t.rast.export.html">t.rast.export</a>
 </em>
 
 <h2>AUTHOR</h2>

+ 4 - 2
temporal/t.vect.import/t.vect.import.html

@@ -51,7 +51,10 @@ new_map_5@user1|new_map_5|None|user1|2012-05-01 00:00:00|2012-06-01 00:00:00
 <em>
 <a href="t.vect.export.html">t.vect.export</a>,
 <a href="t.create.html">t.create</a>,
-<a href="t.info.html">t.info</a>
+<a href="t.info.html">t.info</a>,
+<a href="v.out.ogr.html">v.out.ogr</a>,
+<a href="v.pack.html">v.pack</a>,
+<a href="t.rast.import.html">t.rast.import</a>
 </em>
 
 <h2>AUTHOR</h2>
@@ -59,4 +62,3 @@ new_map_5@user1|new_map_5|None|user1|2012-05-01 00:00:00|2012-06-01 00:00:00
 S&ouml;ren Gebbert, Th&uuml;nen Institute of Climate-Smart Agriculture
 
 <p><i>Last changed: $Date$</i>
-

+ 2 - 1
vector/v.out.ogr/v.out.ogr.html

@@ -173,7 +173,8 @@ v.out.ogr input=random3d_hull output=random3d_hull.kml format=KML type=face dsco
 <a href="db.out.ogr.html">db.out.ogr</a>,
 <a href="v.external.html">v.external</a>,
 <a href="v.external.out.html">v.external.out</a>,
-<a href="v.in.ogr.html">v.in.ogr</a>
+<a href="v.in.ogr.html">v.in.ogr</a>,
+<a href="v.pack.html">v.pack</a>
 </em>
 
 <h2>AUTHORS</h2>