1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
pub fn has_oceans() -> bool { false } pub fn bathymetry(lat: f64, lon: f64) -> f64 { if lat.is_finite() && lon.is_finite() { 0.0 } else { f64::NAN } } pub fn max_depth() -> f64 { 0.0 } pub fn ocean_fraction() -> f64 { 0.0 }