PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwpoly_perimeter()

double lwpoly_perimeter ( const LWPOLY poly)

Compute the sum of polygon rings length.

Could use a more numerically stable calculator...

Definition at line 557 of file lwpoly.c.

References LWDEBUGF, LWPOLY::nrings, ptarray_length(), and LWPOLY::rings.

Referenced by lwgeom_perimeter().

558 {
559  double result=0.0;
560  int i;
561 
562  LWDEBUGF(2, "in lwgeom_polygon_perimeter (%d rings)", poly->nrings);
563 
564  for (i=0; i<poly->nrings; i++)
565  result += ptarray_length(poly->rings[i]);
566 
567  return result;
568 }
POINTARRAY ** rings
Definition: liblwgeom.h:457
int nrings
Definition: liblwgeom.h:455
double ptarray_length(const POINTARRAY *pts)
Find the 3d/2d length of the given POINTARRAY (depending on its dimensionality)
Definition: ptarray.c:1720
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
Here is the call graph for this function:
Here is the caller graph for this function: