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

◆ lwcollection_calculate_circ_tree()

static CIRC_NODE * lwcollection_calculate_circ_tree ( const LWCOLLECTION lwcol)
static

Definition at line 975 of file lwgeodetic_tree.c.

976{
977 uint32_t i = 0, j = 0;
978 CIRC_NODE** nodes;
979 CIRC_NODE* node;
980
981 /* One geometry? Done! */
982 if ( lwcol->ngeoms == 1 )
983 return lwgeom_calculate_circ_tree(lwcol->geoms[0]);
984
985 /* Calculate a tree for each sub-geometry*/
986 nodes = lwalloc(lwcol->ngeoms * sizeof(CIRC_NODE*));
987 for ( i = 0; i < lwcol->ngeoms; i++ )
988 {
989 node = lwgeom_calculate_circ_tree(lwcol->geoms[i]);
990 if ( node )
991 nodes[j++] = node;
992 }
993 /* Put the trees into a spatially correlated order */
994 circ_nodes_sort(nodes, j);
995 /* Merge the trees pairwise up to a parent node and return */
996 node = circ_nodes_merge(nodes, j);
997 /* Don't need the working list any more */
998 lwfree(nodes);
999 node->geom_type = lwgeom_get_type((LWGEOM*)lwcol);
1000 return node;
1001}
void * lwalloc(size_t size)
Definition lwutil.c:227
void lwfree(void *mem)
Definition lwutil.c:248
CIRC_NODE * lwgeom_calculate_circ_tree(const LWGEOM *lwgeom)
static CIRC_NODE * circ_nodes_merge(CIRC_NODE **nodes, int num_nodes)
static void circ_nodes_sort(CIRC_NODE **nodes, int num_nodes)
Given a list of nodes, sort them into a spatially consistent order, then pairwise merge them up into ...
static uint32_t lwgeom_get_type(const LWGEOM *geom)
Return LWTYPE number.
Definition lwinline.h:141
uint32_t ngeoms
Definition liblwgeom.h:580
LWGEOM ** geoms
Definition liblwgeom.h:575
uint32_t geom_type
Note that p1 and p2 are pointers into an independent POINTARRAY, do not free them.

References circ_nodes_merge(), circ_nodes_sort(), circ_node::geom_type, LWCOLLECTION::geoms, lwalloc(), lwfree(), lwgeom_calculate_circ_tree(), lwgeom_get_type(), LWCOLLECTION::ngeoms, and sort_node::node.

Referenced by lwgeom_calculate_circ_tree().

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