PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ptarray_length_2d()

double ptarray_length_2d ( const POINTARRAY pts)

Find the 2d length of the given POINTARRAY (even if it's 3d)

Definition at line 1692 of file ptarray.c.

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

Referenced by LWGEOM_line_interpolate_point(), LWGEOM_line_substring(), lwline_length_2d(), lwline_measured_from_lwline(), lwmline_measured_from_lwmline(), lwpoly_perimeter_2d(), lwtriangle_perimeter_2d(), ptarray_length(), ptarray_locate_point(), and ptarray_substring().

1693 {
1694  double dist = 0.0;
1695  int i;
1696  const POINT2D *frm;
1697  const POINT2D *to;
1698 
1699  if ( pts->npoints < 2 ) return 0.0;
1700 
1701  frm = getPoint2d_cp(pts, 0);
1702 
1703  for ( i=1; i < pts->npoints; i++ )
1704  {
1705  to = getPoint2d_cp(pts, i);
1706 
1707  dist += sqrt( ((frm->x - to->x)*(frm->x - to->x)) +
1708  ((frm->y - to->y)*(frm->y - to->y)) );
1709 
1710  frm = to;
1711  }
1712  return dist;
1713 }
int npoints
Definition: liblwgeom.h:371
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
Here is the call graph for this function:
Here is the caller graph for this function: