PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ptarray_length()

double ptarray_length ( const POINTARRAY pts)

Find the 3d/2d length of the given POINTARRAY (depending on its dimensionality)

Definition at line 1720 of file ptarray.c.

References POINTARRAY::flags, FLAGS_GET_Z, getPoint3dz_p(), POINTARRAY::npoints, ptarray_length_2d(), POINT3DZ::x, POINT3DZ::y, and POINT3DZ::z.

Referenced by lwline_length(), lwpoly_perimeter(), and lwtriangle_perimeter().

1721 {
1722  double dist = 0.0;
1723  int i;
1724  POINT3DZ frm;
1725  POINT3DZ to;
1726 
1727  if ( pts->npoints < 2 ) return 0.0;
1728 
1729  /* compute 2d length if 3d is not available */
1730  if ( ! FLAGS_GET_Z(pts->flags) ) return ptarray_length_2d(pts);
1731 
1732  getPoint3dz_p(pts, 0, &frm);
1733  for ( i=1; i < pts->npoints; i++ )
1734  {
1735  getPoint3dz_p(pts, i, &to);
1736  dist += sqrt( ((frm.x - to.x)*(frm.x - to.x)) +
1737  ((frm.y - to.y)*(frm.y - to.y)) +
1738  ((frm.z - to.z)*(frm.z - to.z)) );
1739  frm = to;
1740  }
1741  return dist;
1742 }
double z
Definition: liblwgeom.h:334
double y
Definition: liblwgeom.h:334
double x
Definition: liblwgeom.h:334
int npoints
Definition: liblwgeom.h:371
int getPoint3dz_p(const POINTARRAY *pa, int n, POINT3DZ *point)
Definition: lwgeom_api.c:214
uint8_t flags
Definition: liblwgeom.h:369
#define FLAGS_GET_Z(flags)
Macros for manipulating the &#39;flags&#39; byte.
Definition: liblwgeom.h:140
double ptarray_length_2d(const POINTARRAY *pts)
Find the 2d length of the given POINTARRAY (even if it&#39;s 3d)
Definition: ptarray.c:1692
Here is the call graph for this function:
Here is the caller graph for this function: