PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwgeom_intersection()

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

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

661 {
662  LWGEOM* result;
663  int32_t srid = RESULT_SRID(geom1, geom2);
664  uint8_t is3d = (FLAGS_GET_Z(geom1->flags) || FLAGS_GET_Z(geom2->flags));
665  GEOSGeometry* g1;
666  GEOSGeometry* g2;
667  GEOSGeometry* g3;
668 
669  if (srid == SRID_INVALID) return NULL;
670 
671  /* A.Intersection(Empty) == Empty */
672  if (lwgeom_is_empty(geom2)) return lwgeom_clone_deep(geom2); /* match empty type? */
673 
674  /* Empty.Intersection(A) == Empty */
675  if (lwgeom_is_empty(geom1)) return lwgeom_clone_deep(geom1); /* match empty type? */
676 
677  initGEOS(lwnotice, lwgeom_geos_error);
678 
679  if (!(g1 = LWGEOM2GEOS(geom1, AUTOFIX))) GEOS_FAIL();
680  if (!(g2 = LWGEOM2GEOS(geom2, AUTOFIX))) GEOS_FREE_AND_FAIL(g1);
681 
682  g3 = GEOSIntersection(g1, g2);
683 
684  if (!g3) GEOS_FREE_AND_FAIL(g1);
685  GEOSSetSRID(g3, srid);
686 
687  if (!(result = GEOS2LWGEOM(g3, is3d))) GEOS_FREE_AND_FAIL(g1, g2, g3);
688 
689  GEOS_FREE(g1, g2, g3);
690  return result;
691 }
#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:192
LWGEOM * lwgeom_clone_deep(const LWGEOM *lwgeom)
Deep clone an LWGEOM, everything is copied.
Definition: lwgeom.c:520
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
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:1393
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
uint8_t flags
Definition: liblwgeom.h:400
unsigned char uint8_t
Definition: uthash.h:79

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(), geos_intersection(), lwgeom_subdivide_recursive(), and RASTER_clip().

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