PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ ST_FlipCoordinates()

Datum ST_FlipCoordinates ( PG_FUNCTION_ARGS  )

Definition at line 3054 of file lwgeom_functions_basic.c.

3055 {
3056  GSERIALIZED *in = PG_GETARG_GSERIALIZED_P_COPY(0);
3057  GSERIALIZED *out;
3058  LWGEOM *lwgeom = lwgeom_from_gserialized(in);
3059 
3061  out = geometry_serialize(lwgeom);
3062 
3063  lwgeom_free(lwgeom);
3064  PG_FREE_IF_COPY(in, 0);
3065 
3066  PG_RETURN_POINTER(out);
3067 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
Definition: gserialized.c:239
@ LWORD_Y
Definition: liblwgeom.h:132
@ LWORD_X
Definition: liblwgeom.h:131
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1155
void lwgeom_swap_ordinates(LWGEOM *in, LWORD o1, LWORD o2)
Swap ordinate values in every vertex of the geometry.
Definition: lwgeom.c:1478

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

Here is the call graph for this function: