浏览代码

r.topidx: msg cosmetics

git-svn-id: https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0@61342 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 11 年之前
父节点
当前提交
28038a95f0
共有 1 个文件被更改,包括 7 次插入7 次删除
  1. 7 7
      raster/r.topidx/main.c

+ 7 - 7
raster/r.topidx/main.c

@@ -3,14 +3,14 @@
  *
  * MODULE:       r.topidx
  *
- * AUTHOR(S):    Keith Beven <k.beven lancaster.ac.uk>,
- *               Huidae Cho <grass4u gmail.com>, Hydro Laboratory,
+ * AUTHOR(S):    Huidae Cho <grass4u gmail.com>, Hydro Laboratory,
  *               Kyungpook National University
+ *               Based on GRIDATB.FOR by Keith Beven <k.beven lancaster.ac.uk>
  *
- * PURPOSE:      Creates topographic index map from elevation map.
- *               Based on GRIDATB.FOR.
+ * PURPOSE:      Creates a topographic index raster map from an elevation
+ *               raster map.
  *
- * COPYRIGHT:    (C) 2000-2013 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2000-2014 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
@@ -39,13 +39,13 @@ int main(int argc, char **argv)
     G_add_keyword(_("raster"));
     G_add_keyword(_("hydrology"));
     module->description =
-	_("Creates topographic index map from elevation raster map.");
+	_("Creates a topographic index raster map from an elevation raster map.");
 
     params.input = G_define_standard_option(G_OPT_R_ELEV);
     params.input->key = "input";
 
     params.output = G_define_standard_option(G_OPT_R_OUTPUT);
-    params.output->description = _("Name for output topographic index map");
+    params.output->description = _("Name for output topographic index raster map");
 
     if (G_parser(argc, argv))
 	exit(EXIT_FAILURE);