[GRASS-SVN] r71692 - grass/trunk/raster/r.stream.extract
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Nov 12 05:00:55 PST 2017
Author: neteler
Date: 2017-11-12 05:00:55 -0800 (Sun, 12 Nov 2017)
New Revision: 71692
Modified:
grass/trunk/raster/r.stream.extract/r.stream.extract.html
Log:
r.stream.extract manual: example fixed again
Modified: grass/trunk/raster/r.stream.extract/r.stream.extract.html
===================================================================
--- grass/trunk/raster/r.stream.extract/r.stream.extract.html 2017-11-12 12:56:45 UTC (rev 71691)
+++ grass/trunk/raster/r.stream.extract/r.stream.extract.html 2017-11-12 13:00:55 UTC (rev 71692)
@@ -216,17 +216,17 @@
# extract streams using the original accumulation map
r.stream.extract elevation=elev_ned_30m at PERMANENT \
accumulation=elev_ned_30m.acc \
- threshold=1000 \
- stream_rast=elev_ned_30m.streams.noweight
+ threshold=1000 \
+ stream_rast=elev_ned_30m.streams.noweight
# extract streams from weighed map
# requires a priori no-data filtering
-r.mapcalc "MASK = if(isnull(elev_ned_30m_acc_weighed), null(), 1)"
+r.mapcalc "MASK = if(isnull(elev_ned_30m.acc.weighed), null(), 1)"
r.stream.extract elevation=elev_ned_30m at PERMANENT \
accumulation=elev_ned_30m.acc.weighed \
- threshold=1000 \
- stream_rast=elev_ned_30m.streams
+ threshold=1000 \
+ stream_rast=elev_ned_30m.streams
r.mask -r
</pre></div>
More information about the grass-commit
mailing list