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

◆ ST_FlipCoordinates()

Datum ST_FlipCoordinates ( PG_FUNCTION_ARGS  )

Definition at line 2818 of file lwgeom_functions_basic.c.

2819{
2820 GSERIALIZED *in = PG_GETARG_GSERIALIZED_P_COPY(0);
2821 GSERIALIZED *out;
2822 LWGEOM *lwgeom = lwgeom_from_gserialized(in);
2823
2825 out = geometry_serialize(lwgeom);
2826
2827 lwgeom_free(lwgeom);
2828 PG_FREE_IF_COPY(in, 0);
2829
2830 PG_RETURN_POINTER(out);
2831}
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
@ LWORD_Y
Definition liblwgeom.h:146
@ LWORD_X
Definition liblwgeom.h:145
void lwgeom_free(LWGEOM *geom)
Definition lwgeom.c:1138
void lwgeom_swap_ordinates(LWGEOM *in, LWORD o1, LWORD o2)
Swap ordinate values in every vertex of the geometry.
Definition lwgeom.c:1461
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)

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

Here is the call graph for this function: