[GRASS-SVN] r64319 - in grass-addons/grass7/vector: v.habitat.dem v.in.geopaparazzi v.lidar.mcc v.link.precip v.out.ply
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Jan 25 06:26:09 PST 2015
Author: neteler
Date: 2015-01-25 06:26:08 -0800 (Sun, 25 Jan 2015)
New Revision: 64319
Modified:
grass-addons/grass7/vector/v.habitat.dem/v.habitat.dem.py
grass-addons/grass7/vector/v.in.geopaparazzi/v.in.geopaparazzi.html
grass-addons/grass7/vector/v.in.geopaparazzi/v.in.geopaparazzi.py
grass-addons/grass7/vector/v.lidar.mcc/v.lidar.mcc.py
grass-addons/grass7/vector/v.link.precip/v.link.precip.py
grass-addons/grass7/vector/v.out.ply/main.c
grass-addons/grass7/vector/v.out.ply/v.out.ply.html
Log:
Addons manuals: minor cleanup
Modified: grass-addons/grass7/vector/v.habitat.dem/v.habitat.dem.py
===================================================================
--- grass-addons/grass7/vector/v.habitat.dem/v.habitat.dem.py 2015-01-25 14:15:21 UTC (rev 64318)
+++ grass-addons/grass7/vector/v.habitat.dem/v.habitat.dem.py 2015-01-25 14:26:08 UTC (rev 64319)
@@ -15,7 +15,7 @@
"""
#%module
-#% description: DEM derived characteristics of habitats
+#% description: Calculates DEM derived characteristics of habitats.
#% keyword: vector
#% keyword: raster
#% keyword: terrain
Modified: grass-addons/grass7/vector/v.in.geopaparazzi/v.in.geopaparazzi.html
===================================================================
--- grass-addons/grass7/vector/v.in.geopaparazzi/v.in.geopaparazzi.html 2015-01-25 14:15:21 UTC (rev 64318)
+++ grass-addons/grass7/vector/v.in.geopaparazzi/v.in.geopaparazzi.html 2015-01-25 14:26:08 UTC (rev 64319)
@@ -1,19 +1,22 @@
<h2>DESCRIPTION</h2>
-<em>v.in.geopaparazzi</em> imports all elements saved into Geopaparazzi. You can import bookmarks, images (warning the path to images it's relative of Android device), notes (one layer for each category) and tracks.
+<em>v.in.geopaparazzi</em> imports all elements saved into
+Geopaparazzi. The user can import bookmarks, images (warning for the path to
+images depends on Android device), notes (one layer for each
+category) and tracks.
<h2>EXAMPLES</h2>
-To import all the elements in the Geopaparazzi database you have to use:
+To import all the elements in the Geopaparazzi database, use:
<div class="code"><pre>
-v.in.geopaparazzi -bint database=/path/to/your/geopaparazzi.db base=mydata
+v.in.geopaparazzi -bint database=/path/to/geopaparazzi.db base=mydata
</pre></div>
To import only the tracks in 3D format
<div class="code"><pre>
-v.in.geopaparazzi -tz database=/path/to/your/geopaparazzi.db base=track3d
+v.in.geopaparazzi -tz database=/path/to/geopaparazzi.db base=track3d
</pre></div>
<h2>REFERENCES</h2>
Modified: grass-addons/grass7/vector/v.in.geopaparazzi/v.in.geopaparazzi.py
===================================================================
--- grass-addons/grass7/vector/v.in.geopaparazzi/v.in.geopaparazzi.py 2015-01-25 14:15:21 UTC (rev 64318)
+++ grass-addons/grass7/vector/v.in.geopaparazzi/v.in.geopaparazzi.py 2015-01-25 14:26:08 UTC (rev 64319)
@@ -14,7 +14,7 @@
#
#############################################################################
#%module
-#% description: Return the barycenter of a cloud of point.
+#% description: Imports data from Geopaparazzi database.
#% keyword: vector
#%end
#%flag
Modified: grass-addons/grass7/vector/v.lidar.mcc/v.lidar.mcc.py
===================================================================
--- grass-addons/grass7/vector/v.lidar.mcc/v.lidar.mcc.py 2015-01-25 14:15:21 UTC (rev 64318)
+++ grass-addons/grass7/vector/v.lidar.mcc/v.lidar.mcc.py 2015-01-25 14:26:08 UTC (rev 64319)
@@ -14,7 +14,7 @@
#############################################################################
#%module
-#% description: Reclassify points of a LiDAR point cloud as ground / non-ground sing a multiscale curvature based classification algorithm.
+#% description: Reclassifies points of a LiDAR point cloud as ground / non-ground sing a multiscale curvature based classification algorithm.
#% keyword: vector
#% keyword: lidar
#% keyword: classification
Modified: grass-addons/grass7/vector/v.link.precip/v.link.precip.py
===================================================================
--- grass-addons/grass7/vector/v.link.precip/v.link.precip.py 2015-01-25 14:15:21 UTC (rev 64318)
+++ grass-addons/grass7/vector/v.link.precip/v.link.precip.py 2015-01-25 14:26:08 UTC (rev 64319)
@@ -16,7 +16,8 @@
################## guisection: required ##################
##########################################################
#%module
-#% description: Module for linking time-windows to vector link map
+#% description: Links time-windows to vector link map.
+#% keyword: vector
#%end
Modified: grass-addons/grass7/vector/v.out.ply/main.c
===================================================================
--- grass-addons/grass7/vector/v.out.ply/main.c 2015-01-25 14:15:21 UTC (rev 64318)
+++ grass-addons/grass7/vector/v.out.ply/main.c 2015-01-25 14:26:08 UTC (rev 64319)
@@ -45,7 +45,7 @@
G_add_keyword(_("export"));
G_add_keyword(_("ply"));
module->description =
- _("Exports a vector map to a GRASS ASCII vector representation.");
+ _("Exports a vector map to a PLY file.");
parse_args(argc, argv, &input, &output, &format, &dp,
&field_name, &columns, ®ion);
Modified: grass-addons/grass7/vector/v.out.ply/v.out.ply.html
===================================================================
--- grass-addons/grass7/vector/v.out.ply/v.out.ply.html 2015-01-25 14:15:21 UTC (rev 64318)
+++ grass-addons/grass7/vector/v.out.ply/v.out.ply.html 2015-01-25 14:26:08 UTC (rev 64319)
@@ -1,7 +1,7 @@
<h2>DESCRIPTION</h2>
<em>v.out.ply</em> converts a GRASS vector map in binary format to an
-ASCII file in PLY format>. Currently supported is points export only.
+ASCII file in PLY format. Currently supported is points export only.
<em>v.out.ply</em> is designed for large point clouds and fairly fast
if only coordinates are exported. The export of attributes with the
option <b>columns</b> can slow down the export considerably.
@@ -20,7 +20,7 @@
<em>
<a href="v.out.ascii.html">v.out.ascii</a>,
-<a href="v.in.ply.html">v.in.ply</a>,
+<a href="v.in.ply.html">v.in.ply</a>
</em>
<h2>AUTHORS</h2>
More information about the grass-commit
mailing list