navigo 0.1.0

Simply manipulate GPS/geospatial data in Rust — distances, elevation, simplification, climb detection.
Documentation
1
2
3
4
5
6
7
#[derive(Debug, Clone, PartialEq)]
pub struct Area {
    pub min_longitude: f64,
    pub max_longitude: f64,
    pub min_latitude: f64,
    pub max_latitude: f64,
}