wmm

ci license version

Low footprint no_std World Magnetic Model (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.

Example

``` 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
)

} ```

Minimum Supported rustc Version

This crate's minimum supported rustc version is 1.35.0.

Credits

The C code this library refences originates from WMM_Tiny.

The WMM is a NOAA effort which is part of the US Government.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.