d.polar.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <H2>DESCRIPTION</H2>
  2. <EM>d.polar</EM> calculates and displays a polar diagram of an
  3. angle raster map such as aspect, wind direction, or flow.
  4. The input angle map orientation must be counter-clockwise (CCW)
  5. from east, and the angle map units must be degrees. This refers
  6. to the standard orientation of GRASS (e.g., see <em>r.slope.aspect</em>).
  7. <P>
  8. The radius of the outer circle is defined by the total number
  9. of pixels in the map. If the polar diagram does not reach the
  10. outer circle, no data (NULL) pixels were found in the map.
  11. <P>
  12. The vector in the diagram indicates a prevailing direction, its length
  13. the strength of such direction. In case all angle vectors are oriented
  14. along the same direction, the length for the vector is maximal (in fact
  15. it is equal to length of the most populated bin of the underlying histogram).
  16. <P>
  17. As a side effect, the quality of the angle map can be derived from
  18. the diagram. Strong spikes may indicate an over-representation of
  19. the related angle(s) which happens in particular if integer maps
  20. are used.
  21. <H2>NOTES</H2>
  22. If the <b>eps</b> parameter is used, the diagram is generated
  23. as EPS file. If the <b>-x</b> flag is used <EM>xgraph</EM> is lauched.
  24. Otherwise <em>d.polar</em> will use <em>d.graph</em> to draw the plot
  25. in the current display frame.
  26. <P>
  27. If <EM>d.polar</EM> is used on an aspect map generated by
  28. <EM>r.slope.aspect</EM>, the <b>undef</b> parameter should be
  29. set to 0 to distinguish NO DATA (NULL) areas from areas where
  30. aspect is undefined (i.e. flat areas).
  31. <P>
  32. <center>
  33. <img src="d_polar_aspect.png" alt="Polar diagram of aspect map">
  34. <BR>
  35. <i>Polar diagram of aspect map</i>
  36. </center>
  37. <h2>EXAMPLE</h2>
  38. In this example, the polar diagram of the 'aspect' angle map in the
  39. Spearfish location is generated:
  40. <div class="code"><pre>
  41. d.polar aspect
  42. </pre></div>
  43. <H2>SEE ALSO</H2>
  44. <EM><A HREF="d.graph.html">d.graph</A></EM>,
  45. <EM><A HREF="d.histogram.html">d.histogram</A></EM>,
  46. <EM><A HREF="d.rast.arrow.html">d.rast.arrow</A></EM>,
  47. <EM><A HREF="r.slope.aspect.html">r.slope.aspect</A></EM>
  48. <H2>XGRAPH REQUIREMENT</H2>
  49. <A HREF="http://www.xgraph.org">Xgraph</a> must be installed for the
  50. <b>-x</b> flag to function.
  51. <H2>AUTHORS</H2>
  52. Markus Neteler, ITC-irst, Italy<BR>
  53. Bruno Caprile, ITC-irst, Italy<BR>
  54. Hamish Bowman, Otago University, New Zealand<BR>
  55. <p><i>Last changed: $Date$</i></p>