PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ ST_IsPolygonCCW()

Datum ST_IsPolygonCCW ( PG_FUNCTION_ARGS  )

Definition at line 1303 of file lwgeom_functions_analytic.c.

1304 {
1305  GSERIALIZED* geom;
1306  LWGEOM* input;
1307  bool is_ccw;
1308 
1309  if (PG_ARGISNULL(0))
1310  PG_RETURN_NULL();
1311 
1312  geom = PG_GETARG_GSERIALIZED_P_COPY(0);
1313  input = lwgeom_from_gserialized(geom);
1314  lwgeom_reverse_in_place(input);
1315  is_ccw = lwgeom_is_clockwise(input);
1316  lwgeom_free(input);
1317  PG_FREE_IF_COPY(geom, 0);
1318 
1319  PG_RETURN_BOOL(is_ccw);
1320 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144
int lwgeom_is_clockwise(LWGEOM *lwgeom)
Ensure the outer ring is clockwise oriented and all inner rings are counter-clockwise.
Definition: lwgeom.c:65
void lwgeom_reverse_in_place(LWGEOM *lwgeom)
Reverse vertex order of LWGEOM.
Definition: lwgeom.c:102

References lwgeom_free(), lwgeom_from_gserialized(), lwgeom_is_clockwise(), and lwgeom_reverse_in_place().

Here is the call graph for this function: