From 14f89cda9db43960a10f47217355a86b7ba171ae Mon Sep 17 00:00:00 2001 From: Huidae Cho Date: Tue, 17 Oct 2023 18:16:29 -0600 Subject: [PATCH] r.flowaccumulation: Rename flowaccumulation_diff to flow_accum_diff in the manual (#958) --- .../r.flowaccumulation/r.flowaccumulation.html | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/raster/r.flowaccumulation/r.flowaccumulation.html b/src/raster/r.flowaccumulation/r.flowaccumulation.html index 6ec088d117..b9b798a9dd 100644 --- a/src/raster/r.flowaccumulation/r.flowaccumulation.html +++ b/src/raster/r.flowaccumulation/r.flowaccumulation.html @@ -46,18 +46,17 @@

EXAMPLES

r.colors map=flow_accum_new raster=flow_accum # check difference between flow_accum and flow_accum_new -r.mapcalc expression="flowaccumulation_diff=if(flow_accum-flow_accum_new, flow_accum-flow_accum_new, null())" +r.mapcalc expression="flow_accum_diff=if(flow_accum-flow_accum_new, flow_accum-flow_accum_new, null())" -

For some reason, there are slight differences between the two output maps. -The yellow and purple cells show the difference raster map -(flowaccumulation_diff). The red arrows and numbers represent drainage -directions (drain_directions) and flow accumulation by -r.watershed (flow_accum), respectively. Note that some cells -close to headwater cells are assigned 1 even though they are located downstream -of other cells. +

There are slight differences between the two output maps. The yellow and +purple cells show the difference raster map (flow_accum_diff). The red +arrows and numbers represent drainage directions (drain_directions) and +flow accumulation by r.watershed (flow_accum), respectively. +Note that some cells close to headwater cells are assigned 1 even though they +are located downstream of other cells.