浏览代码

manual: some keyword cleanup

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@63546 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 10 年之前
父节点
当前提交
e1631a0d64

+ 1 - 0
scripts/v.dissolve/v.dissolve.py

@@ -20,6 +20,7 @@
 #% keywords: vector
 #% keywords: vector
 #% keywords: dissolve
 #% keywords: dissolve
 #% keywords: area
 #% keywords: area
+#% keywords: line
 #%end
 #%end
 #%option G_OPT_V_INPUT
 #%option G_OPT_V_INPUT
 #%end
 #%end

+ 3 - 0
scripts/v.to.lines/v.to.lines.py

@@ -20,6 +20,9 @@
 #% description: Converts vector polygons or points to lines.
 #% description: Converts vector polygons or points to lines.
 #% keywords: vector
 #% keywords: vector
 #% keywords: geometry
 #% keywords: geometry
+#% keywords: area
+#% keywords: line
+#% keywords: point
 #%end
 #%end
 
 
 #%option G_OPT_V_INPUT
 #%option G_OPT_V_INPUT

+ 2 - 0
scripts/v.what.vect/v.what.vect.py

@@ -18,6 +18,8 @@
 #% keywords: vector
 #% keywords: vector
 #% keywords: sampling
 #% keywords: sampling
 #% keywords: database
 #% keywords: database
+#% keywords: position
+#% keywords: querying
 #% keywords: attribute table
 #% keywords: attribute table
 #%end
 #%end
 
 

+ 3 - 1
vector/v.buffer/main.c

@@ -221,8 +221,10 @@ int main(int argc, char *argv[])
     module = G_define_module();
     module = G_define_module();
     G_add_keyword(_("vector"));
     G_add_keyword(_("vector"));
     G_add_keyword(_("buffer"));
     G_add_keyword(_("buffer"));
-    G_add_keyword(_("geometry"));
+    G_add_keyword(_("area"));
     G_add_keyword(_("circle"));
     G_add_keyword(_("circle"));
+    G_add_keyword(_("geometry"));
+    G_add_keyword(_("line"));
     module->description =
     module->description =
 	_("Creates a buffer around vector features of given type.");
 	_("Creates a buffer around vector features of given type.");
 
 

+ 4 - 2
vector/v.build.polylines/main.c

@@ -1,4 +1,3 @@
-
 /****************************************************************************
 /****************************************************************************
  *
  *
  * MODULE:       v.build.polylines
  * MODULE:       v.build.polylines
@@ -8,7 +7,7 @@
  *               Martin Landa <landa.martin gmail.com> (cats)
  *               Martin Landa <landa.martin gmail.com> (cats)
  *               Markus Metz (geometry type management, cats, attributes)
  *               Markus Metz (geometry type management, cats, attributes)
  * PURPOSE:      
  * 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
  *               This program is free software under the GNU General Public
  *               License (>=v2). Read the file COPYING that comes with GRASS
  *               License (>=v2). Read the file COPYING that comes with GRASS
@@ -112,6 +111,9 @@ int main(int argc, char **argv)
     G_add_keyword(_("vector"));
     G_add_keyword(_("vector"));
     G_add_keyword(_("topology"));
     G_add_keyword(_("topology"));
     G_add_keyword(_("geometry"));
     G_add_keyword(_("geometry"));
+    G_add_keyword(_("line"));
+    G_add_keyword(_("node"));
+    G_add_keyword(_("vertex"));
     module->description = _("Builds polylines from lines or boundaries.");
     module->description = _("Builds polylines from lines or boundaries.");
 
 
     /* Define the options */
     /* Define the options */

+ 3 - 2
vector/v.edit/main.c

@@ -1,4 +1,3 @@
-
 /****************************************************************
 /****************************************************************
  *
  *
  * MODULE:     v.edit
  * MODULE:     v.edit
@@ -9,7 +8,7 @@
  *             Jachym Cepicky
  *             Jachym Cepicky
  *             Major updates by Martin Landa <landa.martin gmail.com>
  *             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
  *             This program is free software under the GNU General
  *             Public License (>=v2). Read the file COPYING that comes
  *             Public License (>=v2). Read the file COPYING that comes
@@ -55,7 +54,9 @@ int main(int argc, char *argv[])
     G_add_keyword(_("vector"));
     G_add_keyword(_("vector"));
     G_add_keyword(_("geometry"));
     G_add_keyword(_("geometry"));
     G_add_keyword(_("editing"));
     G_add_keyword(_("editing"));
+    G_add_keyword(_("line"));
     G_add_keyword(_("node"));
     G_add_keyword(_("node"));
+    G_add_keyword(_("point"));
     G_add_keyword(_("vertex"));
     G_add_keyword(_("vertex"));
     module->description = _("Edits a vector map, allows adding, deleting "
     module->description = _("Edits a vector map, allows adding, deleting "
 			    "and modifying selected vector features.");
 			    "and modifying selected vector features.");

+ 1 - 0
vector/v.parallel/main.c

@@ -49,6 +49,7 @@ int main(int argc, char *argv[])
     G_add_keyword(_("vector"));
     G_add_keyword(_("vector"));
     G_add_keyword(_("geometry"));
     G_add_keyword(_("geometry"));
     G_add_keyword(_("buffer"));
     G_add_keyword(_("buffer"));
+    G_add_keyword(_("line"));
     module->description = _("Creates parallel line to input vector lines.");
     module->description = _("Creates parallel line to input vector lines.");
 
 
     in_opt = G_define_standard_option(G_OPT_V_INPUT);
     in_opt = G_define_standard_option(G_OPT_V_INPUT);

+ 5 - 1
vector/v.segment/main.c

@@ -9,7 +9,7 @@
  *               
  *               
  * PURPOSE:      Generate segments or points from input map and segments read from stdin 
  * 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
  *               This program is free software under the GNU General
  *               Public License (>=v2). Read the file COPYING that
  *               Public License (>=v2). Read the file COPYING that
@@ -59,6 +59,10 @@ int main(int argc, char **argv)
     module = G_define_module();
     module = G_define_module();
     G_add_keyword(_("vector"));
     G_add_keyword(_("vector"));
     G_add_keyword(_("geometry"));
     G_add_keyword(_("geometry"));
+    G_add_keyword(_("node"));
+    G_add_keyword(_("point"));
+    G_add_keyword(_("segment"));
+    G_add_keyword(_("vertex"));
     module->description =
     module->description =
 	_("Creates points/segments from input vector lines and positions.");
 	_("Creates points/segments from input vector lines and positions.");
 
 

+ 6 - 3
vector/v.split/main.c

@@ -1,15 +1,14 @@
-
 /***************************************************************
 /***************************************************************
  *
  *
  * MODULE:       v.split
  * MODULE:       v.split
  * 
  * 
  * AUTHOR(S):    Radim Blazek
  * AUTHOR(S):    Radim Blazek
  *               OGR support by Martin Landa <landa.martin gmail.com>
  *               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
  * 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
  *               This program is free software under the GNU General
  *               Public License (>=v2).  Read the file COPYING that
  *               Public License (>=v2).  Read the file COPYING that
@@ -54,6 +53,10 @@ int main(int argc, char *argv[])
     module = G_define_module();
     module = G_define_module();
     G_add_keyword(_("vector"));
     G_add_keyword(_("vector"));
     G_add_keyword(_("geometry"));
     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.");
     module->description = _("Splits vector lines to shorter segments.");
     
     
     in_opt = G_define_standard_option(G_OPT_V_INPUT);
     in_opt = G_define_standard_option(G_OPT_V_INPUT);

+ 3 - 3
vector/v.transform/main.c

@@ -1,15 +1,14 @@
 /****************************************************************************
 /****************************************************************************
 *
 *
 * MODULE:       v.transform
 * MODULE:       v.transform
-* AUTHOR(S):    See below also.
-*               Eric G. Miller <egm2@jps.net>
+* AUTHOR(S):    Eric G. Miller <egm2@jps.net>
 *               Upgrade to 5.7 Radim Blazek
 *               Upgrade to 5.7 Radim Blazek
 *               Column support & OGR support added by Martin Landa (09/2007)
 *               Column support & OGR support added by Martin Landa (09/2007)
 *
 *
 * PURPOSE:      To transform a vector map's coordinates via a set of tie
 * PURPOSE:      To transform a vector map's coordinates via a set of tie
 *               points.
 *               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
 *               This program is free software under the GNU General Public
 *   	    	License (>=v2). Read the file COPYING that comes with GRASS
 *   	    	License (>=v2). Read the file COPYING that comes with GRASS
@@ -69,6 +68,7 @@ int main(int argc, char *argv[])
     module = G_define_module();
     module = G_define_module();
     G_add_keyword(_("vector"));
     G_add_keyword(_("vector"));
     G_add_keyword(_("transformation"));
     G_add_keyword(_("transformation"));
+    G_add_keyword(_("geometry"));
     G_add_keyword("GCP");
     G_add_keyword("GCP");
     module->description =
     module->description =
 	_("Performs an affine transformation (shift, scale and rotate) "
 	_("Performs an affine transformation (shift, scale and rotate) "

+ 5 - 2
vector/v.type/main.c

@@ -1,4 +1,3 @@
-
 /***************************************************************
 /***************************************************************
  *
  *
  * MODULE:       v.type
  * MODULE:       v.type
@@ -8,7 +7,7 @@
  *
  *
  * PURPOSE:      Feature type manipulations
  * 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
  *               This program is free software under the GNU General
  *               Public License (>=v2).  Read the file COPYING that
  *               Public License (>=v2).  Read the file COPYING that
@@ -38,6 +37,10 @@ int main(int argc, char *argv[])
     module = G_define_module();
     module = G_define_module();
     G_add_keyword(_("vector"));
     G_add_keyword(_("vector"));
     G_add_keyword(_("geometry"));
     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.");
     module->description = _("Changes type of vector features.");
 
 
     in_opt = G_define_standard_option(G_OPT_V_INPUT);
     in_opt = G_define_standard_option(G_OPT_V_INPUT);