PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ptarray_longitude_shift()

void ptarray_longitude_shift ( POINTARRAY pa)

Longitude shift for a pointarray.

Y remains the same X is converted: from -180..180 to 0..360 from 0..360 to -180..180 X < 0 becomes X + 360 X > 180 becomes X - 360

Definition at line 1417 of file ptarray.c.

References getPoint_internal(), POINTARRAY::npoints, and pixval::x.

Referenced by lwgeom_longitude_shift().

1418 {
1419  int i;
1420  double x;
1421 
1422  for (i=0; i<pa->npoints; i++)
1423  {
1424  memcpy(&x, getPoint_internal(pa, i), sizeof(double));
1425  if ( x < 0 ) x+= 360;
1426  else if ( x > 180 ) x -= 360;
1427  memcpy(getPoint_internal(pa, i), &x, sizeof(double));
1428  }
1429 }
int npoints
Definition: liblwgeom.h:371
uint8_t * getPoint_internal(const POINTARRAY *pa, int n)
Definition: ptarray.c:1753
Here is the call graph for this function:
Here is the caller graph for this function: