[GRASS-SVN] r61317 - in grass/branches/releasebranch_7_0/imagery: i.eb.evapfr i.evapo.pt

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Jul 22 06:13:07 PDT 2014


Author: neteler
Date: 2014-07-22 06:13:07 -0700 (Tue, 22 Jul 2014)
New Revision: 61317

Modified:
   grass/branches/releasebranch_7_0/imagery/i.eb.evapfr/main.c
   grass/branches/releasebranch_7_0/imagery/i.evapo.pt/main.c
Log:
backport of r60875

Modified: grass/branches/releasebranch_7_0/imagery/i.eb.evapfr/main.c
===================================================================
--- grass/branches/releasebranch_7_0/imagery/i.eb.evapfr/main.c	2014-07-22 13:04:08 UTC (rev 61316)
+++ grass/branches/releasebranch_7_0/imagery/i.eb.evapfr/main.c	2014-07-22 13:13:07 UTC (rev 61317)
@@ -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/branches/releasebranch_7_0/imagery/i.evapo.pt/main.c
===================================================================
--- grass/branches/releasebranch_7_0/imagery/i.evapo.pt/main.c	2014-07-22 13:04:08 UTC (rev 61316)
+++ grass/branches/releasebranch_7_0/imagery/i.evapo.pt/main.c	2014-07-22 13:13:07 UTC (rev 61317)
@@ -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