PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ lwcurvepoly_perimeter_2d()

double lwcurvepoly_perimeter_2d ( const LWCURVEPOLY poly)

Definition at line 159 of file lwcurvepoly.c.

160 {
161  double result=0.0;
162  uint32_t i;
163 
164  for (i=0; i<poly->nrings; i++)
165  result += lwgeom_length_2d(poly->rings[i]);
166 
167  return result;
168 }
double lwgeom_length_2d(const LWGEOM *geom)
Definition: lwgeom.c:1952
LWGEOM ** rings
Definition: liblwgeom.h:589
uint32_t nrings
Definition: liblwgeom.h:594

References lwgeom_length_2d(), LWCURVEPOLY::nrings, and LWCURVEPOLY::rings.

Referenced by lwgeom_perimeter_2d().

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