g.gui.rdigit.html 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!-- meta page description: wxGUI Raster Digitizer -->
  2. <!-- meta page index: wxGUI -->
  3. <h2>KEYWORDS</h2>
  4. <a href="display.html">display</a>, <a href="topic_GUI.html">GUI</a>, <a href="keywords.html#raster">raster</a>, <a href="keywords.html#editing">editing</a>, <a href="keywords.html#digitizer">digitizer</a>
  5. <h2>DESCRIPTION</h2>
  6. <b>Raster Digitizer</b> is a simple tool to quickly draw lines, areas,
  7. and circles and save these features in a raster map. It is accessible
  8. from the Map Display toolbar (from the combo box on the right).
  9. <p>
  10. <em>Raster Digitizer</em> currently allows you to:
  11. <ul>
  12. <li>draw polygons, lines and points</li>
  13. <li>set category value of the feature you are drawing</li>
  14. <li>set feature width (width of currently digitized line or diameter of a digitized point in map units)</li>
  15. <li>create a new raster from scratch or from an already existing raster</li>
  16. <li>undo edits and save edits before leaving the digitizer</li>
  17. </ul>
  18. <p>
  19. The typical workflow includes these steps:
  20. <ol>
  21. <li>Set computational region as needed.</li>
  22. <li>Switch to Raster Digitizer and select a map to create.
  23. Select either a new raster or create a new raster from existing raster,
  24. also select raster type (CELL, FCELL, DCELL)</li>
  25. <li>Specify category value and width <em>before</em> drawing a feature</li>
  26. <li>Specify digitizing tool (area, line, point)</li>
  27. <li>Start digitizing and when you want to finish area or line, <em>use right click</em></li>
  28. <li>Change color of temporary overlay depending on your needs</li>
  29. <li>Set different category and repeat</li>
  30. <li>At any point you can use <em>Undo</em> or <em>Save</em></li>
  31. <li>If existing raster is used for the new raster, digitized areas will respect
  32. the color table, but you can always set different color table.</li>
  33. </ol>
  34. <h2>NOTES</h2>
  35. Raster Digitizer respects computational region including the currently set resolution.
  36. <h2>EXAMPLES</h2>
  37. In the following figures we start with elev_lid792_1m raster map in North carolina sample dataset
  38. and digitize two buildings, one rectangular and one with circular footprint.
  39. Both buildings have the roof level at 130 m. We set the width when digitizing the point to 50 meters
  40. which results in the building having 50 m in diameter.
  41. When we are done with digitizing, we save the result and explore cast shadows of the buildings with
  42. <a href="r.sun.html">r.sun</a> module:
  43. <div class="code"><pre>
  44. g.region raster=elev_lid792_1m
  45. # now create elev_edited raster by digitizing and save
  46. r.slope.aspect elevation=elev_edited slope=elev_slope aspect=elev_aspect
  47. r.sun elevation=elev_edited aspect=elev_aspect slope=elev_slope beam_rad=beam day=172 time=6
  48. </pre></div>
  49. <div align="center">
  50. <a href="wxGUI_rdigit_step1.png"><img src="wxGUI_rdigit_step1.png" alt="Raster digitizer example step 1" width="400" height="310"></a>
  51. <a href="wxGUI_rdigit_step2.png"><img src="wxGUI_rdigit_step2.png" alt="Raster digitizer example step 2" width="400" height="310"></a>
  52. <a href="wxGUI_rdigit_step3.png"><img src="wxGUI_rdigit_step3.png" alt="Raster digitizer example step 3" width="400" height="310"></a>
  53. <a href="wxGUI_rdigit_step4.png"><img src="wxGUI_rdigit_step4.png" alt="Raster digitizer example step 4" width="400" height="310"></a>
  54. <a href="wxGUI_rdigit_step5.png"><img src="wxGUI_rdigit_step5.png" alt="Raster digitizer example step 5" width="400" height="310"></a>
  55. <br>
  56. <i>Figure: Steps to digitize new buildings on elev_lid792_1m raster map.</i>
  57. </div>
  58. <h2>SEE ALSO</h2>
  59. <em>
  60. <a href="wxGUI.html">wxGUI</a><br>
  61. <a href="wxGUI.components.html">wxGUI components</a>,<br>
  62. <a href="r.in.poly.html">r.in.poly</a> (backend of digitizer),<br>
  63. <a href="g.gui.vdigit.html">g.gui.vdigit</a>
  64. </em>
  65. <h2>AUTHORS</h2>
  66. Anna Petrasova, NCSU GeoForALL Laboratory<br>
  67. Tomas Zigo (standalone module)