ioss 0.0.3

Io 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 loki_patera() -> LandingSite {
    LandingSite {
        name: "Loki Patera",
        latitude_deg: 12.6,
        longitude_deg: 309.8,
        mission_year: 2055,
    }
}

pub fn pele() -> LandingSite {
    LandingSite {
        name: "Pele",
        latitude_deg: -18.7,
        longitude_deg: 255.4,
        mission_year: 2060,
    }
}