浏览代码

i.evapo.time_integration renamed to i.evapo.time

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@44993 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 14 年之前
父节点
当前提交
62e97ea4c7
共有 3 个文件被更改,包括 7 次插入9 次删除
  1. 1 1
      imagery/i.evapo.time/Makefile
  2. 0 0
      imagery/i.evapo.time/i.evapo.time.html
  3. 6 8
      imagery/i.evapo.time/main.c

+ 1 - 1
imagery/i.evapo.time/Makefile

@@ -1,6 +1,6 @@
 MODULE_TOPDIR = ../..
 
-PGM = i.evapo.time_integration
+PGM = i.evapo.time
 
 LIBES = $(RASTERLIB) $(GISLIB)
 DEPENDENCIES = $(RASTERDEP) $(GISDEP)

imagery/i.evapo.time/i.evapo.time_integration.html → imagery/i.evapo.time/i.evapo.time.html


+ 6 - 8
imagery/i.evapo.time/main.c

@@ -1,13 +1,13 @@
 
 /****************************************************************************
  *
- * MODULE:       i.evapo.time_integration
+ * MODULE:       i.evapo.time
  * AUTHOR(S):    Yann Chemin - yann.chemin@gmail.com
  * 		 Ines Cherif - icherif@yahoo.com
  * PURPOSE:      Integrate in time the evapotranspiration from satellite,
  *		 following a daily pattern from meteorological ETo.
  *
- * COPYRIGHT:    (C) 2008-2009 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2008-2009, 2011 by the GRASS Development Team
  *
  *               This program is free software under the GNU Lesser General Public
  *   	    	 License. Read the file COPYING that comes with GRASS for details.
@@ -74,14 +74,12 @@ int main(int argc, char *argv[])
     G_gisinit(argv[0]);
 
     module = G_define_module();
-    module->description =_("Computes temporal integration of satellite "
-			   "ET actual (ETa) following the daily ET reference "
-			   "(ETo) from meteorological station(s)");
     G_add_keyword(_("imagery"));
     G_add_keyword(_("evapotranspiration"));
-    G_add_keyword(_("temporal"));
-    G_add_keyword(_("integration"));
-
+    module->description =_("Computes temporal integration of satellite "
+			   "ET actual (ETa) following the daily ET reference "
+			   "(ETo) from meteorological station(s).");
+    
     /* Define the different options */
     input = G_define_standard_option(G_OPT_R_INPUTS);
     input->key = "eta";