PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ LWGEOM_isclosed()

Datum LWGEOM_isclosed ( PG_FUNCTION_ARGS  )

Definition at line 911 of file lwgeom_ogc.c.

912{
913 GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
914 LWGEOM *lwgeom = lwgeom_from_gserialized(geom);
915 int closed = lwgeom_is_closed(lwgeom);
916
917 lwgeom_free(lwgeom);
918 PG_FREE_IF_COPY(geom, 0);
919 PG_RETURN_BOOL(closed);
920}
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:1035
void lwgeom_free(LWGEOM *geom)
Definition lwgeom.c:1138

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

Here is the call graph for this function: