PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ sphere_distance()

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 at line 944 of file lwgeodetic.c.

References GEOGRAPHIC_POINT::lat, GEOGRAPHIC_POINT::lon, and POW2.

Referenced by circ_node_internal_new(), circ_node_leaf_new(), circ_node_max_distance(), circ_node_min_distance(), circ_tree_distance_tree(), circ_tree_distance_tree_internal(), edge_calculate_gbox_slow(), edge_distance_to_point(), ptarray_distance_spheroid(), ptarray_length_spheroid(), ptarray_segmentize_sphere(), sphere_direction(), spheroid_distance(), test_sphere_direction(), and test_sphere_project().

945 {
946  double d_lon = e->lon - s->lon;
947  double cos_d_lon = cos(d_lon);
948  double cos_lat_e = cos(e->lat);
949  double sin_lat_e = sin(e->lat);
950  double cos_lat_s = cos(s->lat);
951  double sin_lat_s = sin(s->lat);
952 
953  double a1 = POW2(cos_lat_e * sin(d_lon));
954  double a2 = POW2(cos_lat_s * sin_lat_e - sin_lat_s * cos_lat_e * cos_d_lon);
955  double a = sqrt(a1 + a2);
956  double b = sin_lat_s * sin_lat_e + cos_lat_s * cos_lat_e * cos_d_lon;
957  return atan2(a, b);
958 }
#define POW2(x)
Definition: lwgeodetic.h:47
Here is the caller graph for this function: