PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ lwmpoly_to_points()

LWMPOINT* lwmpoly_to_points ( const LWMPOLY lwmpoly,
uint32_t  npoints,
int32_t  seed 
)

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

1886 {
1887  const LWGEOM* lwgeom = (LWGEOM*)lwmpoly;
1888  double area;
1889  uint32_t i;
1890  LWMPOINT* mpt = NULL;
1891 
1892  if (lwgeom_get_type(lwgeom) != MULTIPOLYGONTYPE)
1893  {
1894  lwerror("%s: only multipolygons supported", __func__);
1895  return NULL;
1896  }
1897  if (npoints == 0 || lwgeom_is_empty(lwgeom)) return NULL;
1898 
1899  area = lwgeom_area(lwgeom);
1900 
1901  for (i = 0; i < lwmpoly->ngeoms; i++)
1902  {
1903  double sub_area = lwpoly_area(lwmpoly->geoms[i]);
1904  int sub_npoints = lround(npoints * sub_area / area);
1905  if (sub_npoints > 0)
1906  {
1907  LWMPOINT* sub_mpt = lwpoly_to_points(lwmpoly->geoms[i], sub_npoints, seed);
1908  if (!mpt)
1909  mpt = sub_mpt;
1910  else
1911  {
1912  uint32_t j;
1913  for (j = 0; j < sub_mpt->ngeoms; j++)
1914  mpt = lwmpoint_add_lwpoint(mpt, sub_mpt->geoms[j]);
1915  /* Just free the shell, leave the underlying lwpoints alone, as they are now owned by
1916  * the returning multipoint */
1917  lwfree(sub_mpt->geoms);
1918  lwgeom_release((LWGEOM*)sub_mpt);
1919  }
1920  }
1921  }
1922  return mpt;
1923 }
LWMPOINT * lwpoly_to_points(const LWPOLY *lwpoly, uint32_t npoints, int32_t seed)
LWMPOINT * lwmpoint_add_lwpoint(LWMPOINT *mobj, const LWPOINT *obj)
Definition: lwmpoint.c:45
double lwgeom_area(const LWGEOM *geom)
Definition: lwgeom.c:1885
#define MULTIPOLYGONTYPE
Definition: liblwgeom.h:107
void lwfree(void *mem)
Definition: lwutil.c:242
void lwgeom_release(LWGEOM *lwgeom)
Free the containing LWGEOM and the associated BOX.
Definition: lwgeom.c:468
double lwpoly_area(const LWPOLY *poly)
Find the area of the outer ring - sum (area of inner rings).
Definition: lwpoly.c:434
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
static uint32_t lwgeom_get_type(const LWGEOM *geom)
Return LWTYPE number.
Definition: lwinline.h:145
static int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members)
Definition: lwinline.h:203
uint32_t ngeoms
Definition: liblwgeom.h:538
LWPOINT ** geoms
Definition: liblwgeom.h:533
uint32_t ngeoms
Definition: liblwgeom.h:566
LWPOLY ** geoms
Definition: liblwgeom.h:561

References LWMPOINT::geoms, LWMPOLY::geoms, lwerror(), lwfree(), lwgeom_area(), lwgeom_get_type(), lwgeom_is_empty(), lwgeom_release(), lwmpoint_add_lwpoint(), lwpoly_area(), lwpoly_to_points(), MULTIPOLYGONTYPE, LWMPOINT::ngeoms, and LWMPOLY::ngeoms.

Referenced by lwgeom_to_points().

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