PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ circ_tree_distance_tree_internal()

static double circ_tree_distance_tree_internal ( const CIRC_NODE n1,
const CIRC_NODE n2,
double  threshold,
double *  min_dist,
double *  max_dist,
GEOGRAPHIC_POINT closest1,
GEOGRAPHIC_POINT closest2 
)
static

Definition at line 663 of file lwgeodetic_tree.c.

664 {
665  double max;
666  double d, d_min;
667  uint32_t i;
668 
669  LWDEBUGF(4, "entered, min_dist=%.8g max_dist=%.8g, type1=%d, type2=%d", *min_dist, *max_dist, n1->geom_type, n2->geom_type);
670 /*
671  circ_tree_print(n1, 0);
672  circ_tree_print(n2, 0);
673 */
674 
675  /* Short circuit if we've already hit the minimum */
676  if( *min_dist < threshold || *min_dist == 0.0 )
677  return *min_dist;
678 
679  /* If your minimum is greater than anyone's maximum, you can't hold the winner */
680  if( circ_node_min_distance(n1, n2) > *max_dist )
681  {
682  LWDEBUGF(4, "pruning pair %p, %p", n1, n2);
683  return FLT_MAX;
684  }
685 
686  /* If your maximum is a new low, we'll use that as our new global tolerance */
687  max = circ_node_max_distance(n1, n2);
688  LWDEBUGF(5, "max %.8g", max);
689  if( max < *max_dist )
690  *max_dist = max;
691 
692  /* Polygon on one side, primitive type on the other. Check for point-in-polygon */
693  /* short circuit. */
694  if ( n1->geom_type == POLYGONTYPE && n2->geom_type && ! lwtype_is_collection(n2->geom_type) )
695  {
696  POINT2D pt;
697  circ_tree_get_point(n2, &pt);
698  LWDEBUGF(4, "n1 is polygon, testing if contains (%.5g,%.5g)", pt.x, pt.y);
699  if ( circ_tree_contains_point(n1, &pt, &(n1->pt_outside), NULL) )
700  {
701  LWDEBUG(4, "it does");
702  *min_dist = 0.0;
703  geographic_point_init(pt.x, pt.y, closest1);
704  geographic_point_init(pt.x, pt.y, closest2);
705  return *min_dist;
706  }
707  }
708  /* Polygon on one side, primitive type on the other. Check for point-in-polygon */
709  /* short circuit. */
710  if ( n2->geom_type == POLYGONTYPE && n1->geom_type && ! lwtype_is_collection(n1->geom_type) )
711  {
712  POINT2D pt;
713  circ_tree_get_point(n1, &pt);
714  LWDEBUGF(4, "n2 is polygon, testing if contains (%.5g,%.5g)", pt.x, pt.y);
715  if ( circ_tree_contains_point(n2, &pt, &(n2->pt_outside), NULL) )
716  {
717  LWDEBUG(4, "it does");
718  geographic_point_init(pt.x, pt.y, closest1);
719  geographic_point_init(pt.x, pt.y, closest2);
720  *min_dist = 0.0;
721  return *min_dist;
722  }
723  }
724 
725  /* Both leaf nodes, do a real distance calculation */
726  if( circ_node_is_leaf(n1) && circ_node_is_leaf(n2) )
727  {
728  double d;
729  GEOGRAPHIC_POINT close1, close2;
730  LWDEBUGF(4, "testing leaf pair [%d], [%d]", n1->edge_num, n2->edge_num);
731  /* One of the nodes is a point */
732  if ( n1->p1 == n1->p2 || n2->p1 == n2->p2 )
733  {
734  GEOGRAPHIC_EDGE e;
735  GEOGRAPHIC_POINT gp1, gp2;
736 
737  /* Both nodes are points! */
738  if ( n1->p1 == n1->p2 && n2->p1 == n2->p2 )
739  {
740  geographic_point_init(n1->p1->x, n1->p1->y, &gp1);
741  geographic_point_init(n2->p1->x, n2->p1->y, &gp2);
742  close1 = gp1; close2 = gp2;
743  d = sphere_distance(&gp1, &gp2);
744  }
745  /* Node 1 is a point */
746  else if ( n1->p1 == n1->p2 )
747  {
748  geographic_point_init(n1->p1->x, n1->p1->y, &gp1);
749  geographic_point_init(n2->p1->x, n2->p1->y, &(e.start));
750  geographic_point_init(n2->p2->x, n2->p2->y, &(e.end));
751  close1 = gp1;
752  d = edge_distance_to_point(&e, &gp1, &close2);
753  }
754  /* Node 2 is a point */
755  else
756  {
757  geographic_point_init(n2->p1->x, n2->p1->y, &gp1);
758  geographic_point_init(n1->p1->x, n1->p1->y, &(e.start));
759  geographic_point_init(n1->p2->x, n1->p2->y, &(e.end));
760  close1 = gp1;
761  d = edge_distance_to_point(&e, &gp1, &close2);
762  }
763  LWDEBUGF(4, " got distance %g", d);
764  }
765  /* Both nodes are edges */
766  else
767  {
768  GEOGRAPHIC_EDGE e1, e2;
770  POINT3D A1, A2, B1, B2;
771  geographic_point_init(n1->p1->x, n1->p1->y, &(e1.start));
772  geographic_point_init(n1->p2->x, n1->p2->y, &(e1.end));
773  geographic_point_init(n2->p1->x, n2->p1->y, &(e2.start));
774  geographic_point_init(n2->p2->x, n2->p2->y, &(e2.end));
775  geog2cart(&(e1.start), &A1);
776  geog2cart(&(e1.end), &A2);
777  geog2cart(&(e2.start), &B1);
778  geog2cart(&(e2.end), &B2);
779  if ( edge_intersects(&A1, &A2, &B1, &B2) )
780  {
781  d = 0.0;
782  edge_intersection(&e1, &e2, &g);
783  close1 = close2 = g;
784  }
785  else
786  {
787  d = edge_distance_to_edge(&e1, &e2, &close1, &close2);
788  }
789  LWDEBUGF(4, "edge_distance_to_edge returned %g", d);
790  }
791  if ( d < *min_dist )
792  {
793  *min_dist = d;
794  *closest1 = close1;
795  *closest2 = close2;
796  }
797  return d;
798  }
799  else
800  {
801  d_min = FLT_MAX;
802  /* Drive the recursion into the COLLECTION types first so we end up with */
803  /* pairings of primitive geometries that can be forced into the point-in-polygon */
804  /* tests above. */
805  if ( n1->geom_type && lwtype_is_collection(n1->geom_type) )
806  {
808  for ( i = 0; i < n1->num_nodes; i++ )
809  {
810  d = circ_tree_distance_tree_internal(n1->nodes[i], n2, threshold, min_dist, max_dist, closest1, closest2);
811  d_min = FP_MIN(d_min, d);
812  }
813  }
814  else if ( n2->geom_type && lwtype_is_collection(n2->geom_type) )
815  {
817  for ( i = 0; i < n2->num_nodes; i++ )
818  {
819  d = circ_tree_distance_tree_internal(n1, n2->nodes[i], threshold, min_dist, max_dist, closest1, closest2);
820  d_min = FP_MIN(d_min, d);
821  }
822  }
823  else if ( ! circ_node_is_leaf(n1) )
824  {
826  for ( i = 0; i < n1->num_nodes; i++ )
827  {
828  d = circ_tree_distance_tree_internal(n1->nodes[i], n2, threshold, min_dist, max_dist, closest1, closest2);
829  d_min = FP_MIN(d_min, d);
830  }
831  }
832  else if ( ! circ_node_is_leaf(n2) )
833  {
835  for ( i = 0; i < n2->num_nodes; i++ )
836  {
837  d = circ_tree_distance_tree_internal(n1, n2->nodes[i], threshold, min_dist, max_dist, closest1, closest2);
838  d_min = FP_MIN(d_min, d);
839  }
840  }
841  else
842  {
843  /* Never get here */
844  }
845 
846  return d_min;
847  }
848 }
int lwtype_is_collection(uint8_t type)
Determine whether a type number is a collection or not.
Definition: lwgeom.c:1093
#define POLYGONTYPE
Definition: liblwgeom.h:87
#define FP_MIN(A, B)
void geographic_point_init(double lon, double lat, GEOGRAPHIC_POINT *g)
Initialize a geographic point.
Definition: lwgeodetic.c:180
double sphere_distance(const GEOGRAPHIC_POINT *s, const GEOGRAPHIC_POINT *e)
Given two points on a unit sphere, calculate their distance apart in radians.
Definition: lwgeodetic.c:948
int edge_intersection(const GEOGRAPHIC_EDGE *e1, const GEOGRAPHIC_EDGE *e2, GEOGRAPHIC_POINT *g)
Returns true if an intersection can be calculated, and places it in *g.
Definition: lwgeodetic.c:1127
uint32_t edge_intersects(const POINT3D *A1, const POINT3D *A2, const POINT3D *B1, const POINT3D *B2)
Returns non-zero if edges A and B interact.
Definition: lwgeodetic.c:3540
double edge_distance_to_point(const GEOGRAPHIC_EDGE *e, const GEOGRAPHIC_POINT *gp, GEOGRAPHIC_POINT *closest)
Definition: lwgeodetic.c:1218
void geog2cart(const GEOGRAPHIC_POINT *g, POINT3D *p)
Convert spherical coordinates to cartesian coordinates on unit sphere.
Definition: lwgeodetic.c:404
double edge_distance_to_edge(const GEOGRAPHIC_EDGE *e1, const GEOGRAPHIC_EDGE *e2, GEOGRAPHIC_POINT *closest1, GEOGRAPHIC_POINT *closest2)
Calculate the distance between two edges.
Definition: lwgeodetic.c:1269
int circ_tree_get_point(const CIRC_NODE *node, POINT2D *pt)
Returns a POINT2D that is a vertex of the input shape.
static double circ_node_max_distance(const CIRC_NODE *n1, const CIRC_NODE *n2)
static double circ_tree_distance_tree_internal(const CIRC_NODE *n1, const CIRC_NODE *n2, double threshold, double *min_dist, double *max_dist, GEOGRAPHIC_POINT *closest1, GEOGRAPHIC_POINT *closest2)
static int circ_node_is_leaf(const CIRC_NODE *node)
Internal nodes have their point references set to NULL.
static void circ_internal_nodes_sort(CIRC_NODE **nodes, uint32_t num_nodes, const CIRC_NODE *target_node)
int circ_tree_contains_point(const CIRC_NODE *node, const POINT2D *pt, const POINT2D *pt_outside, int *on_boundary)
Walk the tree and count intersections between the stab line and the edges.
static double circ_node_min_distance(const CIRC_NODE *n1, const CIRC_NODE *n2)
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
GEOGRAPHIC_POINT start
Definition: lwgeodetic.h:63
GEOGRAPHIC_POINT end
Definition: lwgeodetic.h:64
Two-point great circle segment from a to b.
Definition: lwgeodetic.h:62
Point in spherical coordinates on the world.
Definition: lwgeodetic.h:53
double y
Definition: liblwgeom.h:331
double x
Definition: liblwgeom.h:331
uint32_t num_nodes
POINT2D * p2
struct circ_node ** nodes
POINT2D * p1
POINT2D pt_outside
uint32_t geom_type
unsigned int uint32_t
Definition: uthash.h:78

References circ_internal_nodes_sort(), circ_node_is_leaf(), circ_node_max_distance(), circ_node_min_distance(), circ_tree_contains_point(), circ_tree_get_point(), sort_node::d, edge_distance_to_edge(), edge_distance_to_point(), edge_intersection(), edge_intersects(), circ_node::edge_num, GEOGRAPHIC_EDGE::end, FP_MIN, geog2cart(), geographic_point_init(), circ_node::geom_type, LWDEBUG, LWDEBUGF, lwtype_is_collection(), circ_node::nodes, circ_node::num_nodes, circ_node::p1, circ_node::p2, POLYGONTYPE, circ_node::pt_outside, sphere_distance(), GEOGRAPHIC_EDGE::start, POINT2D::x, and POINT2D::y.

Referenced by circ_tree_distance_tree().

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