PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ptarray_area_sphere()

double ptarray_area_sphere ( const POINTARRAY pa)

Returns the area of the ring (ring must be closed) in square radians (surface of the sphere is 4*PI).

Definition at line 1803 of file lwgeodetic.c.

References area(), geographic_point_init(), getPoint2d_cp(), POINTARRAY::npoints, sphere_signed_area(), POINT2D::x, and POINT2D::y.

Referenced by lwgeom_area_sphere().

1804 {
1805  int i;
1806  const POINT2D *p;
1807  GEOGRAPHIC_POINT a, b, c;
1808  double area = 0.0;
1809 
1810  /* Return zero on nonsensical inputs */
1811  if ( ! pa || pa->npoints < 4 )
1812  return 0.0;
1813 
1814  p = getPoint2d_cp(pa, 0);
1815  geographic_point_init(p->x, p->y, &a);
1816  p = getPoint2d_cp(pa, 1);
1817  geographic_point_init(p->x, p->y, &b);
1818 
1819  for ( i = 2; i < pa->npoints-1; i++ )
1820  {
1821  p = getPoint2d_cp(pa, i);
1822  geographic_point_init(p->x, p->y, &c);
1823  area += sphere_signed_area(&a, &b, &c);
1824  b = c;
1825  }
1826 
1827  return fabs(area);
1828 }
int npoints
Definition: liblwgeom.h:371
Datum area(PG_FUNCTION_ARGS)
Point in spherical coordinates on the world.
Definition: lwgeodetic.h:52
double x
Definition: liblwgeom.h:328
const POINT2D * getPoint2d_cp(const POINTARRAY *pa, int n)
Returns a POINT2D pointer into the POINTARRAY serialized_ptlist, suitable for reading from...
Definition: lwgeom_api.c:373
double y
Definition: liblwgeom.h:328
void geographic_point_init(double lon, double lat, GEOGRAPHIC_POINT *g)
Initialize a geographic point.
Definition: lwgeodetic.c:180
static double sphere_signed_area(const GEOGRAPHIC_POINT *a, const GEOGRAPHIC_POINT *b, const GEOGRAPHIC_POINT *c)
Computes the spherical area of a triangle.
Definition: lwgeodetic.c:737
Here is the call graph for this function:
Here is the caller graph for this function: