PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwgeom_to_points()

LWMPOINT* lwgeom_to_points ( const LWGEOM lwgeom,
uint32_t  npoints 
)

Definition at line 1705 of file liblwgeom/lwgeom_geos.c.

1706 {
1707  switch (lwgeom_get_type(lwgeom))
1708  {
1709  case MULTIPOLYGONTYPE:
1710  return lwmpoly_to_points((LWMPOLY*)lwgeom, npoints);
1711  case POLYGONTYPE:
1712  return lwpoly_to_points((LWPOLY*)lwgeom, npoints);
1713  default:
1714  lwerror("%s: unsupported geometry type '%s'", __func__, lwtype_name(lwgeom_get_type(lwgeom)));
1715  return NULL;
1716  }
1717 }
LWMPOINT * lwmpoly_to_points(const LWMPOLY *lwmpoly, uint32_t npoints)
LWMPOINT * lwpoly_to_points(const LWPOLY *lwpoly, uint32_t npoints)
uint32_t lwgeom_get_type(const LWGEOM *geom)
Return LWTYPE number.
Definition: lwgeom.c:923
#define MULTIPOLYGONTYPE
Definition: liblwgeom.h:90
#define POLYGONTYPE
Definition: liblwgeom.h:87
const char * lwtype_name(uint8_t type)
Return the type name string associated with a type number (e.g.
Definition: lwutil.c:218
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190

References lwerror(), lwgeom_get_type(), lwmpoly_to_points(), lwpoly_to_points(), lwtype_name(), MULTIPOLYGONTYPE, and POLYGONTYPE.

Referenced by ST_GeneratePoints(), and test_point_density().

Here is the call graph for this function:
Here is the caller graph for this function: