[GRASS-SVN] r45848 - in grass/trunk/imagery: i.eb.eta i.eb.evapfr i.eb.netrad i.eb.soilheatflux

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Apr 4 15:17:16 EDT 2011


Author: neteler
Date: 2011-04-04 12:17:16 -0700 (Mon, 04 Apr 2011)
New Revision: 45848

Modified:
   grass/trunk/imagery/i.eb.eta/main.c
   grass/trunk/imagery/i.eb.evapfr/main.c
   grass/trunk/imagery/i.eb.netrad/main.c
   grass/trunk/imagery/i.eb.soilheatflux/main.c
Log:
msg standardization

Modified: grass/trunk/imagery/i.eb.eta/main.c
===================================================================
--- grass/trunk/imagery/i.eb.eta/main.c	2011-04-04 14:32:11 UTC (rev 45847)
+++ grass/trunk/imagery/i.eb.eta/main.c	2011-04-04 19:17:16 UTC (rev 45848)
@@ -1,4 +1,3 @@
-
 /****************************************************************************
  *
  * MODULE:       i.eb.eta
@@ -6,7 +5,7 @@
  * PURPOSE:      Calculates the actual evapotranspiration for diurnal period
  *               as seen in Bastiaanssen (1995) 
  *
- * COPYRIGHT:    (C) 2002-2009 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2002-2011 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
@@ -21,6 +20,7 @@
 #include <grass/gis.h>
 #include <grass/raster.h>
 #include <grass/glocale.h>
+
 double et_a(double r_net_day, double evap_fr, double tempk);
 
 int main(int argc, char *argv[]) 
@@ -45,7 +45,7 @@
     G_add_keyword(_("energy balance"));
     G_add_keyword(_("SEBAL"));
     module->description =
-	_("actual evapotranspiration for diurnal period (Bastiaanssen, 1995)");
+	_("Actual evapotranspiration for diurnal period (Bastiaanssen, 1995).");
     
     /* Define the different options */ 
     input1 = G_define_standard_option(G_OPT_R_INPUT);
@@ -135,4 +135,3 @@
     exit(EXIT_SUCCESS);
 }
 
-

Modified: grass/trunk/imagery/i.eb.evapfr/main.c
===================================================================
--- grass/trunk/imagery/i.eb.evapfr/main.c	2011-04-04 14:32:11 UTC (rev 45847)
+++ grass/trunk/imagery/i.eb.evapfr/main.c	2011-04-04 19:17:16 UTC (rev 45848)
@@ -1,4 +1,3 @@
-
 /****************************************************************************
  *
  * MODULE:       i.eb.evapfr
@@ -6,7 +5,7 @@
  * PURPOSE:      Calculates the evaporative fraction
  *               as seen in Bastiaanssen (1995) 
  *
- * COPYRIGHT:    (C) 2002-2009 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2002-2011 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
@@ -53,7 +52,7 @@
     G_add_keyword(_("SEBAL"));
     module->description =
 	_("Computes evaporative fraction (Bastiaanssen, 1995) and "
-	  "root zone soil moisture (Makin, Molden and Bastiaanssen, 2001)");
+	  "root zone soil moisture (Makin, Molden and Bastiaanssen, 2001).");
     
     /* Define the different options */ 
     input1 = G_define_standard_option(G_OPT_R_INPUT);

Modified: grass/trunk/imagery/i.eb.netrad/main.c
===================================================================
--- grass/trunk/imagery/i.eb.netrad/main.c	2011-04-04 14:32:11 UTC (rev 45847)
+++ grass/trunk/imagery/i.eb.netrad/main.c	2011-04-04 19:17:16 UTC (rev 45848)
@@ -1,4 +1,3 @@
-
 /****************************************************************************
  *
  * MODULE:       i.eb.netrad
@@ -7,7 +6,7 @@
  *               as seen in Bastiaanssen (1995) using time of
  *               satellite overpass.
  *
- * COPYRIGHT:    (C) 2006-2010 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2006-2011 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
@@ -22,6 +21,7 @@
 #include <grass/gis.h>
 #include <grass/raster.h>
 #include <grass/glocale.h>
+
 double r_net(double bbalb, double ndvi, double tempk, double dtair,
 	      double e0, double tsw, double doy, double utc,
 	      double sunzangle);
@@ -57,7 +57,7 @@
     G_add_keyword(_("energy balance"));
     G_add_keyword(_("SEBAL"));
     module->description =
-	_("net radiation approximation (Bastiaanssen, 1995)");
+	_("Net radiation approximation (Bastiaanssen, 1995).");
     
 	/* Define the different options */ 
     input1 = G_define_standard_option(G_OPT_R_INPUT);

Modified: grass/trunk/imagery/i.eb.soilheatflux/main.c
===================================================================
--- grass/trunk/imagery/i.eb.soilheatflux/main.c	2011-04-04 14:32:11 UTC (rev 45847)
+++ grass/trunk/imagery/i.eb.soilheatflux/main.c	2011-04-04 19:17:16 UTC (rev 45848)
@@ -1,4 +1,3 @@
-
 /****************************************************************************
  *
  * MODULE:       i.eb.soilheatflux
@@ -7,7 +6,7 @@
  *               as seen in Bastiaanssen (1995) using time of
  *               satellite overpass.
  *
- * COPYRIGHT:    (C) 2006-2009 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2006-2011 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
@@ -51,7 +50,7 @@
     G_add_keyword(_("soil heat flux"));
     G_add_keyword(_("energy balance"));
     G_add_keyword(_("SEBAL"));
-    module->description = _("Soil heat flux approximation (Bastiaanssen, 1995)");
+    module->description = _("Soil heat flux approximation (Bastiaanssen, 1995).");
     
     /* Define the different options */ 
     input1 = G_define_standard_option(G_OPT_R_INPUT);
@@ -65,7 +64,7 @@
     input3 = G_define_standard_option(G_OPT_R_INPUT);
     input3->key = "temperature";
     input3->description =
-	_("Name of Surface temperature raster map [degree Kelvin]");
+	_("Name of Surface temperature raster map [K]");
 
     input4 = G_define_standard_option(G_OPT_R_INPUT);
     input4->key = "netradiation";
@@ -74,7 +73,7 @@
     input5 = G_define_standard_option(G_OPT_R_INPUT);
     input5->key = "localutctime";
     input5->description =
-	_("Name of time of satellite overpass raster map [local UTC]");
+	_("Name of time of satellite overpass raster map [local time in UTC]"); 
 
     output1 = G_define_standard_option(G_OPT_R_OUTPUT);
 



More information about the grass-commit mailing list