Low footprint no_std WMM library used to calculate the magnetic declination at sea level.
It's important to note that the current model is valid from 2020 until 2025.
``` use time::OffsetDateTime; use wmm::declination;
fn main() { let date = OffsetDateTime::now_utc().date(); let lat = 29.7363025; let lon = -93.8827939; let dec = declination(date, lat, lon).unwrap();
println!(
"Today's declination for coordinates {},{} is {}°",
lat, lon, dec
)
} ```
The C code this lirary refences originates from WMM_Tiny.
The WMM is a NOAA effort which is part of the US Government.
Licensed under either of
at your option.