[GRASS-SVN] r63546 - in grass/trunk: scripts/v.dissolve scripts/v.to.lines scripts/v.what.vect vector/v.buffer vector/v.build.polylines vector/v.edit vector/v.parallel vector/v.segment vector/v.split vector/v.transform vector/v.type
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Dec 14 21:26:19 PST 2014
Author: neteler
Date: 2014-12-14 21:26:19 -0800 (Sun, 14 Dec 2014)
New Revision: 63546
Modified:
grass/trunk/scripts/v.dissolve/v.dissolve.py
grass/trunk/scripts/v.to.lines/v.to.lines.py
grass/trunk/scripts/v.what.vect/v.what.vect.py
grass/trunk/vector/v.buffer/main.c
grass/trunk/vector/v.build.polylines/main.c
grass/trunk/vector/v.edit/main.c
grass/trunk/vector/v.parallel/main.c
grass/trunk/vector/v.segment/main.c
grass/trunk/vector/v.split/main.c
grass/trunk/vector/v.transform/main.c
grass/trunk/vector/v.type/main.c
Log:
manual: some keyword cleanup
Modified: grass/trunk/scripts/v.dissolve/v.dissolve.py
===================================================================
--- grass/trunk/scripts/v.dissolve/v.dissolve.py 2014-12-15 03:48:20 UTC (rev 63545)
+++ grass/trunk/scripts/v.dissolve/v.dissolve.py 2014-12-15 05:26:19 UTC (rev 63546)
@@ -20,6 +20,7 @@
#% keywords: vector
#% keywords: dissolve
#% keywords: area
+#% keywords: line
#%end
#%option G_OPT_V_INPUT
#%end
Modified: grass/trunk/scripts/v.to.lines/v.to.lines.py
===================================================================
--- grass/trunk/scripts/v.to.lines/v.to.lines.py 2014-12-15 03:48:20 UTC (rev 63545)
+++ grass/trunk/scripts/v.to.lines/v.to.lines.py 2014-12-15 05:26:19 UTC (rev 63546)
@@ -20,6 +20,9 @@
#% description: Converts vector polygons or points to lines.
#% keywords: vector
#% keywords: geometry
+#% keywords: area
+#% keywords: line
+#% keywords: point
#%end
#%option G_OPT_V_INPUT
Modified: grass/trunk/scripts/v.what.vect/v.what.vect.py
===================================================================
--- grass/trunk/scripts/v.what.vect/v.what.vect.py 2014-12-15 03:48:20 UTC (rev 63545)
+++ grass/trunk/scripts/v.what.vect/v.what.vect.py 2014-12-15 05:26:19 UTC (rev 63546)
@@ -18,6 +18,8 @@
#% keywords: vector
#% keywords: sampling
#% keywords: database
+#% keywords: position
+#% keywords: querying
#% keywords: attribute table
#%end
Modified: grass/trunk/vector/v.buffer/main.c
===================================================================
--- grass/trunk/vector/v.buffer/main.c 2014-12-15 03:48:20 UTC (rev 63545)
+++ grass/trunk/vector/v.buffer/main.c 2014-12-15 05:26:19 UTC (rev 63546)
@@ -221,8 +221,10 @@
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("buffer"));
+ G_add_keyword(_("area"));
+ G_add_keyword(_("circle"));
G_add_keyword(_("geometry"));
- G_add_keyword(_("circle"));
+ G_add_keyword(_("line"));
module->description =
_("Creates a buffer around vector features of given type.");
Modified: grass/trunk/vector/v.build.polylines/main.c
===================================================================
--- grass/trunk/vector/v.build.polylines/main.c 2014-12-15 03:48:20 UTC (rev 63545)
+++ grass/trunk/vector/v.build.polylines/main.c 2014-12-15 05:26:19 UTC (rev 63546)
@@ -1,4 +1,3 @@
-
/****************************************************************************
*
* MODULE: v.build.polylines
@@ -8,7 +7,7 @@
* Martin Landa <landa.martin gmail.com> (cats)
* Markus Metz (geometry type management, cats, attributes)
* PURPOSE:
- * COPYRIGHT: (C) 2002-2012 by the GRASS Development Team
+ * COPYRIGHT: (C) 2000-2014 by the GRASS Development Team
*
* This program is free software under the GNU General Public
* License (>=v2). Read the file COPYING that comes with GRASS
@@ -112,6 +111,9 @@
G_add_keyword(_("vector"));
G_add_keyword(_("topology"));
G_add_keyword(_("geometry"));
+ G_add_keyword(_("line"));
+ G_add_keyword(_("node"));
+ G_add_keyword(_("vertex"));
module->description = _("Builds polylines from lines or boundaries.");
/* Define the options */
Modified: grass/trunk/vector/v.edit/main.c
===================================================================
--- grass/trunk/vector/v.edit/main.c 2014-12-15 03:48:20 UTC (rev 63545)
+++ grass/trunk/vector/v.edit/main.c 2014-12-15 05:26:19 UTC (rev 63546)
@@ -1,4 +1,3 @@
-
/****************************************************************
*
* MODULE: v.edit
@@ -9,7 +8,7 @@
* Jachym Cepicky
* Major updates by Martin Landa <landa.martin gmail.com>
*
- * COPYRIGHT: (C) 2006-2011, 2013 by the GRASS Development Team
+ * COPYRIGHT: (C) 2006-2014 by the GRASS Development Team
*
* This program is free software under the GNU General
* Public License (>=v2). Read the file COPYING that comes
@@ -55,7 +54,9 @@
G_add_keyword(_("vector"));
G_add_keyword(_("geometry"));
G_add_keyword(_("editing"));
+ G_add_keyword(_("line"));
G_add_keyword(_("node"));
+ G_add_keyword(_("point"));
G_add_keyword(_("vertex"));
module->description = _("Edits a vector map, allows adding, deleting "
"and modifying selected vector features.");
Modified: grass/trunk/vector/v.parallel/main.c
===================================================================
--- grass/trunk/vector/v.parallel/main.c 2014-12-15 03:48:20 UTC (rev 63545)
+++ grass/trunk/vector/v.parallel/main.c 2014-12-15 05:26:19 UTC (rev 63546)
@@ -49,6 +49,7 @@
G_add_keyword(_("vector"));
G_add_keyword(_("geometry"));
G_add_keyword(_("buffer"));
+ G_add_keyword(_("line"));
module->description = _("Creates parallel line to input vector lines.");
in_opt = G_define_standard_option(G_OPT_V_INPUT);
Modified: grass/trunk/vector/v.segment/main.c
===================================================================
--- grass/trunk/vector/v.segment/main.c 2014-12-15 03:48:20 UTC (rev 63545)
+++ grass/trunk/vector/v.segment/main.c 2014-12-15 05:26:19 UTC (rev 63546)
@@ -9,7 +9,7 @@
*
* PURPOSE: Generate segments or points from input map and segments read from stdin
*
- * COPYRIGHT: (C) 2002-2013 by the GRASS Development Team
+ * COPYRIGHT: (C) 2002-2014 by the GRASS Development Team
*
* This program is free software under the GNU General
* Public License (>=v2). Read the file COPYING that
@@ -59,6 +59,10 @@
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("geometry"));
+ G_add_keyword(_("node"));
+ G_add_keyword(_("point"));
+ G_add_keyword(_("segment"));
+ G_add_keyword(_("vertex"));
module->description =
_("Creates points/segments from input vector lines and positions.");
Modified: grass/trunk/vector/v.split/main.c
===================================================================
--- grass/trunk/vector/v.split/main.c 2014-12-15 03:48:20 UTC (rev 63545)
+++ grass/trunk/vector/v.split/main.c 2014-12-15 05:26:19 UTC (rev 63546)
@@ -1,15 +1,14 @@
-
/***************************************************************
*
* MODULE: v.split
*
* AUTHOR(S): Radim Blazek
* OGR support by Martin Landa <landa.martin gmail.com>
- * update for GRASS 7 Markus Metz
+ * update for GRASS 7 by Markus Metz
*
* PURPOSE: Split lines to segments
*
- * COPYRIGHT: (C) 2001-2009 by the GRASS Development Team
+ * COPYRIGHT: (C) 2001-2014 by the GRASS Development Team
*
* This program is free software under the GNU General
* Public License (>=v2). Read the file COPYING that
@@ -54,6 +53,10 @@
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("geometry"));
+ G_add_keyword(_("densification"));
+ G_add_keyword(_("node"));
+ G_add_keyword(_("segment"));
+ G_add_keyword(_("vertex"));
module->description = _("Splits vector lines to shorter segments.");
in_opt = G_define_standard_option(G_OPT_V_INPUT);
Modified: grass/trunk/vector/v.transform/main.c
===================================================================
--- grass/trunk/vector/v.transform/main.c 2014-12-15 03:48:20 UTC (rev 63545)
+++ grass/trunk/vector/v.transform/main.c 2014-12-15 05:26:19 UTC (rev 63546)
@@ -1,15 +1,14 @@
/****************************************************************************
*
* MODULE: v.transform
-* AUTHOR(S): See below also.
-* Eric G. Miller <egm2 at jps.net>
+* AUTHOR(S): Eric G. Miller <egm2 at jps.net>
* Upgrade to 5.7 Radim Blazek
* Column support & OGR support added by Martin Landa (09/2007)
*
* PURPOSE: To transform a vector map's coordinates via a set of tie
* points.
*
-* COPYRIGHT: (C) 2002-2011 by the GRASS Development Team
+* COPYRIGHT: (C) 2002-2014 by the GRASS Development Team
*
* This program is free software under the GNU General Public
* License (>=v2). Read the file COPYING that comes with GRASS
@@ -69,6 +68,7 @@
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("transformation"));
+ G_add_keyword(_("geometry"));
G_add_keyword("GCP");
module->description =
_("Performs an affine transformation (shift, scale and rotate) "
Modified: grass/trunk/vector/v.type/main.c
===================================================================
--- grass/trunk/vector/v.type/main.c 2014-12-15 03:48:20 UTC (rev 63545)
+++ grass/trunk/vector/v.type/main.c 2014-12-15 05:26:19 UTC (rev 63546)
@@ -1,4 +1,3 @@
-
/***************************************************************
*
* MODULE: v.type
@@ -8,7 +7,7 @@
*
* PURPOSE: Feature type manipulations
*
- * COPYRIGHT: (C) 2001-2010 by the GRASS Development Team
+ * COPYRIGHT: (C) 2001-2014 by the GRASS Development Team
*
* This program is free software under the GNU General
* Public License (>=v2). Read the file COPYING that
@@ -38,6 +37,10 @@
module = G_define_module();
G_add_keyword(_("vector"));
G_add_keyword(_("geometry"));
+ G_add_keyword(_("editing"));
+ G_add_keyword(_("area"));
+ G_add_keyword(_("line"));
+ G_add_keyword(_("point"));
module->description = _("Changes type of vector features.");
in_opt = G_define_standard_option(G_OPT_V_INPUT);
More information about the grass-commit
mailing list