[GRASS-SVN] r67795 - in grass/branches/releasebranch_7_0/raster/r.watershed: ram seg
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Feb 9 19:19:32 PST 2016
Author: annakrat
Date: 2016-02-09 19:19:32 -0800 (Tue, 09 Feb 2016)
New Revision: 67795
Modified:
grass/branches/releasebranch_7_0/raster/r.watershed/ram/close_maps.c
grass/branches/releasebranch_7_0/raster/r.watershed/seg/close_maps.c
Log:
r.watershed: change warning to message, see #2901 (merge from trunk, r67794)
Modified: grass/branches/releasebranch_7_0/raster/r.watershed/ram/close_maps.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.watershed/ram/close_maps.c 2016-02-10 03:18:09 UTC (rev 67794)
+++ grass/branches/releasebranch_7_0/raster/r.watershed/ram/close_maps.c 2016-02-10 03:19:32 UTC (rev 67795)
@@ -28,8 +28,8 @@
if (wat_flag) {
fd = Rast_open_new(wat_name, DCELL_TYPE);
if (abs_acc) {
- G_warning("Writing out only positive flow accumulation values.");
- G_warning("Cells with a likely underestimate for flow accumulation can no longer be identified.");
+ G_message("Writing out only positive flow accumulation values.");
+ G_message("Cells with a likely underestimate for flow accumulation can no longer be identified.");
for (r = 0; r < nrows; r++) {
Rast_set_d_null_value(dbuf, ncols); /* reset row to all NULL */
for (c = 0; c < ncols; c++) {
Modified: grass/branches/releasebranch_7_0/raster/r.watershed/seg/close_maps.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.watershed/seg/close_maps.c 2016-02-10 03:18:09 UTC (rev 67794)
+++ grass/branches/releasebranch_7_0/raster/r.watershed/seg/close_maps.c 2016-02-10 03:19:32 UTC (rev 67795)
@@ -23,8 +23,8 @@
wabuf = G_malloc(ncols * sizeof(WAT_ALT));
seg_flush(&watalt);
if (abs_acc) {
- G_warning("Writing out only positive flow accumulation values.");
- G_warning("Cells with a likely underestimate for flow accumulation can no longer be identified.");
+ G_message("Writing out only positive flow accumulation values.");
+ G_message("Cells with a likely underestimate for flow accumulation can no longer be identified.");
}
fd = Rast_open_new(wat_name, DCELL_TYPE);
More information about the grass-commit
mailing list