geometry-strategy 0.0.3

Pluggable per-coordinate-system strategies (Pythagoras, Haversine, Vincenty, …).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Strategies bound to the Spherical coordinate-system family.
//!
//! Mirrors `boost/geometry/strategies/spherical/` — the directory of
//! Boost strategy headers keyed on `spherical_equatorial_tag`. T40
//! lands the first member, [`distance_haversine`]; later tasks add
//! point-to-segment / side / intersection kernels on the sphere.

pub mod area;
pub mod azimuth;
pub mod distance_haversine;
pub mod length;

pub use area::{SphericalArea, SphericalPolygonArea};
pub use azimuth::SphericalAzimuth;
pub use distance_haversine::{ComparableHaversine, Haversine};
pub use length::{SphericalLength, SphericalPerimeter};