[GRASS-SVN] r63986 - in grass/branches/releasebranch_7_0: scripts/v.in.lines scripts/v.to.lines vector/v.to.points
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jan 7 12:53:11 PST 2015
Author: neteler
Date: 2015-01-07 12:53:11 -0800 (Wed, 07 Jan 2015)
New Revision: 63986
Modified:
grass/branches/releasebranch_7_0/scripts/v.in.lines/v.in.lines.py
grass/branches/releasebranch_7_0/scripts/v.to.lines/v.to.lines.html
grass/branches/releasebranch_7_0/vector/v.to.points/main.c
Log:
manual: minor keyword and cross link fixes
Modified: grass/branches/releasebranch_7_0/scripts/v.in.lines/v.in.lines.py
===================================================================
--- grass/branches/releasebranch_7_0/scripts/v.in.lines/v.in.lines.py 2015-01-07 20:51:53 UTC (rev 63985)
+++ grass/branches/releasebranch_7_0/scripts/v.in.lines/v.in.lines.py 2015-01-07 20:53:11 UTC (rev 63986)
@@ -19,10 +19,12 @@
#% description: Imports ASCII x,y[,z] coordinates as a series of lines.
#% keyword: vector
#% keyword: import
+#% keyword: line
+#% keyword: point
#%end
#%flag
#% key: z
-#% description: Create a 3D line from 3 column data
+#% description: Create a 3D line from 3 column data
#%end
#%option G_OPT_F_INPUT
#% description: Name of input file (or "-" to read from stdin)
Modified: grass/branches/releasebranch_7_0/scripts/v.to.lines/v.to.lines.html
===================================================================
--- grass/branches/releasebranch_7_0/scripts/v.to.lines/v.to.lines.html 2015-01-07 20:51:53 UTC (rev 63985)
+++ grass/branches/releasebranch_7_0/scripts/v.to.lines/v.to.lines.html 2015-01-07 20:53:11 UTC (rev 63986)
@@ -8,9 +8,13 @@
<em>v.to.lines</em> is able to convert point data (via triangulation)
and areas to lines (via boundary to line conversion).
-This script is a wrapper script to <em>>v.category</em>,
+This script is a wrapper script to <em>v.category</em>,
<em>v.delaunay</em>, and <em>v.edit</em>.
+<p>
+In order to convert an ordered list of coordinates (ASCII table with
+x,y[,z] coordinates) into vector lines, use <em>v.in.lines</em>.
+
<h2>EXAMPLES</h2>
The examples are for the North Carolina sample dataset location:
@@ -33,6 +37,7 @@
<a href="v.category.html">v.category</a>,
<a href="v.delaunay.html">v.delaunay</a>,
<a href="v.edit.html">v.edit</a>,
+<a href="v.in.lines.html">v.in.lines</a>,
<a href="v.to.points.html">v.to.points</a>,
<a href="v.type.html">v.type</a>
</em>
Modified: grass/branches/releasebranch_7_0/vector/v.to.points/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.to.points/main.c 2015-01-07 20:51:53 UTC (rev 63985)
+++ grass/branches/releasebranch_7_0/vector/v.to.points/main.c 2015-01-07 20:53:11 UTC (rev 63986)
@@ -53,6 +53,7 @@
G_add_keyword(_("vector"));
G_add_keyword(_("geometry"));
G_add_keyword("3D");
+ G_add_keyword(_("line"));
G_add_keyword(_("node"));
G_add_keyword(_("vertex"));
module->description =
More information about the grass-commit
mailing list