PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ lwgeom_unaryunion_prec()

LWGEOM* lwgeom_unaryunion_prec ( const LWGEOM geom,
double  prec 
)

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

793 {
794  LWGEOM* result;
795  int32_t srid = RESULT_SRID(geom);
796  uint8_t is3d = FLAGS_GET_Z(geom->flags);
797  GEOSGeometry* g1;
798  GEOSGeometry* g3;
799 
800  if (srid == SRID_INVALID) return NULL;
801 
802  /* Empty.UnaryUnion() == Empty */
803  if (lwgeom_is_empty(geom)) return lwgeom_clone_deep(geom);
804 
805  initGEOS(lwnotice, lwgeom_geos_error);
806 
807  if (!(g1 = LWGEOM2GEOS(geom, AUTOFIX))) GEOS_FAIL();
808 
809  if ( prec >= 0) {
810 #if POSTGIS_GEOS_VERSION < 30900
811  lwgeom_geos_error_minversion("Fixed-precision unary union", "3.9");
812  GEOS_FREE_AND_FAIL(g1);
813  return NULL;
814 #else
815  g3 = GEOSUnaryUnionPrec(g1, prec);
816 #endif
817  }
818  else
819  {
820  g3 = GEOSUnaryUnion(g1);
821  }
822 
823  if (!g3) GEOS_FREE_AND_FAIL(g1);
824  GEOSSetSRID(g3, srid);
825 
826  if (!(result = GEOS2LWGEOM(g3, is3d)))
827  GEOS_FREE_AND_FAIL(g1, g3);
828 
829  GEOS_FREE(g1, g3);
830 
831  return result;
832 }
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition: cu_print.c:267
#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,...) __attribute__((format(printf
Write a notice out to the notice handler.
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:199
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 gserialized_list_union(), lwgeom_unaryunion(), and ST_UnaryUnion().

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