[GRASS-SVN] r43350 - grass/trunk/vector/v.surf.idw

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Aug 30 05:17:59 EDT 2010


Author: martinl
Date: 2010-08-30 09:17:59 +0000 (Mon, 30 Aug 2010)
New Revision: 43350

Modified:
   grass/trunk/vector/v.surf.idw/main.c
Log:
v.surf.idw: more guisections


Modified: grass/trunk/vector/v.surf.idw/main.c
===================================================================
--- grass/trunk/vector/v.surf.idw/main.c	2010-08-30 08:35:50 UTC (rev 43349)
+++ grass/trunk/vector/v.surf.idw/main.c	2010-08-30 09:17:59 UTC (rev 43350)
@@ -10,7 +10,7 @@
  *               OGR support by Martin Landa <landa.martin gmail.com>
  * PURPOSE:      Surface interpolation from vector point data by Inverse
  *               Distance Squared Weighting
- * COPYRIGHT:    (C) 2003-2009 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2003-2010 by the GRASS Development Team
  *
  *               This program is free software under the GNU General
  *               Public License (>=v2). Read the file COPYING that
@@ -97,6 +97,7 @@
     parm.col = G_define_standard_option(G_OPT_DB_COLUMN);
     parm.col->required = NO;
     parm.col->description = _("Name of attribute column with values to interpolate");
+    parm.col->guisection = _("Values");
 
     parm.output = G_define_standard_option(G_OPT_R_OUTPUT);
 
@@ -107,6 +108,7 @@
     parm.npoints->required = NO;
     parm.npoints->description = _("Number of interpolation points");
     parm.npoints->answer = "12";
+    parm.npoints->guisection = _("Settings");
 
     flag.noindex = G_define_flag();
     flag.noindex->key = 'n';
@@ -114,11 +116,13 @@
     flag.noindex->description = _("Slower but uses"
 				  " less memory and includes points from outside region"
 				  " in the interpolation");
+    flag.noindex->guisection = _("Settings");
 
     flag.withz = G_define_flag();
     flag.withz->key = 'z';
     flag.withz->description = _("Use z coordinates for approximation (3D vector maps only)");
-    
+    flag.withz->guisection = _("Values");
+
     if (G_parser(argc, argv))
 	exit(EXIT_FAILURE);
 



More information about the grass-commit mailing list