callistos 0.0.1

Callisto 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 valhalla_center() -> LandingSite {
    LandingSite {
        name: "Valhalla Center",
        latitude_deg: 16.0,
        longitude_deg: -57.0,
        mission_year: 2040,
    }
}

pub fn asgard_rim() -> LandingSite {
    LandingSite {
        name: "Asgard Rim",
        latitude_deg: -26.0,
        longitude_deg: 140.0,
        mission_year: 2045,
    }
}