tritons 0.0.3

Triton celestial simulation crate for the MilkyWay SolarSystem workspace
Documentation
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct LandingSite {
    pub name: &'static str,
    pub latitude_deg: f64,
    pub longitude_deg: f64,
    pub mission_year: u16,
}

pub fn primary_site() -> LandingSite {
    LandingSite {
        name: "Cantaloupe Terrain",
        latitude_deg: -20.0,
        longitude_deg: 30.0,
        mission_year: 2070,
    }
}

pub fn secondary_site() -> LandingSite {
    LandingSite {
        name: "Monad Regio",
        latitude_deg: 20.0,
        longitude_deg: 320.0,
        mission_year: 2075,
    }
}