[GRASS-SVN] r60875 - in grass/trunk/imagery: i.eb.evapfr i.evapo.pt

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Jun 19 21:30:33 PDT 2014


Author: ychemin
Date: 2014-06-19 21:30:33 -0700 (Thu, 19 Jun 2014)
New Revision: 60875

Modified:
   grass/trunk/imagery/i.eb.evapfr/main.c
   grass/trunk/imagery/i.evapo.pt/main.c
Log:
Updated naming conventions

Modified: grass/trunk/imagery/i.eb.evapfr/main.c
===================================================================
--- grass/trunk/imagery/i.eb.evapfr/main.c	2014-06-20 04:25:37 UTC (rev 60874)
+++ grass/trunk/imagery/i.eb.evapfr/main.c	2014-06-20 04:30:33 UTC (rev 60875)
@@ -55,24 +55,24 @@
     
     /* Define the different options */ 
     input1 = G_define_standard_option(G_OPT_R_INPUT);
-    input1->key = "rnet";
+    input1->key = "netradiation";
     input1->description = _("Name of Net Radiation raster map [W/m2]");
 
     input2 = G_define_standard_option(G_OPT_R_INPUT);
-    input2->key = "g0";
+    input2->key = "soilheatflux";
     input2->description = _("Name of soil heat flux raster map [W/m2]");
 
     input3 = G_define_standard_option(G_OPT_R_INPUT);
-    input3->key = "h0";
+    input3->key = "sensibleheatflux";
     input3->description = _("Name of sensible heat flux raster map [W/m2]");
 
     output1 = G_define_standard_option(G_OPT_R_OUTPUT);
-    output1->key = "evapfr";
+    output1->key = "evaporativefraction";
     output1->description =
 	_("Name for output evaporative fraction raster map");
 
     output2 = G_define_standard_option(G_OPT_R_OUTPUT);
-    output2->key = "theta";
+    output2->key = "soilmoisture";
     output2->required = NO;
     output2->description =
 	_("Name for output root zone soil moisture raster map");

Modified: grass/trunk/imagery/i.evapo.pt/main.c
===================================================================
--- grass/trunk/imagery/i.evapo.pt/main.c	2014-06-20 04:25:37 UTC (rev 60874)
+++ grass/trunk/imagery/i.evapo.pt/main.c	2014-06-20 04:30:33 UTC (rev 60875)
@@ -67,7 +67,7 @@
     G_add_keyword(_("evapotranspiration"));
     module->description =
 	_("Computes evapotranspiration calculation "
-	  "Prestley and Taylor formulation, 1972.");
+	  "Priestley and Taylor formulation, 1972.");
     
     /* Define different options */
     input_RNET = G_define_standard_option(G_OPT_R_INPUT);
@@ -90,7 +90,7 @@
     input_PT->key = "priestleytaylorcoef";
     input_PT->type = TYPE_DOUBLE;
     input_PT->required = YES;
-    input_PT->description = _("Prestley-Taylor coefficient");
+    input_PT->description = _("Priestley-Taylor coefficient");
     input_PT->answer = "1.26";
 
     output = G_define_standard_option(G_OPT_R_OUTPUT);



More information about the grass-commit mailing list