PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ST_SharedPaths()

Datum ST_SharedPaths ( PG_FUNCTION_ARGS  )

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

References geometry_serialize(), lwgeom_free(), lwgeom_from_gserialized(), lwgeom_sharedpaths(), PG_FUNCTION_INFO_V1(), and ST_Node().

Referenced by ST_Split().

3529 {
3530  GSERIALIZED *geom1, *geom2, *out;
3531  LWGEOM *g1, *g2, *lwgeom_out;
3532 
3533  geom1 = PG_GETARG_GSERIALIZED_P(0);
3534  geom2 = PG_GETARG_GSERIALIZED_P(1);
3535 
3536  g1 = lwgeom_from_gserialized(geom1);
3537  g2 = lwgeom_from_gserialized(geom2);
3538 
3539  lwgeom_out = lwgeom_sharedpaths(g1, g2);
3540  lwgeom_free(g1);
3541  lwgeom_free(g2);
3542 
3543  if ( ! lwgeom_out )
3544  {
3545  PG_FREE_IF_COPY(geom1, 0);
3546  PG_FREE_IF_COPY(geom2, 1);
3547  PG_RETURN_NULL();
3548  }
3549 
3550  out = geometry_serialize(lwgeom_out);
3551  lwgeom_free(lwgeom_out);
3552 
3553  PG_FREE_IF_COPY(geom1, 0);
3554  PG_FREE_IF_COPY(geom2, 1);
3555  PG_RETURN_POINTER(out);
3556 }
LWGEOM * lwgeom_sharedpaths(const LWGEOM *geom1, const LWGEOM *geom2)
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)
Here is the call graph for this function:
Here is the caller graph for this function: