[GRASS-SVN] r63547 - in grass/branches/releasebranch_7_0: 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:27:46 PST 2014


Author: neteler
Date: 2014-12-14 21:27:46 -0800 (Sun, 14 Dec 2014)
New Revision: 63547

Modified:
   grass/branches/releasebranch_7_0/scripts/v.dissolve/v.dissolve.py
   grass/branches/releasebranch_7_0/scripts/v.to.lines/v.to.lines.py
   grass/branches/releasebranch_7_0/scripts/v.what.vect/v.what.vect.py
   grass/branches/releasebranch_7_0/vector/v.buffer/main.c
   grass/branches/releasebranch_7_0/vector/v.build.polylines/main.c
   grass/branches/releasebranch_7_0/vector/v.edit/main.c
   grass/branches/releasebranch_7_0/vector/v.parallel/main.c
   grass/branches/releasebranch_7_0/vector/v.segment/main.c
   grass/branches/releasebranch_7_0/vector/v.split/main.c
   grass/branches/releasebranch_7_0/vector/v.transform/main.c
   grass/branches/releasebranch_7_0/vector/v.type/main.c
Log:
manual: some keyword cleanup

Modified: grass/branches/releasebranch_7_0/scripts/v.dissolve/v.dissolve.py
===================================================================
--- grass/branches/releasebranch_7_0/scripts/v.dissolve/v.dissolve.py	2014-12-15 05:26:19 UTC (rev 63546)
+++ grass/branches/releasebranch_7_0/scripts/v.dissolve/v.dissolve.py	2014-12-15 05:27:46 UTC (rev 63547)
@@ -20,6 +20,7 @@
 #% keywords: vector
 #% keywords: dissolve
 #% keywords: area
+#% keywords: line
 #%end
 #%option G_OPT_V_INPUT
 #%end

Modified: grass/branches/releasebranch_7_0/scripts/v.to.lines/v.to.lines.py
===================================================================
--- grass/branches/releasebranch_7_0/scripts/v.to.lines/v.to.lines.py	2014-12-15 05:26:19 UTC (rev 63546)
+++ grass/branches/releasebranch_7_0/scripts/v.to.lines/v.to.lines.py	2014-12-15 05:27:46 UTC (rev 63547)
@@ -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/branches/releasebranch_7_0/scripts/v.what.vect/v.what.vect.py
===================================================================
--- grass/branches/releasebranch_7_0/scripts/v.what.vect/v.what.vect.py	2014-12-15 05:26:19 UTC (rev 63546)
+++ grass/branches/releasebranch_7_0/scripts/v.what.vect/v.what.vect.py	2014-12-15 05:27:46 UTC (rev 63547)
@@ -18,6 +18,8 @@
 #% keywords: vector
 #% keywords: sampling
 #% keywords: database
+#% keywords: position
+#% keywords: querying
 #% keywords: attribute table
 #%end
 

Modified: grass/branches/releasebranch_7_0/vector/v.buffer/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.buffer/main.c	2014-12-15 05:26:19 UTC (rev 63546)
+++ grass/branches/releasebranch_7_0/vector/v.buffer/main.c	2014-12-15 05:27:46 UTC (rev 63547)
@@ -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/branches/releasebranch_7_0/vector/v.build.polylines/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.build.polylines/main.c	2014-12-15 05:26:19 UTC (rev 63546)
+++ grass/branches/releasebranch_7_0/vector/v.build.polylines/main.c	2014-12-15 05:27:46 UTC (rev 63547)
@@ -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/branches/releasebranch_7_0/vector/v.edit/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.edit/main.c	2014-12-15 05:26:19 UTC (rev 63546)
+++ grass/branches/releasebranch_7_0/vector/v.edit/main.c	2014-12-15 05:27:46 UTC (rev 63547)
@@ -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/branches/releasebranch_7_0/vector/v.parallel/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.parallel/main.c	2014-12-15 05:26:19 UTC (rev 63546)
+++ grass/branches/releasebranch_7_0/vector/v.parallel/main.c	2014-12-15 05:27:46 UTC (rev 63547)
@@ -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/branches/releasebranch_7_0/vector/v.segment/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.segment/main.c	2014-12-15 05:26:19 UTC (rev 63546)
+++ grass/branches/releasebranch_7_0/vector/v.segment/main.c	2014-12-15 05:27:46 UTC (rev 63547)
@@ -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/branches/releasebranch_7_0/vector/v.split/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.split/main.c	2014-12-15 05:26:19 UTC (rev 63546)
+++ grass/branches/releasebranch_7_0/vector/v.split/main.c	2014-12-15 05:27:46 UTC (rev 63547)
@@ -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/branches/releasebranch_7_0/vector/v.transform/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.transform/main.c	2014-12-15 05:26:19 UTC (rev 63546)
+++ grass/branches/releasebranch_7_0/vector/v.transform/main.c	2014-12-15 05:27:46 UTC (rev 63547)
@@ -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/branches/releasebranch_7_0/vector/v.type/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.type/main.c	2014-12-15 05:26:19 UTC (rev 63546)
+++ grass/branches/releasebranch_7_0/vector/v.type/main.c	2014-12-15 05:27:46 UTC (rev 63547)
@@ -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