PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ST_Snap()

Datum ST_Snap ( PG_FUNCTION_ARGS  )

Definition at line 3428 of file postgis/lwgeom_geos.c.

References geometry_serialize(), lwgeom_free(), lwgeom_from_gserialized(), lwgeom_snap(), PG_FUNCTION_INFO_V1(), and ST_Split().

Referenced by ST_DelaunayTriangles().

3429 {
3430  GSERIALIZED *geom1, *geom2, *result;
3431  LWGEOM *lwgeom1, *lwgeom2, *lwresult;
3432  double tolerance;
3433 
3434  geom1 = PG_GETARG_GSERIALIZED_P(0);
3435  geom2 = PG_GETARG_GSERIALIZED_P(1);
3436  tolerance = PG_GETARG_FLOAT8(2);
3437 
3438  lwgeom1 = lwgeom_from_gserialized(geom1);
3439  lwgeom2 = lwgeom_from_gserialized(geom2);
3440 
3441  lwresult = lwgeom_snap(lwgeom1, lwgeom2, tolerance);
3442  lwgeom_free(lwgeom1);
3443  lwgeom_free(lwgeom2);
3444  PG_FREE_IF_COPY(geom1, 0);
3445  PG_FREE_IF_COPY(geom2, 1);
3446 
3447  result = geometry_serialize(lwresult);
3448  lwgeom_free(lwresult);
3449 
3450  PG_RETURN_POINTER(result);
3451 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
LWGEOM * lwgeom_snap(const LWGEOM *geom1, const LWGEOM *geom2, double tolerance)
Snap vertices and segments of a geometry to another using a given tolerance.
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)
Here is the call graph for this function:
Here is the caller graph for this function: