PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ lwline_length_2d()

double lwline_length_2d ( const LWLINE line)

Definition at line 530 of file lwline.c.

531{
532 if ( lwline_is_empty(line) )
533 return 0.0;
534 return ptarray_length_2d(line->points);
535}
double ptarray_length_2d(const POINTARRAY *pts)
Find the 2d length of the given POINTARRAY (even if it's 3d)
Definition ptarray.c:1975
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: