r3.mkdspf.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <h2>DESCRIPTION</h2>
  2. Creates a display file from an existing grid3 file according to
  3. specified threshold levels. The display file is a display list
  4. of polygons that represent isosurfaces of the data volume. If
  5. specific <I>levels</I> are given, additional optional parameters
  6. are ignored. <I>Min</I> or <I>max</I> may be used alone or together
  7. to specify a sub-range of the data. The <I>step</I>
  8. parameter is given precedence over <I>tnum</I>.
  9. <h3>Flags:</h3>
  10. <dl>
  11. <dt><b>-q</b>
  12. <dd>Suppress progress report &amp; min/max information
  13. <dt><b>-f</b>
  14. <dd>Use flat shading rather than gradient
  15. </dl>
  16. <h3>Parameters:</h3>
  17. <dl>
  18. <dt><b>grid3</b>
  19. <dd>Name of an existing 3D raster map
  20. <dt><b>dspf</b>
  21. <dd>Name of output display file
  22. <dt><b>levels</b>
  23. <dd>List of thresholds for isosurfaces
  24. <dt><b>min</b>
  25. <dd>Minimum isosurface level
  26. <dt><b>max</b>
  27. <dd>Maximum isosurface level
  28. <dt><b>step</b>
  29. <dd>Positive increment between isosurface levels
  30. <dt><b>tnum</b>
  31. <dd>Number of isosurface threshold levels
  32. <dd>Default: 7
  33. </dl>
  34. <h2>Example:</h2>
  35. With grid3 data (<I>phdata</I>) in the range 3-7,
  36. we only want to see isosurface values for the range 4-6.
  37. Any of these commands will produce the same results:<br>
  38. <div class="code"><pre>
  39. r3.mkdspf phdata dspf=iso min=4.0 max=6.0 tnum=5
  40. r3.mkdspf phdata dspf=iso levels=4.0,4.5,5.0,5.5,6.0
  41. r3.mkdspf phdata dspf=iso min=4.0 max=6.0 step=0.5
  42. </pre></div>
  43. <h2>NOTE</h2>
  44. Currently the grid3 file must be in the user's mapset since the
  45. display files being created are specific to particular grid3
  46. files and are contained in directories under them.
  47. We should create a mechanism where users
  48. may make display files from others' grid3 files without having to
  49. copy them to their mapset.
  50. <h2>AUTHOR</h2>
  51. <p>Bill Brown,
  52. <a href="mailto:brown@gis.uiuc.edu">bbrown@gis.uiuc.edu</a>
  53. <p><i>Last changed: $Date$</i>