~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to raster3d/r3.mkdspf/description.html

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

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