PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ lwgeom_intersection_prec()

LWGEOM* lwgeom_intersection_prec ( const LWGEOM geom1,
const LWGEOM geom2,
double  prec 
)

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

683 {
684  LWGEOM* result;
685  int32_t srid = RESULT_SRID(geom1, geom2);
686  uint8_t is3d = (FLAGS_GET_Z(geom1->flags) || FLAGS_GET_Z(geom2->flags));
687  GEOSGeometry* g1;
688  GEOSGeometry* g2;
689  GEOSGeometry* g3;
690 
691  if (srid == SRID_INVALID) return NULL;
692 
693  /* A.Intersection(Empty) == Empty */
694  if (lwgeom_is_empty(geom2)) return lwgeom_clone_deep(geom2); /* match empty type? */
695 
696  /* Empty.Intersection(A) == Empty */
697  if (lwgeom_is_empty(geom1)) return lwgeom_clone_deep(geom1); /* match empty type? */
698 
699  initGEOS(lwnotice, lwgeom_geos_error);
700 
701  if (!(g1 = LWGEOM2GEOS(geom1, AUTOFIX))) GEOS_FAIL();
702  if (!(g2 = LWGEOM2GEOS(geom2, AUTOFIX))) GEOS_FREE_AND_FAIL(g1);
703 
704  if ( prec >= 0) {
705 #if POSTGIS_GEOS_VERSION < 39
706  lwerror("Fixed-precision intersection requires GEOS-3.9 or higher");
707  GEOS_FREE_AND_FAIL(g1, g2);
708  return NULL;
709 #else
710  g3 = GEOSIntersectionPrec(g1, g2, prec);
711 #endif
712  }
713  else
714  {
715  g3 = GEOSIntersection(g1, g2);
716  }
717 
718  if (!g3) GEOS_FREE_AND_FAIL(g1);
719  GEOSSetSRID(g3, srid);
720 
721  if (!(result = GEOS2LWGEOM(g3, is3d))) GEOS_FREE_AND_FAIL(g1, g2, g3);
722 
723  GEOS_FREE(g1, g2, g3);
724  return result;
725 }
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition: cu_print.c:267
#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:512
#define FLAGS_GET_Z(flags)
Definition: liblwgeom.h:179
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
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:475

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

Referenced by lwgeom_intersection(), lwgeom_subdivide_recursive(), and ST_Intersection().

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