#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Orbiter {
pub name: &'static str,
pub altitude_km: f64,
pub inclination_deg: f64,
}
pub fn juice() -> Orbiter {
Orbiter {
name: "JUICE",
altitude_km: 500.0,
inclination_deg: 0.0,
}
}
pub fn ganymede_orbiter_concept() -> Orbiter {
Orbiter {
name: "Ganymede Orbiter",
altitude_km: 200.0,
inclination_deg: 5.0,
}
}