[GRASS-SVN] r36821 - grass-addons/raster/r.soils.texture
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Apr 20 17:13:54 EDT 2009
Author: gianluca
Date: 2009-04-20 17:13:54 -0400 (Mon, 20 Apr 2009)
New Revision: 36821
Modified:
grass-addons/raster/r.soils.texture/description.html
grass-addons/raster/r.soils.texture/main.c
Log:
mod option description
Modified: grass-addons/raster/r.soils.texture/description.html
===================================================================
--- grass-addons/raster/r.soils.texture/description.html 2009-04-20 20:33:10 UTC (rev 36820)
+++ grass-addons/raster/r.soils.texture/description.html 2009-04-20 21:13:54 UTC (rev 36821)
@@ -22,16 +22,16 @@
<BR>
<H2>REFERENCE</H2>
-<p>Bourke P., 1987 Determining if a point lies on the interior of a polygon. Downloaded printed</p>
-<p>Cavallini P, Neteler M., 2005 I GIS Open Source: unalternativa possible ? MondoGIS n° 47</p>
-<p>Cavallini P, Neteler M., 2006 L'analisi geografica Open Source: GRASS GIS parte 2 raster MondoGIS n° 52</p>
-<p>Neteler M. and H. Mitasova 2004 Open Source GIS: A GRASS GIS Approah - Kluwer Academic Publisher/Springer, Boston, -Second edition ISBN: 1-4020-8064-6</p>
-<p>Sanesi G., 2000 - Elementi di pedologia - Edagricole, Bologna</p>
+<p>Bourke P., 1987 Determining if a point lies on the interior of a polygon. Downloaded printed</p>
+<p>Cavallini P, Neteler M., 2005 I GIS Open Source: una alternativa possible? MondoGIS n° 47</p>
+<p>Cavallini P, Neteler M., 2006 L'analisi geografica Open Source: GRASS GIS parte 2 raster MondoGIS n° 52</p>
+<p>Neteler M. and H. Mitasova 2004 Open Source GIS: A GRASS GIS Approach - Kluwer Academic Publisher/Springer, Boston, -Second edition ISBN: 1-4020-8064-6</p>
+<p>Sanesi G., 2000 - Elementi di pedologia - Edagricole, Bologna</p>
<p>Texture AutoLookup (TAL) ver 4.2, 2002 </p>
-<p>Van Rossum G. - 2005 - Manuale di riferimento di python - Ed. Italiana, Fred L. Drake, Jr., editor</p>
-<p>WATTON J. D., 1997 - Comparing C, Fortran, Lisp, java, python, perl,
+<p>Van Rossum G. - 2005 - Manuale di riferimento di python - Ed. Italiana, Fred L. Drake, Jr., editor</p>
+<p>WATTON J. D., 1997 - Comparing C, Fortran, Lisp, java, python, perl,
scheme (guile), and tcl using a floating point numerical test - point inside
-polygon. Applied mathematics and computer technology center alcoa technical
+polygon. Applied mathematics and computer technology center alcoa technical
center. Distribution documents.</p>
<p>
<br><br>
Modified: grass-addons/raster/r.soils.texture/main.c
===================================================================
--- grass-addons/raster/r.soils.texture/main.c 2009-04-20 20:33:10 UTC (rev 36820)
+++ grass-addons/raster/r.soils.texture/main.c 2009-04-20 21:13:54 UTC (rev 36821)
@@ -97,17 +97,17 @@
/* initialize module */
module = G_define_module();
- module->description = _("Define soil texture from sand and clay grid."); //D
+ module->description = _("Define soil texture from sand and clay grid.")
/* Define the different options for SAND file */
inputSand = G_define_standard_option(G_OPT_R_INPUT);
inputSand->key = "sand";
- inputSand->description = _("Name of input SAND map");
+ inputSand->description = _("Name of input sand map [0-100]");
/* Define the different options for CLAY file */
inputClay = G_define_standard_option(G_OPT_R_INPUT);
inputClay->key = "clay";
- inputClay->description = _("Name of input CLAY map");
+ inputClay->description = _("Name of input clay map [0-100]");
/*Define the texture file scheme: USDA, FAO, International or other scheme */
inputTextureScheme = G_define_standard_option(G_OPT_F_INPUT);
More information about the grass-commit
mailing list