PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ 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 1788 of file liblwgeom/lwgeom_geos.c.

1789 {
1790  LWGEOM* result;
1791  int32_t srid = RESULT_SRID(geom);
1792  uint8_t is3d = FLAGS_GET_Z(geom->flags);
1793  GEOSGeometry *g1, *g3;
1794 
1795  if (output < 0 || output > 2)
1796  {
1797  lwerror("%s: invalid output type specified %d", __func__, output);
1798  return NULL;
1799  }
1800 
1801  if (srid == SRID_INVALID) return NULL;
1802 
1803  initGEOS(lwnotice, lwgeom_geos_error);
1804 
1805  if (!(g1 = LWGEOM2GEOS(geom, AUTOFIX))) GEOS_FAIL();
1806 
1807  /* if output != 1 we want polys */
1808  g3 = GEOSDelaunayTriangulation(g1, tolerance, output == 1);
1809 
1810  if (!g3) GEOS_FREE_AND_FAIL(g1);
1811  GEOSSetSRID(g3, srid);
1812 
1813  if (output == 2)
1814  {
1815  result = (LWGEOM*)lwtin_from_geos(g3, is3d);
1816  if (!result)
1817  {
1818  GEOS_FREE(g1, g3);
1819  lwerror("%s: cannot convert output geometry", __func__);
1820  return NULL;
1821  }
1822  lwgeom_set_srid(result, srid);
1823  }
1824  else if (!(result = GEOS2LWGEOM(g3, is3d)))
1825  GEOS_FREE_AND_FAIL(g1, g3);
1826 
1827  GEOS_FREE(g1, g3);
1828  return result;
1829 }
#define GEOS_FREE(...)
#define AUTOFIX
#define RESULT_SRID(...)
#define GEOS_FAIL()
#define GEOS_FREE_AND_FAIL(...)
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
LWGEOM * GEOS2LWGEOM(const GEOSGeometry *geom, uint8_t want3d)
void lwgeom_geos_error(const char *fmt,...)
LWTIN * lwtin_from_geos(const GEOSGeometry *geom, uint8_t want3d)
#define SRID_INVALID
Definition: liblwgeom.h:192
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
void lwgeom_set_srid(LWGEOM *geom, int srid)
Set the SRID on an LWGEOM For collections, only the parent gets an SRID, all the children get SRID_UN...
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
uint8_t flags
Definition: liblwgeom.h:400
unsigned char uint8_t
Definition: uthash.h:79

References AUTOFIX, LWGEOM::flags, FLAGS_GET_Z, GEOS2LWGEOM(), GEOS_FAIL, GEOS_FREE, GEOS_FREE_AND_FAIL, lwerror(), LWGEOM2GEOS(), lwgeom_geos_error(), lwgeom_set_srid(), lwnotice(), lwtin_from_geos(), 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: