Module unit_sphere::vector::intersection

source ·
Expand description

The intersection module contains functions for calculating great-circle intersections using vectors.

A pair of great circles intersect at two points unless they are coincident.
For example, points u and v in Figure1.

great circle path
Figure 1 A pair of intersecting great circles

A great circle intersection point can simply be calculated by normalizing the cross product of their pole vectors.
If the resulting vector is too small to normalize, then the great circles are coincident, in which case they effectively intersect everywhere.

If a pair of Arcs are on coincident great circles, calculate_coincident_arc_distances calculates the distances between Arc ends, zero if the Arcs overlap.

Otherwise use_antipodal_point determines which intersection point is closer to the centroid of the Arcs midpoints. calculate_intersection_distances then calculates great-circle distances along the Arcs to the intersection point.

Functions§