2 releases

Uses old Rust 2015

0.1.1 Apr 24, 2015
0.1.0 Apr 9, 2015

#31 in #latitude-longitude

Download history 73/week @ 2024-11-16 67/week @ 2024-11-23 84/week @ 2024-11-30 79/week @ 2024-12-07 125/week @ 2024-12-14 35/week @ 2024-12-21 20/week @ 2024-12-28 41/week @ 2025-01-04 64/week @ 2025-01-11 47/week @ 2025-01-18 64/week @ 2025-01-25 96/week @ 2025-02-01 75/week @ 2025-02-08 65/week @ 2025-02-15 121/week @ 2025-02-22 113/week @ 2025-03-01

403 downloads per month

Apache-2.0

290KB
234 lines

tz-search

Build Status

Map a latitude/longitude point to the timezone it lies in.

This is a direct port of bradfitz/latlong.

Documentation, crates.io.


lib.rs:

Compute timezones of points on the Earth.

This is a direct port of bradfitz/latlong, and hence the same bonuses/caveats apply:

It tries to have a small binary size (~360 KB), low memory footprint (~1 MB), and incredibly fast lookups (~0.5 microseconds). It does not try to be perfectly accurate when very close to borders.

Source.

Installation

Add the following to your Cargo.toml:

[dependencies]
tz-search = "0.1"

Examples

assert_eq!(tz_search::lookup(-33.79, 151.17).unwrap(),
           "Australia/Sydney");

// in the ocean
assert_eq!(tz_search::lookup(0.0, 0.0), None);

Dependencies

~1–1.3MB
~26K SLoC