PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ LWGEOM_isclosed()

Datum LWGEOM_isclosed ( PG_FUNCTION_ARGS  )

Definition at line 942 of file lwgeom_ogc.c.

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

Referenced by LWGEOM_asBinary().

943 {
944  GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
945  LWGEOM *lwgeom = lwgeom_from_gserialized(geom);
946  int closed = lwgeom_is_closed(lwgeom);
947 
948  lwgeom_free(lwgeom);
949  PG_FREE_IF_COPY(geom, 0);
950  PG_RETURN_BOOL(closed);
951 }
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:996
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
Here is the call graph for this function:
Here is the caller graph for this function: