PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ lwline_length_2d()

double lwline_length_2d ( const LWLINE line)

Definition at line 520 of file lwline.c.

521 {
522  if ( lwline_is_empty(line) )
523  return 0.0;
524  return ptarray_length_2d(line->points);
525 }
double ptarray_length_2d(const POINTARRAY *pts)
Find the 2d length of the given POINTARRAY (even if it's 3d)
Definition: ptarray.c:1832
int lwline_is_empty(const LWLINE *line)
POINTARRAY * points
Definition: liblwgeom.h:483

References lwline_is_empty(), LWLINE::points, and ptarray_length_2d().

Referenced by geometry_line_extend(), lwgeom_length_2d(), and test_lwline_from_lwmpoint().

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