PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ circ_tree_distance_tree()

double circ_tree_distance_tree ( const CIRC_NODE n1,
const CIRC_NODE n2,
const SPHEROID spheroid,
double  threshold 
)

Definition at line 607 of file lwgeodetic_tree.c.

References SPHEROID::a, SPHEROID::b, circ_tree_distance_tree_internal(), SPHEROID::radius, sphere_distance(), and spheroid_distance().

Referenced by geography_distance_cache_tolerance(), geography_tree_distance(), test_tree_circ_distance(), and test_tree_circ_distance_threshold().

608 {
609  double min_dist = FLT_MAX;
610  double max_dist = FLT_MAX;
611  GEOGRAPHIC_POINT closest1, closest2;
612  /* Quietly decrease the threshold just a little to avoid cases where */
613  /* the actual spheroid distance is larger than the sphere distance */
614  /* causing the return value to be larger than the threshold value */
615  double threshold_radians = 0.95 * threshold / spheroid->radius;
616 
617  circ_tree_distance_tree_internal(n1, n2, threshold_radians, &min_dist, &max_dist, &closest1, &closest2);
618 
619  /* Spherical case */
620  if ( spheroid->a == spheroid->b )
621  {
622  return spheroid->radius * sphere_distance(&closest1, &closest2);
623  }
624  else
625  {
626  return spheroid_distance(&closest1, &closest2, spheroid);
627  }
628 }
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:944
double b
Definition: liblwgeom.h:314
double radius
Definition: liblwgeom.h:318
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)
Point in spherical coordinates on the world.
Definition: lwgeodetic.h:52
double a
Definition: liblwgeom.h:313
double spheroid_distance(const GEOGRAPHIC_POINT *a, const GEOGRAPHIC_POINT *b, const SPHEROID *spheroid)
Computes the shortest distance along the surface of the spheroid between two points.
Definition: lwspheroid.c:186
Here is the call graph for this function:
Here is the caller graph for this function: