PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ LWGEOM_npoints()

Datum LWGEOM_npoints ( PG_FUNCTION_ARGS  )

Definition at line 235 of file lwgeom_functions_basic.c.

References dumpnode::geom, lwgeom_count_vertices(), lwgeom_free(), lwgeom_from_gserialized(), LWGEOM_nrings(), and PG_FUNCTION_INFO_V1().

Referenced by postgis_libxml_version().

236 {
237  GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
238  LWGEOM *lwgeom = lwgeom_from_gserialized(geom);
239  int npoints = 0;
240 
241  npoints = lwgeom_count_vertices(lwgeom);
242  lwgeom_free(lwgeom);
243 
244  PG_FREE_IF_COPY(geom, 0);
245  PG_RETURN_INT32(npoints);
246 }
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
int lwgeom_count_vertices(const LWGEOM *geom)
Count the total number of vertices in any LWGEOM.
Definition: lwgeom.c:1189
Here is the call graph for this function:
Here is the caller graph for this function: