PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwpoly_calculate_circ_tree()

static CIRC_NODE* lwpoly_calculate_circ_tree ( const LWPOLY lwpoly)
static

Definition at line 887 of file lwgeodetic_tree.c.

References circ_nodes_merge(), circ_nodes_sort(), circ_tree_new(), circ_node::geom_type, lwalloc(), lwfree(), lwgeom_get_type(), lwpoly_pt_outside(), LWPOLY::nrings, circ_node::pt_outside, and LWPOLY::rings.

Referenced by lwgeom_calculate_circ_tree().

888 {
889  int i = 0, j = 0;
890  CIRC_NODE** nodes;
891  CIRC_NODE* node;
892 
893  /* One ring? Handle it like a line. */
894  if ( lwpoly->nrings == 1 )
895  {
896  node = circ_tree_new(lwpoly->rings[0]);
897  }
898  else
899  {
900  /* Calculate a tree for each non-trivial ring of the polygon */
901  nodes = lwalloc(lwpoly->nrings * sizeof(CIRC_NODE*));
902  for ( i = 0; i < lwpoly->nrings; i++ )
903  {
904  node = circ_tree_new(lwpoly->rings[i]);
905  if ( node )
906  nodes[j++] = node;
907  }
908  /* Put the trees into a spatially correlated order */
909  circ_nodes_sort(nodes, j);
910  /* Merge the trees pairwise up to a parent node and return */
911  node = circ_nodes_merge(nodes, j);
912  /* Don't need the working list any more */
913  lwfree(nodes);
914  }
915 
916  /* Metatdata about polygons, we need this to apply P-i-P tests */
917  /* selectively when doing distance calculations */
918  node->geom_type = lwgeom_get_type((LWGEOM*)lwpoly);
919  lwpoly_pt_outside(lwpoly, &(node->pt_outside));
920 
921  return node;
922 }
Note that p1 and p2 are pointers into an independent POINTARRAY, do not free them.
void lwfree(void *mem)
Definition: lwutil.c:244
uint32_t lwgeom_get_type(const LWGEOM *geom)
Return LWTYPE number.
Definition: lwgeom.c:878
int lwpoly_pt_outside(const LWPOLY *poly, POINT2D *pt_outside)
Definition: lwgeodetic.c:1523
CIRC_NODE * circ_tree_new(const POINTARRAY *pa)
Build a tree of nodes from a point array, one node per edge.
POINTARRAY ** rings
Definition: liblwgeom.h:457
static CIRC_NODE * circ_nodes_merge(CIRC_NODE **nodes, int num_nodes)
int nrings
Definition: liblwgeom.h:455
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 ...
POINT2D pt_outside
void * lwalloc(size_t size)
Definition: lwutil.c:229
Here is the call graph for this function:
Here is the caller graph for this function: