logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

v.delaunay - Creates a Delaunay triangulation from an input vector map containing points or centroids.

Authors

       Martin Pavlovsky, Google Summer of Code 2008, Student
       Paul Kelly, Mentor
       Based on "dct" by Geoff Leach, Department of Computer Science, RMIT.

Description

v.delaunay uses an existing vector points map (input) to  create  a  Delaunay  triangulation  vector  map
       (output).

       Delaunay  triangulation  example  (red-yellow points are the data points from which the triangulation was
       generated):

Example

       Commands used with the North Carolina dataset to create the above figure (subset shown in figure).
       g.region n=220750 s=219950 w=638300 e=639000 -p
       v.delaunay input=elev_lid792_randpts output=elev_lid792_randpts_delaunay

Keywords

       vector, geometry, triangulation

Name

v.delaunay  - Creates a Delaunay triangulation from an input vector map containing points or centroids.

References

LeonidGuibasandJorgeStolfi,(1985).PrimitivesfortheManipulationofGeneralSubdivisionsandtheComputationofVoronoiDiagrams,ACMTransactionsonGraphics,Vol4,No.2,April1985,Pages74-123

See Also

v.voronoi,v.hull

       Delaunay triangulation (Wikipedia)

Source Code

       Available at: v.delaunay source code (history)

       Accessed: Friday Apr 04 01:20:14 2025

       Main index | Vector index | Topics index | Keywords index | Graphical index | Full index

       © 2003-2025 GRASS Development Team, GRASS GIS 8.4.1 Reference Manual

GRASS 8.4.1                                                                                   v.delaunay(1grass)

Synopsis

v.delaunayv.delaunay--helpv.delaunay [-rl] input=name  [layer=string]  output=name  [--overwrite]  [--help]  [--verbose]  [--quiet]
       [--ui]

   Flags:-r
           Use only points in current region

       -l
           Output triangulation as a graph (lines), not areas

       --overwrite
           Allow output files to overwrite existing files

       --help
           Print usage summary

       --verbose
           Verbose module output

       --quiet
           Quiet module output

       --ui
           Force launching GUI dialog

   Parameters:input=name[required]
           Name of input vector map
           Or data source for direct OGR access

       layer=string
           Layer number or name (’-1’ for all layers)
           A  single vector map can be connected to multiple database tables. This number determines which table
           to use. When used with direct OGR access this is the layer name.
           Default: -1output=name[required]
           Name for output vector map

See Also