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

◆ ptarray_check_geodetic()

static int ptarray_check_geodetic ( const POINTARRAY pa)
static

Definition at line 2916 of file lwgeodetic.c.

2917{
2918 uint32_t t;
2919 POINT2D pt;
2920
2921 assert(pa);
2922
2923 for (t=0; t<pa->npoints; t++)
2924 {
2925 getPoint2d_p(pa, t, &pt);
2926 /* printf( "%d (%g, %g)\n", t, pt.x, pt.y); */
2927 if ( pt.x < -180.0 || pt.y < -90.0 || pt.x > 180.0 || pt.y > 90.0 )
2928 return LW_FALSE;
2929 }
2930
2931 return LW_TRUE;
2932}
#define LW_FALSE
Definition liblwgeom.h:94
int getPoint2d_p(const POINTARRAY *pa, uint32_t n, POINT2D *point)
Definition lwgeom_api.c:342
#define LW_TRUE
Return types for functions with status returns.
Definition liblwgeom.h:93
double y
Definition liblwgeom.h:390
double x
Definition liblwgeom.h:390
uint32_t npoints
Definition liblwgeom.h:427

References getPoint2d_p(), LW_FALSE, LW_TRUE, POINTARRAY::npoints, POINT2D::x, and POINT2D::y.

Referenced by lwline_check_geodetic(), lwpoint_check_geodetic(), lwpoly_check_geodetic(), and lwtriangle_check_geodetic().

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