123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <h2>DESCRIPTION</h2>
- Creates a display file from an existing grid3 file according to
- specified threshold levels. The display file is a display list
- of polygons that represent isosurfaces of the data volume. If
- specific <I>levels</I> are given, additional optional parameters
- are ignored. <I>Min</I> or <I>max</I> may be used alone or together
- to specify a sub-range of the data. The <I>step</I>
- parameter is given precedence over <I>tnum</I>.
- <h3>Flags:</h3>
- <dl>
- <dt><b>-q</b>
- <dd>Suppress progress report & min/max information
- <dt><b>-f</b>
- <dd>Use flat shading rather than gradient
- </dl>
- <h3>Parameters:</h3>
- <dl>
- <dt><b>grid3</b>
- <dd>Name of an existing 3D raster map
- <dt><b>dspf</b>
- <dd>Name of output display file
- <dt><b>levels</b>
- <dd>List of thresholds for isosurfaces
- <dt><b>min</b>
- <dd>Minimum isosurface level
- <dt><b>max</b>
- <dd>Maximum isosurface level
- <dt><b>step</b>
- <dd>Positive increment between isosurface levels
- <dt><b>tnum</b>
- <dd>Number of isosurface threshold levels
- <dd>Default: 7
- </dl>
- <h2>Example:</h2>
- With grid3 data (<I>phdata</I>) in the range 3-7,
- we only want to see isosurface values for the range 4-6.
- Any of these commands will produce the same results:<br>
- <div class="code"><pre>
- r3.mkdspf phdata dspf=iso min=4.0 max=6.0 tnum=5
- r3.mkdspf phdata dspf=iso levels=4.0,4.5,5.0,5.5,6.0
- r3.mkdspf phdata dspf=iso min=4.0 max=6.0 step=0.5
- </pre></div>
- <h2>NOTE</h2>
- Currently the grid3 file must be in the user's mapset since the
- display files being created are specific to particular grid3
- files and are contained in directories under them.
- We should create a mechanism where users
- may make display files from others' grid3 files without having to
- copy them to their mapset.
- <h2>AUTHOR</h2>
- <p>Bill Brown,
- <a href="mailto:brown@gis.uiuc.edu">bbrown@gis.uiuc.edu</a>
- <p><i>Last changed: $Date$</i>
|