[GRASS-SVN] r71052 - in grass/branches/releasebranch_7_2: display/d.vect general/g.region raster/r.random vector/v.cluster vector/v.decimate vector/v.edit vector/v.external vector/v.in.ascii vector/v.in.dxf vector/v.in.lidar vector/v.info vector/v.patch vector/v.perturb vector/v.random vector/v.rectify

svn_grass at osgeo.org svn_grass at osgeo.org
Sun May 7 10:28:47 PDT 2017


Author: martinl
Date: 2017-05-07 10:28:47 -0700 (Sun, 07 May 2017)
New Revision: 71052

Modified:
   grass/branches/releasebranch_7_2/display/d.vect/main.c
   grass/branches/releasebranch_7_2/general/g.region/main.c
   grass/branches/releasebranch_7_2/raster/r.random/main.c
   grass/branches/releasebranch_7_2/vector/v.cluster/main.c
   grass/branches/releasebranch_7_2/vector/v.decimate/main.c
   grass/branches/releasebranch_7_2/vector/v.edit/main.c
   grass/branches/releasebranch_7_2/vector/v.external/main.c
   grass/branches/releasebranch_7_2/vector/v.in.ascii/main.c
   grass/branches/releasebranch_7_2/vector/v.in.dxf/main.c
   grass/branches/releasebranch_7_2/vector/v.in.lidar/main.c
   grass/branches/releasebranch_7_2/vector/v.info/main.c
   grass/branches/releasebranch_7_2/vector/v.patch/main.c
   grass/branches/releasebranch_7_2/vector/v.perturb/main.c
   grass/branches/releasebranch_7_2/vector/v.random/main.c
   grass/branches/releasebranch_7_2/vector/v.rectify/main.c
Log:
add new keyword: level1
    (merge r70978 from trunk)


Modified: grass/branches/releasebranch_7_2/display/d.vect/main.c
===================================================================
--- grass/branches/releasebranch_7_2/display/d.vect/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/display/d.vect/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -73,6 +73,7 @@
     G_add_keyword(_("display"));
     G_add_keyword(_("graphics"));
     G_add_keyword(_("vector"));
+    G_add_keyword(_("level1"));
     module->description = _("Displays user-specified vector map "
 			    "in the active graphics frame.");
     

Modified: grass/branches/releasebranch_7_2/general/g.region/main.c
===================================================================
--- grass/branches/releasebranch_7_2/general/g.region/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/general/g.region/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -65,6 +65,7 @@
     G_add_keyword(_("computational region"));
     G_add_keyword(_("extent"));
     G_add_keyword(_("resolution"));
+    G_add_keyword(_("level1"));
     module->description =
 	_("Manages the boundary definitions for the " "geographic region.");
 

Modified: grass/branches/releasebranch_7_2/raster/r.random/main.c
===================================================================
--- grass/branches/releasebranch_7_2/raster/r.random/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/raster/r.random/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -52,6 +52,8 @@
     G_add_keyword(_("sampling"));
     G_add_keyword(_("vector"));
     G_add_keyword(_("random"));
+    G_add_keyword(_("level1"));
+
     module->description =
 	_("Creates a raster map layer and vector point map "
 	  "containing randomly located points.");

Modified: grass/branches/releasebranch_7_2/vector/v.cluster/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.cluster/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/vector/v.cluster/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -91,6 +91,8 @@
     G_add_keyword(_("point cloud"));
     G_add_keyword(_("cluster"));
     G_add_keyword(_("clump"));
+    G_add_keyword(_("level1"));
+
     module->description = _("Performs cluster identification.");
 
     /* Define the different options as defined in gis.h */

Modified: grass/branches/releasebranch_7_2/vector/v.decimate/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.decimate/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/vector/v.decimate/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -127,6 +127,8 @@
     G_add_keyword(_("extract"));
     G_add_keyword(_("select"));
     G_add_keyword(_("points"));
+    G_add_keyword(_("level1"));
+
     module->label = _("Decimates a point cloud");
     module->description = _("Copies points from one vector to another"
                             " while applying different decimations");

Modified: grass/branches/releasebranch_7_2/vector/v.edit/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.edit/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/vector/v.edit/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -58,6 +58,8 @@
     G_add_keyword(_("node"));
     G_add_keyword(_("point"));
     G_add_keyword(_("vertex"));
+    G_add_keyword(_("level1"));
+
     module->description = _("Edits a vector map, allows adding, deleting "
 			    "and modifying selected vector features.");
 

Modified: grass/branches/releasebranch_7_2/vector/v.external/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.external/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/vector/v.external/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -52,6 +52,8 @@
     G_add_keyword(_("external")); 
     G_add_keyword("OGR");
     G_add_keyword("PostGIS");
+    G_add_keyword(_("level1"));
+
     module->description = _("Creates a new pseudo-vector map as a link to an OGR-supported layer "
                             "or a PostGIS feature table.");
     parse_args(argc, argv,

Modified: grass/branches/releasebranch_7_2/vector/v.in.ascii/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.in.ascii/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/vector/v.in.ascii/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -70,6 +70,8 @@
     G_add_keyword(_("vector"));
     G_add_keyword(_("import"));
     G_add_keyword("ASCII");
+    G_add_keyword(_("level1"));
+
     module->description =
 	_("Creates a vector map from an ASCII points file or ASCII vector file.");
 

Modified: grass/branches/releasebranch_7_2/vector/v.in.dxf/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.in.dxf/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/vector/v.in.dxf/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -64,6 +64,8 @@
     G_add_keyword(_("vector"));
     G_add_keyword(_("import"));
     G_add_keyword("DXF");
+    G_add_keyword(_("level1"));
+
     module->description =
 	_("Converts file in DXF format to GRASS vector map.");
 

Modified: grass/branches/releasebranch_7_2/vector/v.in.lidar/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.in.lidar/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/vector/v.in.lidar/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -136,6 +136,8 @@
     G_add_keyword(_("vector"));
     G_add_keyword(_("import"));
     G_add_keyword(_("LIDAR"));
+    G_add_keyword(_("level1"));
+
     module->description = _("Converts LAS LiDAR point clouds to a GRASS vector map with libLAS.");
 
     in_opt = G_define_standard_option(G_OPT_F_INPUT);

Modified: grass/branches/releasebranch_7_2/vector/v.info/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.info/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/vector/v.info/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -40,6 +40,7 @@
     G_add_keyword(_("extent"));
     G_add_keyword(_("history"));
     G_add_keyword(_("attribute columns"));
+    G_add_keyword(_("level1"));
     
     module->description =
 	_("Outputs basic information about a vector map.");

Modified: grass/branches/releasebranch_7_2/vector/v.patch/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.patch/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/vector/v.patch/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -68,6 +68,8 @@
     module = G_define_module();
     G_add_keyword(_("vector"));
     G_add_keyword(_("geometry"));
+    G_add_keyword(_("level1"));
+
     module->description = _("Creates a new vector map "
 			    "by combining other vector maps.");
 

Modified: grass/branches/releasebranch_7_2/vector/v.perturb/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.perturb/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/vector/v.perturb/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -64,6 +64,7 @@
     G_add_keyword(_("statistics"));
     G_add_keyword(_("random"));
     G_add_keyword(_("point pattern"));
+    G_add_keyword(_("level1"));
  
     module->description =
 	_("Random location perturbations of vector points.");

Modified: grass/branches/releasebranch_7_2/vector/v.random/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.random/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/vector/v.random/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -100,6 +100,8 @@
     G_add_keyword(_("random"));
     G_add_keyword(_("point pattern"));
     G_add_keyword(_("stratified random sampling"));
+    G_add_keyword(_("level1"));
+
     module->description = _("Generates random 2D/3D vector points.");
 
     parm.output = G_define_standard_option(G_OPT_V_OUTPUT);

Modified: grass/branches/releasebranch_7_2/vector/v.rectify/main.c
===================================================================
--- grass/branches/releasebranch_7_2/vector/v.rectify/main.c	2017-05-07 17:25:18 UTC (rev 71051)
+++ grass/branches/releasebranch_7_2/vector/v.rectify/main.c	2017-05-07 17:28:47 UTC (rev 71052)
@@ -69,6 +69,8 @@
     module = G_define_module();
     G_add_keyword(_("vector"));
     G_add_keyword(_("rectify"));
+    G_add_keyword(_("level1"));
+
     module->description =
 	_("Rectifies a vector by computing a coordinate "
 	  "transformation for each object in the vector based on the "



More information about the grass-commit mailing list