fn main() {
let eclipse = ioss::lighting::eclipses::typical_io_eclipse();
println!(
"Totality: {:.1} minutes",
eclipse.totality_duration_minutes()
);
println!(
"Solar elevation at noon: {:.1} deg",
ioss::lighting::solar_position::solar_elevation_deg(0.0, 21.0)
);
println!(
"Jupitershine: {:.2} lux",
ioss::lighting::jupitershine::jupitershine_irradiance_lux(0.7)
);
}