Sfoglia il codice sorgente

r.grow manual: minor example cosmetics

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@73775 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 6 anni fa
parent
commit
dba2a06375
1 ha cambiato i file con 3 aggiunte e 0 eliminazioni
  1. 3 0
      scripts/r.grow/r.grow.html

+ 3 - 0
scripts/r.grow/r.grow.html

@@ -59,12 +59,15 @@ North Carolina sample dataset location is buffered:
 
 <div class="code"><pre>
 g.region raster=lakes -p
+# the lake raster map pixel resolution is 10m
 r.grow input=lakes output=lakes_grown_100m radius=10
 </pre></div>
 
 Shrinking instead of growing:
 
 <div class="code"><pre>
+g.region raster=lakes -p
+# the lake raster map pixel resolution is 10m
 r.grow input=lakes output=lakes_shrunk_100m radius=-10
 </pre></div>