Find the TimeZone
for a place on Earth specified by latitude
and longitude
.
] add TimeZoneFinder
julia> timezone_at(52.5061, 13.358)
Europe/Berlin (UTC+1/UTC+2)
If the location is at sea, TimeZoneFinder
will return legacy TimeZone
instances:
julia> timezone_at(50.5, 1.0)
Etc/GMT (UTC+0)
Please see the documentation for further details.
- The underlying data is sourced from timezone-boundary-builder, and used under the Open Data Commons Open Database License (ODbL).
- The locations used in the tests are duplicated from timezonefinder, used under the MIT license.