PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwgeom_buildarea()

LWGEOM* lwgeom_buildarea ( const LWGEOM geom)

Take a geometry and return an areal geometry (Polygon or MultiPolygon).

Actually a wrapper around GEOSpolygonize, transforming the resulting collection into a valid polygon Geometry.

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

1204 {
1205  LWGEOM* result;
1206  int32_t srid = RESULT_SRID(geom);
1207  uint8_t is3d = FLAGS_GET_Z(geom->flags);
1208  GEOSGeometry *g1, *g3;
1209 
1210  if (srid == SRID_INVALID) return NULL;
1211 
1212  /* Can't build an area from an empty! */
1213  if (lwgeom_is_empty(geom)) return (LWGEOM*)lwpoly_construct_empty(srid, is3d, 0);
1214 
1215  initGEOS(lwnotice, lwgeom_geos_error);
1216 
1217  if (!(g1 = LWGEOM2GEOS(geom, AUTOFIX))) GEOS_FAIL();
1218 
1219 #if POSTGIS_GEOS_VERSION < 38
1220  g3 = LWGEOM_GEOS_buildArea(g1);
1221 #else
1222  g3 = GEOSBuildArea(g1);
1223 #endif
1224 
1225  if (!g3) GEOS_FREE_AND_FAIL(g1);
1226  GEOSSetSRID(g3, srid);
1227 
1228  /* If no geometries are in result collection, return NULL */
1229  if (GEOSGetNumGeometries(g3) == 0)
1230  {
1231  GEOS_FREE(g1);
1232  return NULL;
1233  }
1234 
1235  if (!(result = GEOS2LWGEOM(g3, is3d)))
1236  GEOS_FREE_AND_FAIL(g1, g3);
1237 
1238  GEOS_FREE(g1, g3);
1239 
1240  return result;
1241 }
#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,...)
GEOSGeometry * LWGEOM_GEOS_buildArea(const GEOSGeometry *geom_in)
#define SRID_INVALID
Definition: liblwgeom.h:192
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members)
Definition: lwgeom.c:1393
LWPOLY * lwpoly_construct_empty(int srid, char hasz, char hasm)
Definition: lwpoly.c:161
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, LWGEOM2GEOS(), LWGEOM_GEOS_buildArea(), lwgeom_geos_error(), lwgeom_is_empty(), lwnotice(), lwpoly_construct_empty(), RESULT_SRID, and SRID_INVALID.

Referenced by _lwt_FaceByEdges(), buildarea1(), buildarea2(), buildarea3(), buildarea4(), buildarea4b(), buildarea5(), buildarea6(), buildarea7(), and ST_BuildArea().

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