v.kernel.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <h2>DESCRIPTION</h2>
  2. <em>v.kernel</em> generates a raster density map from vector points
  3. data using a moving
  4. kernel. Available <a href="http://en.wikipedia.org/wiki/Kernel_(statistics)#Kernel_functions_in_common_use">kernel
  5. density functions</a> are <em>uniform, triangular, epanechnikov,
  6. quartic, triweight, gaussian, cosine</em>, default
  7. is <em>gaussian</em>.
  8. <p>The module can also generate a vector density map on a vector network.
  9. Conventional kernel functions produce biased estimates by overestimating
  10. the densities around network nodes, whereas the equal split method of
  11. Okabe et al. (2009) produces unbiased density estimates. The equal split
  12. method uses the kernel function selected with the <b>kernel</b> option
  13. and can be enabled with <b>node=split</b>.
  14. <h2>NOTES</h2>
  15. The <b>mult</b> option is needed to overcome the limitation that
  16. the resulting density in case of a vector map output is stored as category
  17. (integer). The density result stored as category may be multiplied by this number.
  18. <p>
  19. For the <em>gaussian</em> kernel, standard deviation for the
  20. <a href="http://en.wikipedia.org/wiki/Kernel_(statistics)#Kernel_functions_in_common_use">gaussian function</a>
  21. is set to 1/4 of the radius.
  22. <p>
  23. With the <b>-o</b> flag (experimental) the command tries to calculate an
  24. optimal standard deviation. The value of <em>stddeviation</em> is taken
  25. as maximum value. Standard deviation is calculated using ALL points,
  26. not just those in the current region.
  27. <h2>LIMITATIONS</h2>
  28. The module only considers the presence of points, but not
  29. (yet) any attribute values.
  30. <h2>REFERENCES</h2>
  31. <ul>
  32. <li>Okabe, A., Satoh, T., Sugihara, K. (2009). <i>A kernel density estimation
  33. method for networks, its computational method and a GIS-based tool</i>.
  34. <b>International Journal of Geographical Information Science</b>, Vol 23(1),
  35. pp. 7-32.<br>
  36. DOI: <a href="http://dx.doi.org/10.1080/13658810802475491">10.1080/13658810802475491</a>
  37. </ul>
  38. <h2>SEE ALSO</h2>
  39. <em><a href="v.surf.rst.html">v.surf.rst</a></em>
  40. <h2>AUTHORS</h2>
  41. Stefano Menegon, <a href="http://mpa.itc.it/">ITC-irst</a>, Trento, Italy<br>
  42. Radim Blazek (additional kernel density functions and network part)
  43. <p>
  44. <i>Last changed: $Date$</i>