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

◆ lwgeom_snap()

LWGEOM * lwgeom_snap ( const LWGEOM geom1,
const LWGEOM geom2,
double  tolerance 
)

Snap vertices and segments of a geometry to another using a given tolerance.

Parameters
geom1the geometry to snap
geom2the geometry to snap to
tolerancethe distance under which vertices and segments are snapped

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

1214{
1215 LWGEOM* result;
1216 int32_t srid = RESULT_SRID(geom1, geom2);
1217 uint8_t is3d = (FLAGS_GET_Z(geom1->flags) || FLAGS_GET_Z(geom2->flags));
1218 GEOSGeometry *g1, *g2, *g3;
1219
1220 if (srid == SRID_INVALID) return NULL;
1221
1222 initGEOS(lwnotice, lwgeom_geos_error);
1223
1224 if (!(g1 = LWGEOM2GEOS(geom1, AUTOFIX))) GEOS_FAIL();
1225 if (!(g2 = LWGEOM2GEOS(geom2, AUTOFIX))) GEOS_FREE_AND_FAIL(g1);
1226
1227 g3 = GEOSSnap(g1, g2, tolerance);
1228
1229 if (!g3) GEOS_FREE_AND_FAIL(g1, g2);
1230 GEOSSetSRID(g3, srid);
1231
1232 if (!(result = GEOS2LWGEOM(g3, is3d)))
1233 GEOS_FREE_AND_FAIL(g1, g2, g3);
1234
1235 GEOS_FREE(g1, g2, g3);
1236 return result;
1237}
char result[OUT_DOUBLE_BUFFER_SIZE]
Definition cu_print.c:267
#define GEOS_FREE(...)
#define AUTOFIX
#define RESULT_SRID(...)
#define GEOS_FAIL()
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
#define GEOS_FREE_AND_FAIL(...)
void lwgeom_geos_error(const char *fmt,...)
void(*) LWGEOM GEOS2LWGEOM)(const GEOSGeometry *geom, uint8_t want3d)
#define SRID_INVALID
Definition liblwgeom.h:219
#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.
lwflags_t flags
Definition liblwgeom.h:461

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

Referenced by _lwt_SnapEdgeToExistingNode(), _lwt_toposnap(), and ST_Snap().

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