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

◆ lwpoint_get_y()

double lwpoint_get_y ( const LWPOINT point)
extern

Definition at line 76 of file lwpoint.c.

77{
78 POINT4D pt;
79 if ( lwpoint_is_empty(point) )
80 {
81 lwerror("lwpoint_get_y called with empty geometry");
82 return 0;
83 }
84 getPoint4d_p(point->point, 0, &pt);
85 return pt.y;
86}
int getPoint4d_p(const POINTARRAY *pa, uint32_t n, POINT4D *point)
Definition lwgeom_api.c:125
int lwpoint_is_empty(const LWPOINT *point)
void void lwerror(const char *fmt,...) __attribute__((format(printf
Write a notice out to the error handler.
POINTARRAY * point
Definition liblwgeom.h:471
double y
Definition liblwgeom.h:414

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

Referenced by BOX2D_construct(), geography_centroid(), geography_centroid_from_mpoly(), lwgeom_azumith_spheroid(), lwgeom_cluster_kmeans(), lwgeom_project_spheroid(), lwline_covers_lwpoint(), RASTER_getPixelValueResample(), ST_Hexagon(), ST_Square(), and test_point_density().

Here is the call graph for this function:
Here is the caller graph for this function: