PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ LWGEOM_isclosed()

Datum LWGEOM_isclosed ( PG_FUNCTION_ARGS  )

Definition at line 946 of file lwgeom_ogc.c.

947 {
948  GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
949  LWGEOM *lwgeom = lwgeom_from_gserialized(geom);
950  int closed = lwgeom_is_closed(lwgeom);
951 
952  lwgeom_free(lwgeom);
953  PG_FREE_IF_COPY(geom, 0);
954  PG_RETURN_BOOL(closed);
955 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
int lwgeom_is_closed(const LWGEOM *geom)
Return true or false depending on whether a geometry is a linear feature that closes on itself.
Definition: lwgeom.c:1041
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144

References lwgeom_free(), lwgeom_from_gserialized(), and lwgeom_is_closed().

Here is the call graph for this function: