PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ 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 1312 of file liblwgeom/lwgeom_geos.c.

1313 {
1314  LWGEOM* result;
1315  int32_t srid = RESULT_SRID(geom1, geom2);
1316  uint8_t is3d = (FLAGS_GET_Z(geom1->flags) || FLAGS_GET_Z(geom2->flags));
1317  GEOSGeometry *g1, *g2, *g3;
1318 
1319  if (srid == SRID_INVALID) return NULL;
1320 
1321  initGEOS(lwnotice, lwgeom_geos_error);
1322 
1323  if (!(g1 = LWGEOM2GEOS(geom1, AUTOFIX))) GEOS_FAIL();
1324  if (!(g2 = LWGEOM2GEOS(geom2, AUTOFIX))) GEOS_FREE_AND_FAIL(g1);
1325 
1326  g3 = GEOSSnap(g1, g2, tolerance);
1327 
1328  if (!g3) GEOS_FREE_AND_FAIL(g1, g2);
1329  GEOSSetSRID(g3, srid);
1330 
1331  if (!(result = GEOS2LWGEOM(g3, is3d)))
1332  GEOS_FREE_AND_FAIL(g1, g2, g3);
1333 
1334  GEOS_FREE(g1, g2, g3);
1335  return result;
1336 }
#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
#define FLAGS_GET_Z(flags)
Definition: liblwgeom.h:179
void lwnotice(const char *fmt,...)
Write a notice out to the notice handler.
Definition: lwutil.c:177
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_geos_error(), lwnotice(), RESULT_SRID, and SRID_INVALID.

Referenced by _lwt_toposnap(), and ST_Snap().

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