Get A Location's Timezone From It's Latitude And Longitude In Rust
January 2025
```cargo
lazy_static = "1.5.0"
tzf-rs = "0.4.9"
```
use lazy_static;
use DefaultFinder;
lazy_static!
Output:
"Asia/Shanghai"
["Asia/Shanghai"]
"America/New_York"
Notes
-
The values are backwards from how I normally see them (e.g.
-81.655647, 30.33instead of30.33, -81.655647)
end of line