PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ LWGEOM_x_point()

Datum LWGEOM_x_point ( PG_FUNCTION_ARGS  )

Definition at line 592 of file lwgeom_ogc.c.

References getPoint2d_p(), gserialized_get_type(), lwgeom_as_lwpoint(), lwgeom_from_gserialized(), lwgeom_is_empty(), LWGEOM_y_point(), PG_FUNCTION_INFO_V1(), LWPOINT::point, POINTTYPE, and POINT2D::x.

Referenced by LWGEOM_pointn_linestring().

593 {
594  GSERIALIZED *geom;
595  LWGEOM *lwgeom;
596  LWPOINT *point = NULL;
597  POINT2D p;
598 
599  geom = PG_GETARG_GSERIALIZED_P(0);
600 
601  if ( gserialized_get_type(geom) != POINTTYPE )
602  lwpgerror("Argument to ST_X() must be a point");
603 
604  lwgeom = lwgeom_from_gserialized(geom);
605  point = lwgeom_as_lwpoint(lwgeom);
606 
607  if ( lwgeom_is_empty(lwgeom) )
608  PG_RETURN_NULL();
609 
610  getPoint2d_p(point->point, 0, &p);
611 
612  PG_FREE_IF_COPY(geom, 0);
613  PG_RETURN_FLOAT8(p.x);
614 }
uint32_t gserialized_get_type(const GSERIALIZED *s)
Extract the geometry type from the serialized form (it hides in the anonymous data area...
Definition: g_serialized.c:86
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
LWPOINT * lwgeom_as_lwpoint(const LWGEOM *lwgeom)
Definition: lwgeom.c:129
POINTARRAY * point
Definition: liblwgeom.h:411
double x
Definition: liblwgeom.h:328
int getPoint2d_p(const POINTARRAY *pa, int n, POINT2D *point)
Definition: lwgeom_api.c:347
#define POINTTYPE
LWTYPE numbers, used internally by PostGIS.
Definition: liblwgeom.h:85
int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members) ...
Definition: lwgeom.c:1346
Here is the call graph for this function:
Here is the caller graph for this function: