phoboss 0.0.3

Phobos 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: "Stickney Crater",
        latitude_deg: -1.0,
        longitude_deg: 49.0,
        mission_year: 2035,
    }
}

pub fn secondary_site() -> LandingSite {
    LandingSite {
        name: "Limtoc Crater",
        latitude_deg: 13.0,
        longitude_deg: 326.0,
        mission_year: 2040,
    }
}