1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <h2>DESCRIPTION</h2>
- The GRASS tool <em>r.digit</em> provides the user with a
- way to draw lines, areas, and circles on a monitor screen,
- and to save these features in a raster map. Lines, areas,
- and circles are to be drawn using a pointing device
- (mouse). A mouse button menu indicates the consequences of
- pressing each mouse button. The user is requested to enter
- the category number associated with the line, area, or
- circle subsequently drawn by the user. Lines, areas, and
- circles are defined by the series of points marked by the
- user inside the map window. <em>r.digit</em> will close
- areas when the user has not. By drawing a series of such
- features, the user can repair maps, identify areas of
- interest, or simply draw graphics for advertisement. When
- drawing is completed, a raster map based on the user's
- instructions is generated. It is available for use as a
- mask, in analyses, and for display.
- <p>The <b>bgcmd</b> option is intended to be used with display (d.*) commands.
- If several display commands are to be used to render the background
- they should be separated with the semi-colon ';' character.
- When run from the command line, these display commands will generally
- need to be "quoted" as they will contain spaces (see examples).
- <p>Digitizing is done in a "polygon" method. Each area is
- circumscribed completely. Two or more overlapping areas and/or lines
- might define a single part of a map. Each part of the map,
- however, is assigned only the LAST area or line which
- covered it.
- <h3>THE PROCESS:</h3>
- <h4>Start a monitor and display a raster to help setup and zoom to area of interest</h4>
- <div class="code"><pre>
- d.mon x0
- </pre></div>
- <p>
- <h4>Digitizing an area based on a existing map; creating a new raster map</h4>
- <div class="code"><pre>
- r.digit out=name_of_new_raster_map bgcmd="d.rast map=name_of_raster"
- </pre></div>
- <ol>
- <li>Choose to define an area or line, exit, or quit.
- If you choose to finish (<tt>exit</tt>) a new map is then created.
- If you quit, the session exits with nothing created.
- <li>If you choose to make an area or line you must identify
- the category number for that area or line.
- <li>Using the mouse trace the line or circumscribe the area;
- or, finish (go to Step 1).
- </ol>
- <h2>SEE ALSO</h2>
- <em>
- <a href="wxGUI.Vector_Digitizer.html">wxGUI vector digitizer</a>
- <a href="d.graph.html">d.graph</a>,
- <a href="d.linegraph.html">d.linegraph</a>,
- <a href="g.region.html">g.region</a>,
- <a href="r.in.poly.html">r.in.poly</a>,
- <a href="r.mapcalc.html">r.mapcalc</a>,
- <a href="r.to.vect.html">r.to.vect</a>,
- <a href="v.in.ascii.html">v.in.ascii</a>
- </em>
- <h2>AUTHOR</h2>
- Michael Shapiro, U.S.Army Construction Engineering
- Research Laboratory
- <p><i>Last changed: $Date$</i>
|