浏览代码

v.kernel: add example with picture

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@70942 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 8 年之前
父节点
当前提交
a3603e2860
共有 2 个文件被更改,包括 15 次插入1 次删除
  1. 15 1
      vector/v.kernel/v.kernel.html
  2. 二进制
      vector/v.kernel/v_kernel.png

+ 15 - 1
vector/v.kernel/v.kernel.html

@@ -28,7 +28,21 @@ optimal radius. The value of <em>radius</em> is taken
 as maximum value. The radius is calculated based on the gaussian function, 
 using ALL points, not just those in the current region.
 
-<h2>LIMITATIONS</h2>
+
+<h2>EXAMPLES</h2>
+Compute density of points (using vector map of schools from North Carolina sample dataset):
+<div class="code"><pre>
+g.region region=wake_30m
+v.kernel input=schools_wake output=schools_density radius=5000 multiplier=1000000
+r.colors map=schools_density color=bcyr
+</pre></div>
+
+<center>
+<img src="v_kernel.png" alt="Density of schools" border=0><br>
+School density
+</center>
+
+<h2>KNOWN ISSUES</h2>
 The module only considers the presence of points, but not 
 (yet) any attribute values.
 

二进制
vector/v.kernel/v_kernel.png