PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ lwgeom_difference()

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

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

773{
774 LWGEOM* result;
775 int32_t srid = RESULT_SRID(geom1, geom2);
776 uint8_t is3d = (FLAGS_GET_Z(geom1->flags) || FLAGS_GET_Z(geom2->flags));
777 GEOSGeometry *g1, *g2, *g3;
778
779 if (srid == SRID_INVALID) return NULL;
780
781 /* A.Intersection(Empty) == Empty */
782 if (lwgeom_is_empty(geom2)) return lwgeom_clone_deep(geom1); /* match empty type? */
783
784 /* Empty.Intersection(A) == Empty */
785 if (lwgeom_is_empty(geom1)) return lwgeom_clone_deep(geom1); /* match empty type? */
786
787 initGEOS(lwnotice, lwgeom_geos_error);
788
789 if (!(g1 = LWGEOM2GEOS(geom1, AUTOFIX))) GEOS_FAIL();
790 if (!(g2 = LWGEOM2GEOS(geom2, AUTOFIX))) GEOS_FREE_AND_FAIL(g1);
791
792 g3 = GEOSDifference(g1, g2);
793
794 if (!g3) GEOS_FREE_AND_FAIL(g1, g2);
795 GEOSSetSRID(g3, srid);
796
797 if (!(result = GEOS2LWGEOM(g3, is3d)))
798 GEOS_FREE_AND_FAIL(g1, g2, g3);
799
800 GEOS_FREE(g1, g2, g3);
801 return result;
802}
#define GEOS_FREE(...)
#define AUTOFIX
#define RESULT_SRID(...)
#define GEOS_FAIL()
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
#define GEOS_FREE_AND_FAIL(...)
LWGEOM * GEOS2LWGEOM(const GEOSGeometry *geom, uint8_t want3d)
void lwgeom_geos_error(const char *fmt,...)
#define SRID_INVALID
Definition liblwgeom.h:233
#define FLAGS_GET_Z(flags)
Definition liblwgeom.h:179
LWGEOM * lwgeom_clone_deep(const LWGEOM *lwgeom)
Deep clone an LWGEOM, everything is copied.
Definition lwgeom.c:511
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:193
lwflags_t flags
Definition liblwgeom.h:447

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(), and ST_Difference().

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