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>
- <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>
- <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>
- <p><i>Last changed: $Date$</i>
|