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

◆ ST_FlipCoordinates()

Datum ST_FlipCoordinates ( PG_FUNCTION_ARGS  )

Definition at line 3019 of file lwgeom_functions_basic.c.

3020{
3021 GSERIALIZED *in = PG_GETARG_GSERIALIZED_P_COPY(0);
3022 GSERIALIZED *out;
3023 LWGEOM *lwgeom = lwgeom_from_gserialized(in);
3024
3026 out = geometry_serialize(lwgeom);
3027
3028 lwgeom_free(lwgeom);
3029 PG_FREE_IF_COPY(in, 0);
3030
3031 PG_RETURN_POINTER(out);
3032}
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
@ LWORD_Y
Definition liblwgeom.h:132
@ LWORD_X
Definition liblwgeom.h:131
void lwgeom_free(LWGEOM *geom)
Definition lwgeom.c:1218
void lwgeom_swap_ordinates(LWGEOM *in, LWORD o1, LWORD o2)
Swap ordinate values in every vertex of the geometry.
Definition lwgeom.c:1541

References lwgeom_free(), lwgeom_from_gserialized(), lwgeom_swap_ordinates(), LWORD_X, and LWORD_Y.

Here is the call graph for this function: