PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ LWGEOM_length2d_linestring()

Datum LWGEOM_length2d_linestring ( PG_FUNCTION_ARGS  )

Definition at line 294 of file lwgeom_functions_basic.c.

References dumpnode::geom, lwgeom_free(), lwgeom_from_gserialized(), lwgeom_length_2d(), LWGEOM_length_linestring(), and PG_FUNCTION_INFO_V1().

Referenced by LWGEOM_area_polygon().

295 {
296  GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
297  LWGEOM *lwgeom = lwgeom_from_gserialized(geom);
298  double dist = lwgeom_length_2d(lwgeom);
299  lwgeom_free(lwgeom);
300  PG_FREE_IF_COPY(geom, 0);
301  PG_RETURN_FLOAT8(dist);
302 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
double lwgeom_length_2d(const LWGEOM *geom)
Definition: lwgeom.c:1712
LWGEOM * geom
Here is the call graph for this function:
Here is the caller graph for this function: