PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ LWGEOM_perimeter2d_poly()

Datum LWGEOM_perimeter2d_poly ( PG_FUNCTION_ARGS  )

Definition at line 353 of file lwgeom_functions_basic.c.

354 {
355  GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
356  LWGEOM *lwgeom = lwgeom_from_gserialized(geom);
357  double perimeter = 0.0;
358 
359  perimeter = lwgeom_perimeter_2d(lwgeom);
360  PG_FREE_IF_COPY(geom, 0);
361  PG_RETURN_FLOAT8(perimeter);
362 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
double lwgeom_perimeter_2d(const LWGEOM *geom)
Definition: lwgeom.c:1917

References lwgeom_from_gserialized(), and lwgeom_perimeter_2d().

Here is the call graph for this function: