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

◆ LWGEOM_perimeter2d_poly()

Datum LWGEOM_perimeter2d_poly ( PG_FUNCTION_ARGS  )

Definition at line 352 of file lwgeom_functions_basic.c.

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

References lwgeom_from_gserialized(), and lwgeom_perimeter_2d().

Here is the call graph for this function: