[GRASS-SVN] r65228 - in grass/trunk: raster/r.out.gdal scripts/r.pack scripts/r.unpack scripts/v.pack scripts/v.unpack temporal/t.rast.export temporal/t.rast.import temporal/t.vect.export temporal/t.vect.import vector/v.out.ogr

svn_grass at osgeo.org svn_grass at osgeo.org
Tue May 12 14:12:00 PDT 2015


Author: wenzeslaus
Date: 2015-05-12 14:11:59 -0700 (Tue, 12 May 2015)
New Revision: 65228

Modified:
   grass/trunk/raster/r.out.gdal/r.out.gdal.html
   grass/trunk/scripts/r.pack/r.pack.html
   grass/trunk/scripts/r.pack/r.pack.py
   grass/trunk/scripts/r.unpack/r.unpack.html
   grass/trunk/scripts/r.unpack/r.unpack.py
   grass/trunk/scripts/v.pack/v.pack.html
   grass/trunk/scripts/v.pack/v.pack.py
   grass/trunk/scripts/v.unpack/v.unpack.html
   grass/trunk/scripts/v.unpack/v.unpack.py
   grass/trunk/temporal/t.rast.export/t.rast.export.html
   grass/trunk/temporal/t.rast.import/t.rast.import.html
   grass/trunk/temporal/t.vect.export/t.vect.export.html
   grass/trunk/temporal/t.vect.import/t.vect.import.html
   grass/trunk/vector/v.out.ogr/v.out.ogr.html
Log:
clear meaning of packing (use export as in temporal), interlink the modules

Modified: grass/trunk/raster/r.out.gdal/r.out.gdal.html
===================================================================
--- grass/trunk/raster/r.out.gdal/r.out.gdal.html	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/raster/r.out.gdal/r.out.gdal.html	2015-05-12 21:11:59 UTC (rev 65228)
@@ -232,7 +232,8 @@
 <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>

Modified: grass/trunk/scripts/r.pack/r.pack.html
===================================================================
--- grass/trunk/scripts/r.pack/r.pack.html	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/scripts/r.pack/r.pack.html	2015-05-12 21:11:59 UTC (rev 65228)
@@ -32,7 +32,10 @@
 
 <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>
 
 

Modified: grass/trunk/scripts/r.pack/r.pack.py
===================================================================
--- grass/trunk/scripts/r.pack/r.pack.py	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/scripts/r.pack/r.pack.py	2015-05-12 21:11:59 UTC (rev 65228)
@@ -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

Modified: grass/trunk/scripts/r.unpack/r.unpack.html
===================================================================
--- grass/trunk/scripts/r.unpack/r.unpack.html	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/scripts/r.unpack/r.unpack.html	2015-05-12 21:11:59 UTC (rev 65228)
@@ -27,7 +27,8 @@
 
 <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>

Modified: grass/trunk/scripts/r.unpack/r.unpack.py
===================================================================
--- grass/trunk/scripts/r.unpack/r.unpack.py	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/scripts/r.unpack/r.unpack.py	2015-05-12 21:11:59 UTC (rev 65228)
@@ -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

Modified: grass/trunk/scripts/v.pack/v.pack.html
===================================================================
--- grass/trunk/scripts/v.pack/v.pack.html	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/scripts/v.pack/v.pack.html	2015-05-12 21:11:59 UTC (rev 65228)
@@ -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 @@
 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>

Modified: grass/trunk/scripts/v.pack/v.pack.py
===================================================================
--- grass/trunk/scripts/v.pack/v.pack.py	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/scripts/v.pack/v.pack.py	2015-05-12 21:11:59 UTC (rev 65228)
@@ -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

Modified: grass/trunk/scripts/v.unpack/v.unpack.html
===================================================================
--- grass/trunk/scripts/v.unpack/v.unpack.html	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/scripts/v.unpack/v.unpack.html	2015-05-12 21:11:59 UTC (rev 65228)
@@ -25,7 +25,8 @@
 
 <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>

Modified: grass/trunk/scripts/v.unpack/v.unpack.py
===================================================================
--- grass/trunk/scripts/v.unpack/v.unpack.py	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/scripts/v.unpack/v.unpack.py	2015-05-12 21:11:59 UTC (rev 65228)
@@ -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

Modified: grass/trunk/temporal/t.rast.export/t.rast.export.html
===================================================================
--- grass/trunk/temporal/t.rast.export/t.rast.export.html	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/temporal/t.rast.export/t.rast.export.html	2015-05-12 21:11:59 UTC (rev 65228)
@@ -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 @@
 <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 @@
 Sören Gebbert, Thünen Institute of Climate-Smart Agriculture
 
 <p><i>Last changed: $Date$</i>
-

Modified: grass/trunk/temporal/t.rast.import/t.rast.import.html
===================================================================
--- grass/trunk/temporal/t.rast.import/t.rast.import.html	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/temporal/t.rast.import/t.rast.import.html	2015-05-12 21:11:59 UTC (rev 65228)
@@ -26,7 +26,10 @@
 <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>

Modified: grass/trunk/temporal/t.vect.export/t.vect.export.html
===================================================================
--- grass/trunk/temporal/t.vect.export/t.vect.export.html	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/temporal/t.vect.export/t.vect.export.html	2015-05-12 21:11:59 UTC (rev 65228)
@@ -113,7 +113,10 @@
 <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>

Modified: grass/trunk/temporal/t.vect.import/t.vect.import.html
===================================================================
--- grass/trunk/temporal/t.vect.import/t.vect.import.html	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/temporal/t.vect.import/t.vect.import.html	2015-05-12 21:11:59 UTC (rev 65228)
@@ -51,7 +51,10 @@
 <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 @@
 Sören Gebbert, Thünen Institute of Climate-Smart Agriculture
 
 <p><i>Last changed: $Date$</i>
-

Modified: grass/trunk/vector/v.out.ogr/v.out.ogr.html
===================================================================
--- grass/trunk/vector/v.out.ogr/v.out.ogr.html	2015-05-12 19:20:49 UTC (rev 65227)
+++ grass/trunk/vector/v.out.ogr/v.out.ogr.html	2015-05-12 21:11:59 UTC (rev 65228)
@@ -173,7 +173,8 @@
 <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>



More information about the grass-commit mailing list