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

« back to all changes in this revision

Viewing changes to vector/v.extrude/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
 
<p>
4
 
<em>v.extrude</em> creates faces, kernels, volumes or 3D lines based
5
 
on 2D vector objects, i.e. points become 3D vertical lines, lines to
6
 
3D lines, boundaries to faces and areas to volumes (composition of
7
 
faces and kernel).
8
 
 
9
 
<p>
10
 
If the flag <b>-t</b> is used then 3D vector objects follow the
11
 
elevation model by using individual elevation values for the vertices
12
 
and nodes. This can be useful for models of large objects (forest
13
 
stands).
14
 
 
15
 
<h2>EXAMPLES</h2>
16
 
 
17
 
<h3>3D houses with fixed height</h3>
18
 
 
19
 
<div class="code"><pre>
20
 
v.extrude input=houses output=houses3D height=5 type=area
21
 
</pre></div>
22
 
 
23
 
<h3>3D houses with individual height</h3>
24
 
 
25
 
<div class="code"><pre>
26
 
v.extrude input=houses output=houses3D elevation=dem hcolumn=height type=area
27
 
</pre></div>
28
 
 
29
 
<h3>Convert 2D lines to 3D with fixed height</h3>
30
 
<div class="code"><pre>
31
 
v.extrude input=lines output=lines3D elevation=dem height=0 type=line
32
 
</pre></div>
33
 
 
34
 
<h2>SEE ALSO</h2>
35
 
 
36
 
<em>
37
 
<a href="nviz.html">nviz</a>
38
 
</em>
39
 
 
40
 
<h2>AUTHOR</h2>
41
 
 
42
 
Jachym Cepicky,<br>
43
 
Updated by Martin Landa, FBK-irst, Italy
44
 
 
45
 
<p>
46
 
<i>Last changed: $Date: 2008-02-29 00:33:29 +0100 (Fri, 29 Feb 2008) $</i>