europas 0.0.3

Europa 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 thera_macula() -> LandingSite {
    LandingSite {
        name: "Thera Macula",
        latitude_deg: -47.0,
        longitude_deg: 180.0,
        mission_year: 2045,
    }
}

pub fn conamara_chaos() -> LandingSite {
    LandingSite {
        name: "Conamara Chaos",
        latitude_deg: 9.0,
        longitude_deg: 273.0,
        mission_year: 2050,
    }
}