PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwgeom_union()

LWGEOM* lwgeom_union ( const LWGEOM geom1,
const LWGEOM geom2 
)

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

References error_if_srid_mismatch(), LWGEOM::flags, FLAGS_GET_Z, GEOS2LWGEOM(), LWDEBUG, LWDEBUGF, lwerror(), LWGEOM2GEOS(), lwgeom_clone_deep(), lwgeom_geos_errmsg, lwgeom_geos_error(), lwgeom_is_empty(), lwnotice(), and LWGEOM::srid.

Referenced by geos_geomunion(), and lwt_AddLine().

998 {
999  int is3d;
1000  int srid;
1001  GEOSGeometry *g1, *g2, *g3;
1002  LWGEOM *result;
1003 
1004  LWDEBUG(2, "in geomunion");
1005 
1006  /* A.Union(empty) == A */
1007  if ( lwgeom_is_empty(geom1) )
1008  return lwgeom_clone_deep(geom2);
1009 
1010  /* B.Union(empty) == B */
1011  if ( lwgeom_is_empty(geom2) )
1012  return lwgeom_clone_deep(geom1);
1013 
1014 
1015  /* ensure srids are identical */
1016  srid = (int)(geom1->srid);
1017  error_if_srid_mismatch(srid, (int)(geom2->srid));
1018 
1019  is3d = (FLAGS_GET_Z(geom1->flags) || FLAGS_GET_Z(geom2->flags)) ;
1020 
1021  initGEOS(lwnotice, lwgeom_geos_error);
1022 
1023  g1 = LWGEOM2GEOS(geom1, 0);
1024 
1025  if ( 0 == g1 ) /* exception thrown at construction */
1026  {
1027  lwerror("First argument geometry could not be converted to GEOS: %s", lwgeom_geos_errmsg);
1028  return NULL;
1029  }
1030 
1031  g2 = LWGEOM2GEOS(geom2, 0);
1032 
1033  if ( 0 == g2 ) /* exception thrown at construction */
1034  {
1035  GEOSGeom_destroy(g1);
1036  lwerror("Second argument geometry could not be converted to GEOS: %s", lwgeom_geos_errmsg);
1037  return NULL;
1038  }
1039 
1040  LWDEBUGF(3, "g1=%s", GEOSGeomToWKT(g1));
1041  LWDEBUGF(3, "g2=%s", GEOSGeomToWKT(g2));
1042 
1043  g3 = GEOSUnion(g1,g2);
1044 
1045  LWDEBUGF(3, "g3=%s", GEOSGeomToWKT(g3));
1046 
1047  GEOSGeom_destroy(g1);
1048  GEOSGeom_destroy(g2);
1049 
1050  if (g3 == NULL)
1051  {
1052  lwerror("GEOSUnion: %s", lwgeom_geos_errmsg);
1053  return NULL; /* never get here */
1054  }
1055 
1056 
1057  GEOSSetSRID(g3, srid);
1058 
1059  result = GEOS2LWGEOM(g3, is3d);
1060 
1061  GEOSGeom_destroy(g3);
1062 
1063  if (result == NULL)
1064  {
1065  lwerror("Error performing union: GEOS2LWGEOM: %s",
1067  return NULL; /*never get here */
1068  }
1069 
1070  return result;
1071 }
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
uint8_t flags
Definition: liblwgeom.h:397
char lwgeom_geos_errmsg[LWGEOM_GEOS_ERRMSG_MAXSIZE]
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
LWGEOM * lwgeom_clone_deep(const LWGEOM *lwgeom)
Deep clone an LWGEOM, everything is copied.
Definition: lwgeom.c:482
void error_if_srid_mismatch(int srid1, int srid2)
Definition: lwutil.c:371
int32_t srid
Definition: liblwgeom.h:399
void lwgeom_geos_error(const char *fmt,...)
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, int autofix)
LWGEOM * GEOS2LWGEOM(const GEOSGeometry *geom, char want3d)
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:1346
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
Here is the call graph for this function:
Here is the caller graph for this function: