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

◆ lwgeom_subdivide()

LWCOLLECTION * lwgeom_subdivide ( const LWGEOM geom,
uint32_t  maxvertices 
)

Definition at line 2439 of file lwgeom.c.

2440{
2441 static uint32_t startdepth = 0;
2442 static uint32_t minmaxvertices = 5;
2443 LWCOLLECTION *col;
2444
2446
2447 if ( lwgeom_is_empty(geom) )
2448 return col;
2449
2450 if ( maxvertices < minmaxvertices )
2451 {
2452 lwcollection_free(col);
2453 lwerror("%s: cannot subdivide to fewer than %d vertices per output", __func__, minmaxvertices);
2454 }
2455
2456 lwgeom_subdivide_recursive(geom, lwgeom_dimension(geom), maxvertices, startdepth, col);
2457 lwgeom_set_srid((LWGEOM*)col, geom->srid);
2458 return col;
2459}
#define COLLECTIONTYPE
Definition liblwgeom.h:122
void lwcollection_free(LWCOLLECTION *col)
LWCOLLECTION * lwcollection_construct_empty(uint8_t type, int32_t srid, char hasz, char hasm)
void lwgeom_set_srid(LWGEOM *geom, int32_t srid)
Set the SRID on an LWGEOM For collections, only the parent gets an SRID, all the children get SRID_UN...
Definition lwgeom.c:1530
int lwgeom_has_z(const LWGEOM *geom)
Return LW_TRUE if geometry has Z ordinates.
Definition lwgeom.c:916
int lwgeom_dimension(const LWGEOM *geom)
For an LWGEOM, returns 0 for points, 1 for lines, 2 for polygons, 3 for volume, and the max dimension...
Definition lwgeom.c:1281
static void lwgeom_subdivide_recursive(const LWGEOM *geom, uint8_t dimension, uint32_t maxvertices, uint32_t depth, LWCOLLECTION *col)
Definition lwgeom.c:2261
int lwgeom_has_m(const LWGEOM *geom)
Return LW_TRUE if geometry has M ordinates.
Definition lwgeom.c:923
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition lwutil.c:190
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:193
int32_t srid
Definition liblwgeom.h:446

References COLLECTIONTYPE, lwcollection_construct_empty(), lwcollection_free(), lwerror(), lwgeom_dimension(), lwgeom_has_m(), lwgeom_has_z(), lwgeom_is_empty(), lwgeom_set_srid(), lwgeom_subdivide_recursive(), and LWGEOM::srid.

Referenced by ST_Subdivide(), and test_geos_subdivide().

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