PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ST_Split()

Datum ST_Split ( PG_FUNCTION_ARGS  )

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

References error_if_srid_mismatch(), geometry_serialize(), lwgeom_free(), lwgeom_from_gserialized(), lwgeom_split(), PG_FUNCTION_INFO_V1(), LWGEOM::srid, and ST_SharedPaths().

Referenced by ST_Snap().

3480 {
3481  GSERIALIZED *in, *blade_in, *out;
3482  LWGEOM *lwgeom_in, *lwblade_in, *lwgeom_out;
3483 
3484  in = PG_GETARG_GSERIALIZED_P(0);
3485  lwgeom_in = lwgeom_from_gserialized(in);
3486 
3487  blade_in = PG_GETARG_GSERIALIZED_P(1);
3488  lwblade_in = lwgeom_from_gserialized(blade_in);
3489 
3490  error_if_srid_mismatch(lwgeom_in->srid, lwblade_in->srid);
3491 
3492  lwgeom_out = lwgeom_split(lwgeom_in, lwblade_in);
3493  lwgeom_free(lwgeom_in);
3494  lwgeom_free(lwblade_in);
3495 
3496  if ( ! lwgeom_out )
3497  {
3498  PG_FREE_IF_COPY(in, 0); /* possibly referenced by lwgeom_out */
3499  PG_FREE_IF_COPY(blade_in, 1);
3500  PG_RETURN_NULL();
3501  }
3502 
3503  out = geometry_serialize(lwgeom_out);
3504  lwgeom_free(lwgeom_out);
3505  PG_FREE_IF_COPY(in, 0); /* possibly referenced by lwgeom_out */
3506  PG_FREE_IF_COPY(blade_in, 1);
3507 
3508  PG_RETURN_POINTER(out);
3509 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
void error_if_srid_mismatch(int srid1, int srid2)
Definition: lwutil.c:371
int32_t srid
Definition: liblwgeom.h:399
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)
LWGEOM * lwgeom_split(const LWGEOM *lwgeom_in, const LWGEOM *blade_in)
Here is the call graph for this function:
Here is the caller graph for this function: