PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ lwgeom_delaunay_triangulation()

LWGEOM * lwgeom_delaunay_triangulation ( const LWGEOM geom,
double  tolerance,
int32_t  edgeOnly 
)

Take vertices of a geometry and build a delaunay triangulation on them.

Parameters
geomthe input geometry
tolerancean optional snapping tolerance for improved robustness
edgeOnlyif non-zero the result will be a MULTILINESTRING, otherwise it'll be a COLLECTION of polygons.

Definition at line 1750 of file liblwgeom/lwgeom_geos.c.

1751{
1752 LWGEOM* result;
1753 int32_t srid = RESULT_SRID(geom);
1754 uint8_t is3d = FLAGS_GET_Z(geom->flags);
1755 GEOSGeometry *g1, *g3;
1756
1757 if (output < 0 || output > 2)
1758 {
1759 lwerror("%s: invalid output type specified %d", __func__, output);
1760 return NULL;
1761 }
1762
1763 if (srid == SRID_INVALID) return NULL;
1764
1765 initGEOS(lwnotice, lwgeom_geos_error);
1766
1767 if (!(g1 = LWGEOM2GEOS(geom, AUTOFIX))) GEOS_FAIL();
1768
1769 /* if output != 1 we want polys */
1770 g3 = GEOSDelaunayTriangulation(g1, tolerance, output == 1);
1771
1772 if (!g3) GEOS_FREE_AND_FAIL(g1);
1773 GEOSSetSRID(g3, srid);
1774
1775 if (output == 2)
1776 {
1777 result = (LWGEOM*)lwtin_from_geos(g3, is3d);
1778 if (!result)
1779 {
1780 GEOS_FREE(g1, g3);
1781 lwerror("%s: cannot convert output geometry", __func__);
1782 return NULL;
1783 }
1784 lwgeom_set_srid(result, srid);
1785 }
1786 else if (!(result = GEOS2LWGEOM(g3, is3d)))
1787 GEOS_FREE_AND_FAIL(g1, g3);
1788
1789 GEOS_FREE(g1, g3);
1790 return result;
1791}
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition cu_print.c:267
#define GEOS_FREE(...)
#define AUTOFIX
#define RESULT_SRID(...)
#define GEOS_FAIL()
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
#define GEOS_FREE_AND_FAIL(...)
void lwgeom_geos_error(const char *fmt,...)
LWTIN * lwtin_from_geos(const GEOSGeometry *geom, uint8_t want3d)
void(*) LWGEOM GEOS2LWGEOM)(const GEOSGeometry *geom, uint8_t want3d)
#define SRID_INVALID
Definition liblwgeom.h:219
void lwgeom_set_srid(LWGEOM *geom, int32_t srid)
Set the SRID on an LWGEOM For collections, only the parent gets an SRID, all the children get SRID_UN...
Definition lwgeom.c:1638
#define FLAGS_GET_Z(flags)
Definition liblwgeom.h:165
void lwnotice(const char *fmt,...) __attribute__((format(printf
Write a notice out to the notice handler.
void void lwerror(const char *fmt,...) __attribute__((format(printf
Write a notice out to the error handler.
lwflags_t flags
Definition liblwgeom.h:461

References AUTOFIX, LWGEOM::flags, FLAGS_GET_Z, GEOS_FAIL, GEOS_FREE, GEOS_FREE_AND_FAIL, lwerror(), LWGEOM2GEOS(), lwgeom_geos_error(), lwgeom_set_srid(), lwnotice(), lwtin_from_geos(), result, RESULT_SRID, and SRID_INVALID.

Referenced by ST_DelaunayTriangles(), and test_lwgeom_delaunay_triangulation().

Here is the call graph for this function:
Here is the caller graph for this function: