PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ lwcircstring_length_2d()

double lwcircstring_length_2d ( const LWCIRCSTRING circ)

Definition at line 274 of file lwcircstring.c.

275 {
276  if ( lwcircstring_is_empty(circ) )
277  return 0.0;
278 
279  return ptarray_arc_length_2d(circ->points);
280 }
double ptarray_arc_length_2d(const POINTARRAY *pts)
Find the 2d length of the given POINTARRAY, using circular arc interpolation between each coordinate ...
Definition: ptarray.c:1673
int lwcircstring_is_empty(const LWCIRCSTRING *circ)
POINTARRAY * points
Definition: liblwgeom.h:493

References lwcircstring_is_empty(), LWCIRCSTRING::points, and ptarray_arc_length_2d().

Referenced by lwcircstring_length(), and lwgeom_length_2d().

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