PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ lwgeom_unaryunion()

LWGEOM* lwgeom_unaryunion ( const LWGEOM geom1)

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

742 {
743  LWGEOM* result;
744  int32_t srid = RESULT_SRID(geom);
745  uint8_t is3d = FLAGS_GET_Z(geom->flags);
746  GEOSGeometry* g1;
747  GEOSGeometry* g3;
748 
749  if (srid == SRID_INVALID) return NULL;
750 
751  /* Empty.UnaryUnion() == Empty */
752  if (lwgeom_is_empty(geom)) return lwgeom_clone_deep(geom);
753 
754  initGEOS(lwnotice, lwgeom_geos_error);
755 
756  if (!(g1 = LWGEOM2GEOS(geom, AUTOFIX))) GEOS_FAIL();
757 
758  g3 = GEOSUnaryUnion(g1);
759 
760  if (!g3) GEOS_FREE_AND_FAIL(g1);
761  GEOSSetSRID(g3, srid);
762 
763  if (!(result = GEOS2LWGEOM(g3, is3d)))
764  GEOS_FREE_AND_FAIL(g1, g3);
765 
766  GEOS_FREE(g1, g3);
767 
768  return result;
769 }
#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,...)
#define SRID_INVALID
Definition: liblwgeom.h:233
LWGEOM * lwgeom_clone_deep(const LWGEOM *lwgeom)
Deep clone an LWGEOM, everything is copied.
Definition: lwgeom.c:511
#define FLAGS_GET_Z(flags)
Definition: liblwgeom.h:179
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
static int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members)
Definition: lwinline.h:193

References AUTOFIX, LWGEOM::flags, FLAGS_GET_Z, GEOS2LWGEOM(), GEOS_FAIL, GEOS_FREE, GEOS_FREE_AND_FAIL, LWGEOM2GEOS(), lwgeom_clone_deep(), lwgeom_geos_error(), lwgeom_is_empty(), lwnotice(), RESULT_SRID, and SRID_INVALID.

Referenced by _lwt_AddLine(), lwgeom_split_wrapx(), and ST_UnaryUnion().

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