浏览代码

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 年之前
父节点
当前提交
dba2a06375
共有 1 个文件被更改,包括 3 次插入0 次删除
  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>