PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ lwgeom_union_prec()

LWGEOM* lwgeom_union_prec ( const LWGEOM geom1,
const LWGEOM geom2,
double  gridSize 
)

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

1095 {
1096  LWGEOM* result;
1097  int32_t srid = RESULT_SRID(geom1, geom2);
1098  uint8_t is3d = (FLAGS_GET_Z(geom1->flags) || FLAGS_GET_Z(geom2->flags));
1099  GEOSGeometry *g1, *g2, *g3;
1100 
1101  if (srid == SRID_INVALID) return NULL;
1102 
1103  /* A.Union(empty) == A */
1104  if (lwgeom_is_empty(geom1)) return lwgeom_clone_deep(geom2);
1105 
1106  /* B.Union(empty) == B */
1107  if (lwgeom_is_empty(geom2)) return lwgeom_clone_deep(geom1);
1108 
1109  initGEOS(lwnotice, lwgeom_geos_error);
1110 
1111  if (!(g1 = LWGEOM2GEOS(geom1, AUTOFIX))) GEOS_FAIL();
1112  if (!(g2 = LWGEOM2GEOS(geom2, AUTOFIX))) GEOS_FREE_AND_FAIL(g1);
1113 
1114  if ( gridSize >= 0) {
1115 #if POSTGIS_GEOS_VERSION < 30900
1116  lwgeom_geos_error_minversion("Fixed-precision union", "3.9");
1117  GEOS_FREE_AND_FAIL(g1, g2);
1118  return NULL;
1119 #else
1120  g3 = GEOSUnionPrec(g1, g2, gridSize);
1121 #endif
1122  }
1123  else
1124  {
1125  g3 = GEOSUnion(g1, g2);
1126  }
1127 
1128  if (!g3) GEOS_FREE_AND_FAIL(g1, g2);
1129  GEOSSetSRID(g3, srid);
1130 
1131  if (!(result = GEOS2LWGEOM(g3, is3d)))
1132  GEOS_FREE_AND_FAIL(g1, g2, g3);
1133 
1134  GEOS_FREE(g1, g2, g3);
1135  return result;
1136 }
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition: cu_print.c:262
#define GEOS_FREE(...)
void lwgeom_geos_error_minversion(const char *functionality, const char *minver)
#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:219
LWGEOM * lwgeom_clone_deep(const LWGEOM *lwgeom)
Deep clone an LWGEOM, everything is copied.
Definition: lwgeom.c:529
#define FLAGS_GET_Z(flags)
Definition: liblwgeom.h:165
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:203
lwflags_t flags
Definition: liblwgeom.h:461

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

Referenced by lwgeom_union(), and ST_Union().

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