PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwpoint_get_x()

double lwpoint_get_x ( const LWPOINT point)

Definition at line 63 of file lwpoint.c.

References getPoint4d_p(), lwerror(), lwpoint_is_empty(), LWPOINT::point, and POINT4D::x.

Referenced by BOX2D_construct(), geography_centroid(), geography_centroid_from_mpoly(), geometry_to_point(), lwgeom_azumith_spheroid(), lwgeom_project_spheroid(), and lwline_covers_lwpoint().

64 {
65  POINT4D pt;
66  if ( lwpoint_is_empty(point) )
67  {
68  lwerror("lwpoint_get_x called with empty geometry");
69  return 0;
70  }
71  getPoint4d_p(point->point, 0, &pt);
72  return pt.x;
73 }
double x
Definition: liblwgeom.h:352
POINTARRAY * point
Definition: liblwgeom.h:411
int lwpoint_is_empty(const LWPOINT *point)
Definition: lwpoint.c:291
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
int getPoint4d_p(const POINTARRAY *pa, int n, POINT4D *point)
Definition: lwgeom_api.c:122
Here is the call graph for this function:
Here is the caller graph for this function: