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

« back to all changes in this revision

Viewing changes to vector/v.delaunay/v.delaunay.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
<em>v.delaunay</em> uses an existing vector points map (<b>input</b>)
 
4
to create a Delaunay triangulation vector map (<b>output</b>).
 
5
<p>
 
6
Delaunay triangulation example (red-yellow points are the data points from which the triangulation was generated):
 
7
<center>
 
8
<img src="v_delaunay.png" border="1">
 
9
</center>
 
10
 
 
11
 
 
12
<h2>EXAMPLE</h2>
 
13
 
 
14
Commands used with the North Carolina dataset to create the above figure (subset shown in figure).
 
15
<div class="code"><pre>
 
16
g.region n=220750 s=219950 w=638300 e=639000 -p
 
17
v.delaunay input=elev_lid792_randpts output=elev_lid792_randpts_delaunay
 
18
</pre></div>
 
19
 
 
20
 
 
21
<h2>REFERENCES</h2>
 
22
<em>Leonid Guibas and Jorge Stolfi, (1985). Primitives for the 
 
23
Manipulation of General Subdivisions and the Computation of
 
24
Voronoi Diagrams, ACM Transactions on Graphics, Vol 4, No. 2, 
 
25
April 1985, Pages 74-123
 
26
</em>
 
27
 
 
28
 
 
29
<h2>SEE ALSO</h2>
 
30
<em>
 
31
<a href="v.voronoi.html">v.voronoi</a>, 
 
32
<a href="v.hull.html">v.hull</a>
 
33
</em>
 
34
 
 
35
 
 
36
<h2>AUTHORS</h2>
 
37
Martin Pavlovsky, Google Summer of Code 2008, Student<br>
 
38
Paul Kelly, Mentor<br>
 
39
Based on "dct" by Geoff Leach, Department of Computer Science, RMIT.<br>
 
40
 
 
41
<p>
 
42
<i>Last changed: $Date: 2014-01-07 00:15:11 +0100 (Tue, 07 Jan 2014) $</i>