Flinn-Engdahl Seismic And Geographic Regionalization - Rust Implementation
Converts a (latitude, longitude) location into a named region of the world
Add this to your Cargo.toml
:
toml
[dependencies]
flinn_engdahl = "0.1.0"
rust
use flinn_engdahl as fe;
let name = fe::region(-77.845753, 166.675927).unwrap();
assert_eq!(name, "VICTORIA LAND, ANTARCTICA");
The BSD 2-Clause License. The original regionalization contained no license and was published in peer-reviewed journals.