PostGIS  3.0.6dev-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 678 of file lwgeodetic_tree.c.

679 {
680  double max;
681  double d, d_min;
682  uint32_t i;
683 
684  LWDEBUGF(4, "entered, min_dist=%.8g max_dist=%.8g, type1=%d, type2=%d", *min_dist, *max_dist, n1->geom_type, n2->geom_type);
685 
686  // printf("-==-\n");
687  // circ_tree_print(n1, 0);
688  // printf("--\n");
689  // circ_tree_print(n2, 0);
690 
691  /* Short circuit if we've already hit the minimum */
692  if( *min_dist < threshold || *min_dist == 0.0 )
693  return *min_dist;
694 
695  /* If your minimum is greater than anyone's maximum, you can't hold the winner */
696  if( circ_node_min_distance(n1, n2) > *max_dist )
697  {
698  LWDEBUGF(4, "pruning pair %p, %p", n1, n2);
699  return FLT_MAX;
700  }
701 
702  /* If your maximum is a new low, we'll use that as our new global tolerance */
703  max = circ_node_max_distance(n1, n2);
704  LWDEBUGF(5, "max %.8g", max);
705  if( max < *max_dist )
706  *max_dist = max;
707 
708  /* Polygon on one side, primitive type on the other. Check for point-in-polygon */
709  /* short circuit. */
710  if ( n1->geom_type == POLYGONTYPE && n2->geom_type && ! lwtype_is_collection(n2->geom_type) )
711  {
712  POINT2D pt;
713  circ_tree_get_point(n2, &pt);
714  LWDEBUGF(4, "n1 is polygon, testing if contains (%.5g,%.5g)", pt.x, pt.y);
715  if ( circ_tree_contains_point(n1, &pt, &(n1->pt_outside), 0, NULL) )
716  {
717  LWDEBUG(4, "it does");
718  *min_dist = 0.0;
719  geographic_point_init(pt.x, pt.y, closest1);
720  geographic_point_init(pt.x, pt.y, closest2);
721  return *min_dist;
722  }
723  }
724  /* Polygon on one side, primitive type on the other. Check for point-in-polygon */
725  /* short circuit. */
726  if ( n2->geom_type == POLYGONTYPE && n1->geom_type && ! lwtype_is_collection(n1->geom_type) )
727  {
728  POINT2D pt;
729  circ_tree_get_point(n1, &pt);
730  LWDEBUGF(4, "n2 is polygon, testing if contains (%.5g,%.5g)", pt.x, pt.y);
731  if ( circ_tree_contains_point(n2, &pt, &(n2->pt_outside), 0, NULL) )
732  {
733  LWDEBUG(4, "it does");
734  geographic_point_init(pt.x, pt.y, closest1);
735  geographic_point_init(pt.x, pt.y, closest2);
736  *min_dist = 0.0;
737  return *min_dist;
738  }
739  }
740 
741  /* Both leaf nodes, do a real distance calculation */
742  if( circ_node_is_leaf(n1) && circ_node_is_leaf(n2) )
743  {
744  double d;
745  GEOGRAPHIC_POINT close1, close2;
746  LWDEBUGF(4, "testing leaf pair [%d], [%d]", n1->edge_num, n2->edge_num);
747  /* One of the nodes is a point */
748  if ( n1->p1 == n1->p2 || n2->p1 == n2->p2 )
749  {
750  GEOGRAPHIC_EDGE e;
751  GEOGRAPHIC_POINT gp1, gp2;
752 
753  /* Both nodes are points! */
754  if ( n1->p1 == n1->p2 && n2->p1 == n2->p2 )
755  {
756  geographic_point_init(n1->p1->x, n1->p1->y, &gp1);
757  geographic_point_init(n2->p1->x, n2->p1->y, &gp2);
758  close1 = gp1; close2 = gp2;
759  d = sphere_distance(&gp1, &gp2);
760  }
761  /* Node 1 is a point */
762  else if ( n1->p1 == n1->p2 )
763  {
764  geographic_point_init(n1->p1->x, n1->p1->y, &gp1);
765  geographic_point_init(n2->p1->x, n2->p1->y, &(e.start));
766  geographic_point_init(n2->p2->x, n2->p2->y, &(e.end));
767  close1 = gp1;
768  d = edge_distance_to_point(&e, &gp1, &close2);
769  }
770  /* Node 2 is a point */
771  else
772  {
773  geographic_point_init(n2->p1->x, n2->p1->y, &gp1);
774  geographic_point_init(n1->p1->x, n1->p1->y, &(e.start));
775  geographic_point_init(n1->p2->x, n1->p2->y, &(e.end));
776  close1 = gp1;
777  d = edge_distance_to_point(&e, &gp1, &close2);
778  }
779  LWDEBUGF(4, " got distance %g", d);
780  }
781  /* Both nodes are edges */
782  else
783  {
784  GEOGRAPHIC_EDGE e1, e2;
786  POINT3D A1, A2, B1, B2;
787  geographic_point_init(n1->p1->x, n1->p1->y, &(e1.start));
788  geographic_point_init(n1->p2->x, n1->p2->y, &(e1.end));
789  geographic_point_init(n2->p1->x, n2->p1->y, &(e2.start));
790  geographic_point_init(n2->p2->x, n2->p2->y, &(e2.end));
791  geog2cart(&(e1.start), &A1);
792  geog2cart(&(e1.end), &A2);
793  geog2cart(&(e2.start), &B1);
794  geog2cart(&(e2.end), &B2);
795  if ( edge_intersects(&A1, &A2, &B1, &B2) )
796  {
797  d = 0.0;
798  edge_intersection(&e1, &e2, &g);
799  close1 = close2 = g;
800  }
801  else
802  {
803  d = edge_distance_to_edge(&e1, &e2, &close1, &close2);
804  }
805  LWDEBUGF(4, "edge_distance_to_edge returned %g", d);
806  }
807  if ( d < *min_dist )
808  {
809  *min_dist = d;
810  *closest1 = close1;
811  *closest2 = close2;
812  }
813  return d;
814  }
815  else
816  {
817  d_min = FLT_MAX;
818  /* Drive the recursion into the COLLECTION types first so we end up with */
819  /* pairings of primitive geometries that can be forced into the point-in-polygon */
820  /* tests above. */
821  if ( n1->geom_type && lwtype_is_collection(n1->geom_type) )
822  {
824  for ( i = 0; i < n1->num_nodes; i++ )
825  {
826  d = circ_tree_distance_tree_internal(n1->nodes[i], n2, threshold, min_dist, max_dist, closest1, closest2);
827  d_min = FP_MIN(d_min, d);
828  }
829  }
830  else if ( n2->geom_type && lwtype_is_collection(n2->geom_type) )
831  {
833  for ( i = 0; i < n2->num_nodes; i++ )
834  {
835  d = circ_tree_distance_tree_internal(n1, n2->nodes[i], threshold, min_dist, max_dist, closest1, closest2);
836  d_min = FP_MIN(d_min, d);
837  }
838  }
839  else if ( ! circ_node_is_leaf(n1) )
840  {
842  for ( i = 0; i < n1->num_nodes; i++ )
843  {
844  d = circ_tree_distance_tree_internal(n1->nodes[i], n2, threshold, min_dist, max_dist, closest1, closest2);
845  d_min = FP_MIN(d_min, d);
846  }
847  }
848  else if ( ! circ_node_is_leaf(n2) )
849  {
851  for ( i = 0; i < n2->num_nodes; i++ )
852  {
853  d = circ_tree_distance_tree_internal(n1, n2->nodes[i], threshold, min_dist, max_dist, closest1, closest2);
854  d_min = FP_MIN(d_min, d);
855  }
856  }
857  else
858  {
859  /* Never get here */
860  }
861 
862  return d_min;
863  }
864 }
int lwtype_is_collection(uint8_t type)
Determine whether a type number is a collection or not.
Definition: lwgeom.c:1087
#define POLYGONTYPE
Definition: liblwgeom.h:118
#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:3541
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)
static double circ_node_min_distance(const CIRC_NODE *n1, const CIRC_NODE *n2)
int circ_tree_contains_point(const CIRC_NODE *node, const POINT2D *pt, const POINT2D *pt_outside, int level, int *on_boundary)
Walk the tree and count intersections between the stab line and the edges.
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
GEOGRAPHIC_POINT start
Definition: lwgeodetic.h:64
GEOGRAPHIC_POINT end
Definition: lwgeodetic.h:65
Two-point great circle segment from a to b.
Definition: lwgeodetic.h:63
Point in spherical coordinates on the world.
Definition: lwgeodetic.h:54
double y
Definition: liblwgeom.h:376
double x
Definition: liblwgeom.h:376
uint32_t num_nodes
POINT2D * p2
struct circ_node ** nodes
POINT2D * p1
POINT2D pt_outside
uint32_t geom_type

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: