PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ LWGEOM_length_linestring()

Datum LWGEOM_length_linestring ( PG_FUNCTION_ARGS  )

Definition at line 312 of file lwgeom_functions_basic.c.

References dumpnode::geom, lwgeom_free(), lwgeom_from_gserialized(), lwgeom_length(), LWGEOM_perimeter_poly(), and PG_FUNCTION_INFO_V1().

Referenced by LWGEOM_length2d_linestring().

313 {
314  GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
315  LWGEOM *lwgeom = lwgeom_from_gserialized(geom);
316  double dist = lwgeom_length(lwgeom);
317  lwgeom_free(lwgeom);
318  PG_FREE_IF_COPY(geom, 0);
319  PG_RETURN_FLOAT8(dist);
320 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
LWGEOM * geom
double lwgeom_length(const LWGEOM *geom)
Definition: lwgeom.c:1690
Here is the call graph for this function:
Here is the caller graph for this function: