[GRASS-SVN] r44378 - in grass/branches/releasebranch_6_4: gui/wxpython/xml raster/r.thin

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Nov 22 18:11:24 EST 2010


Author: martinl
Date: 2010-11-22 15:11:24 -0800 (Mon, 22 Nov 2010)
New Revision: 44378

Modified:
   grass/branches/releasebranch_6_4/gui/wxpython/xml/menudata.xml
   grass/branches/releasebranch_6_4/raster/r.thin/main.c
Log:
r.thin: more keywords
wxGUI menu updated


Modified: grass/branches/releasebranch_6_4/gui/wxpython/xml/menudata.xml
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/xml/menudata.xml	2010-11-22 22:59:12 UTC (rev 44377)
+++ grass/branches/releasebranch_6_4/gui/wxpython/xml/menudata.xml	2010-11-22 23:11:24 UTC (rev 44378)
@@ -160,7 +160,7 @@
 	    <menuitem>
 	      <label>Link vector data</label>
 	      <help>Creates a new pseudo-vector map as a link to an OGR-supported layer.</help>
-	      <keywords>vector,external,ogr</keywords>
+	      <keywords>vector</keywords>
               <handler>OnLinkOgrLayers</handler>
 	      <command>v.external</command>
 	    </menuitem>
@@ -197,7 +197,7 @@
 	    <menuitem>
 	      <label>DXF import</label>
 	      <help>Converts files in DXF format to GRASS vector map format.</help>
-	      <keywords>vector,import,dxf</keywords>
+	      <keywords>vector,import</keywords>
 	      <handler>OnImportDxfFile</handler>
 	      <command>v.in.dxf</command>
 	    </menuitem>
@@ -634,7 +634,7 @@
 	</menuitem>
 	<menuitem>
 	  <label>NVIZ (non-interactive)</label>
-	  <help>Experimental NVIZ CLI prototype.</help>
+	  <help>Allows rendering GIS data is a 3D space.</help>
 	  <keywords>visualization,raster,vector,raster3d</keywords>
 	  <handler>OnMenuCmd</handler>
 	  <command>nviz_cmd</command>
@@ -1088,8 +1088,8 @@
 	    </menuitem>
 	    <menuitem>
 	      <label>Shadows map</label>
-	      <help>Calculates cast shadow areas from sun position and DEM. Either A: exact sun position is specified, or B: date/time to calculate the sun position by r.sunmask itself.</help>
-	      <keywords>raster</keywords>
+	      <help>Calculates cast shadow areas from sun position and elevation raster map.</help>
+	      <keywords>raster,sun position</keywords>
 	      <handler>OnMenuCmd</handler>
 	      <command>r.sunmask</command>
 	    </menuitem>
@@ -1193,8 +1193,8 @@
 	    </menuitem>
 	    <menuitem>
 	      <label>Thin</label>
-	      <help>Thins non-zero cells that denote linear features in a raster map layer.</help>
-	      <keywords>raster</keywords>
+	      <help>Thins non-zero cells that denote linear features in a raster map.</help>
+	      <keywords>raster,thin</keywords>
 	      <handler>OnMenuCmd</handler>
 	      <command>r.thin</command>
 	    </menuitem>
@@ -1990,7 +1990,7 @@
 	<menuitem>
 	  <label>Query with another vector map</label>
 	  <help>Selects features from vector map (A) by features from other vector map (B).</help>
-	  <keywords>vector,query</keywords>
+	  <keywords>vector,spatial query</keywords>
 	  <handler>OnMenuCmd</handler>
 	  <command>v.select</command>
 	</menuitem>
@@ -2557,7 +2557,7 @@
 	    </menuitem>
 	    <menuitem>
 	      <label>Matrix/convolving filter</label>
-	      <help>Raster map matrix filter.</help>
+	      <help>Performs raster map matrix filter.</help>
 	      <keywords>raster,map algebra</keywords>
 	      <handler>OnMenuCmd</handler>
 	      <command>r.mfilter</command>

Modified: grass/branches/releasebranch_6_4/raster/r.thin/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.thin/main.c	2010-11-22 22:59:12 UTC (rev 44377)
+++ grass/branches/releasebranch_6_4/raster/r.thin/main.c	2010-11-22 23:11:24 UTC (rev 44378)
@@ -11,7 +11,7 @@
  *               Glynn Clements <glynn gclements.plus.com>, Hamish Bowman <hamish_nospam yahoo.com>,
  *               Jan-Oliver Wagner <jan intevation.de>
  * PURPOSE:      Cell-file line thinning
- * COPYRIGHT:    (C) 1999-2006 by the GRASS Development Team
+ * COPYRIGHT:    (C) 1999-2006, 2010 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
@@ -52,10 +52,10 @@
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->keywords = _("raster");
+    module->keywords = _("raster, thin");
     module->description =
 	_("Thins non-zero cells that denote linear "
-	  "features in a raster map layer.");
+	  "features in a raster map.");
 
     opt1 = G_define_standard_option(G_OPT_R_INPUT);
 



More information about the grass-commit mailing list