PostGIS  3.2.2dev-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 2127 of file ptarray.c.

2128 {
2129  double dist = 0.0;
2130  uint32_t i;
2131  POINT3DZ frm;
2132  POINT3DZ to;
2133 
2134  if ( pts->npoints < 2 ) return 0.0;
2135 
2136  /* compute 2d length if 3d is not available */
2137  if ( ! FLAGS_GET_Z(pts->flags) ) return ptarray_length_2d(pts);
2138 
2139  getPoint3dz_p(pts, 0, &frm);
2140  for ( i=1; i < pts->npoints; i++ )
2141  {
2142  getPoint3dz_p(pts, i, &to);
2143  dist += sqrt( ((frm.x - to.x)*(frm.x - to.x)) +
2144  ((frm.y - to.y)*(frm.y - to.y)) +
2145  ((frm.z - to.z)*(frm.z - to.z)) );
2146  frm = to;
2147  }
2148  return dist;
2149 }
#define FLAGS_GET_Z(flags)
Definition: liblwgeom.h:179
int getPoint3dz_p(const POINTARRAY *pa, uint32_t n, POINT3DZ *point)
Definition: lwgeom_api.c:216
double ptarray_length_2d(const POINTARRAY *pts)
Find the 2d length of the given POINTARRAY (even if it's 3d)
Definition: ptarray.c:2099
double z
Definition: liblwgeom.h:410
double x
Definition: liblwgeom.h:410
double y
Definition: liblwgeom.h:410
lwflags_t flags
Definition: liblwgeom.h:445
uint32_t npoints
Definition: liblwgeom.h:441

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

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

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