PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ptarray_force_geodetic()

static int ptarray_force_geodetic ( POINTARRAY pa)
static

Definition at line 3144 of file lwgeodetic.c.

References getPoint4d_p(), latitude_degrees_normalize(), longitude_degrees_normalize(), LW_FALSE, LW_TRUE, POINTARRAY::npoints, ptarray_set_point4d(), POINT4D::x, and POINT4D::y.

Referenced by lwline_force_geodetic(), lwpoint_force_geodetic(), and lwpoly_force_geodetic().

3145 {
3146  int t;
3147  int changed = LW_FALSE;
3148  POINT4D pt;
3149 
3150  assert(pa);
3151 
3152  for ( t=0; t < pa->npoints; t++ )
3153  {
3154  getPoint4d_p(pa, t, &pt);
3155  if ( pt.x < -180.0 || pt.x > 180.0 || pt.y < -90.0 || pt.y > 90.0 )
3156  {
3157  pt.x = longitude_degrees_normalize(pt.x);
3158  pt.y = latitude_degrees_normalize(pt.y);
3159  ptarray_set_point4d(pa, t, &pt);
3160  changed = LW_TRUE;
3161  }
3162  }
3163  return changed;
3164 }
void ptarray_set_point4d(POINTARRAY *pa, int n, const POINT4D *p4d)
Definition: lwgeom_api.c:437
double x
Definition: liblwgeom.h:352
int npoints
Definition: liblwgeom.h:371
double longitude_degrees_normalize(double lon)
Convert a longitude to the range of -180,180.
Definition: lwgeodetic.c:106
double latitude_degrees_normalize(double lat)
Convert a latitude to the range of -90,90.
Definition: lwgeodetic.c:133
#define LW_FALSE
Definition: liblwgeom.h:77
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
double y
Definition: liblwgeom.h:352
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: