titanss 0.0.1

Titan 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: "Kraken Mare",
        latitude_deg: 68.0,
        longitude_deg: 310.0,
        mission_year: 2050,
    }
}

pub fn secondary_site() -> LandingSite {
    LandingSite {
        name: "Shangri-La Dune Field",
        latitude_deg: -10.0,
        longitude_deg: 165.0,
        mission_year: 2055,
    }
}