pub struct PolarCap {
pub name: &'static str,
pub water_ice_volume_km3: f64,
}
pub fn north_polar_cap() -> PolarCap {
PolarCap {
name: "North",
water_ice_volume_km3: 0.0,
}
}
pub fn south_polar_cap() -> PolarCap {
PolarCap {
name: "South",
water_ice_volume_km3: 0.0,
}
}
pub fn total_polar_water_gel_m() -> f64 {
0.0
}