[GRASS-SVN] r57784 - grass/branches/releasebranch_6_4/raster/r.grow.distance

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Sep 21 17:29:49 PDT 2013


Author: hamish
Date: 2013-09-21 17:29:49 -0700 (Sat, 21 Sep 2013)
New Revision: 57784

Modified:
   grass/branches/releasebranch_6_4/raster/r.grow.distance/main.c
Log:
too many inputs to G_message(); wording tweak (merge from devbr6)

Modified: grass/branches/releasebranch_6_4/raster/r.grow.distance/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.grow.distance/main.c	2013-09-22 00:28:15 UTC (rev 57783)
+++ grass/branches/releasebranch_6_4/raster/r.grow.distance/main.c	2013-09-22 00:29:49 UTC (rev 57784)
@@ -9,7 +9,7 @@
  * PURPOSE:      Generates a raster map layer with contiguous areas 
  *               grown by one cell.
  *
- * COPYRIGHT:    (C) 2006, 2010 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2006-2013 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
@@ -147,7 +147,7 @@
     module = G_define_module();
     module->keywords = _("raster, geometry");
     module->description =
-	_("Generates a raster map layer of distance to features in input layer.");
+	_("Generates a raster map containing distances to nearest raster features.");
 
     opt.in = G_define_standard_option(G_OPT_R_INPUT);
 
@@ -304,7 +304,7 @@
     G_set_c_null_value(old_x_row, ncols);
     G_set_c_null_value(old_y_row, ncols);
 
-    G_message(_("Writing output raster maps..."), opt.in->answer);
+    G_message(_("Writing output raster maps..."));
     for (row = 0; row < nrows; row++) {
 	int irow = nrows - 1 - row;
 	off_t offset =



More information about the grass-commit mailing list