[GRASS-SVN] r71693 - grass/branches/releasebranch_7_2/raster/r.stream.extract

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Nov 12 05:02:07 PST 2017


Author: neteler
Date: 2017-11-12 05:02:07 -0800 (Sun, 12 Nov 2017)
New Revision: 71693

Modified:
   grass/branches/releasebranch_7_2/raster/r.stream.extract/r.stream.extract.html
Log:
r.stream.extract manual: example fixed again

Modified: grass/branches/releasebranch_7_2/raster/r.stream.extract/r.stream.extract.html
===================================================================
--- grass/branches/releasebranch_7_2/raster/r.stream.extract/r.stream.extract.html	2017-11-12 13:00:55 UTC (rev 71692)
+++ grass/branches/releasebranch_7_2/raster/r.stream.extract/r.stream.extract.html	2017-11-12 13:02:07 UTC (rev 71693)
@@ -215,17 +215,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