jannikmi / timezonefinder

python package for finding the timezone of any point on earth (coordinates) offline

Home Page:https://timezonefinder.michelfe.it/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

timezonefinder

image

documentation status

image

pre-commit

total PyPI downloads

latest version on PyPI

latest version on conda-forge

image

This is a python package for looking up the corresponding timezone for given coordinates on earth entirely offline.

Quick Guide:

pip install timezonefinder
from timezonefinder import TimezoneFinder

tf = TimezoneFinder()  # reuse

query_points = [(13.358, 52.5061), ...]
for lng, lat in query_points:
    tz = tf.timezone_at(lng=lng, lat=lat)  # 'Europe/Berlin'

For more refer to the Documentation.

Also check:

PyPI

online GUI and API

conda-forge feedstock

ruby port: timezone_finder

download stats

About

python package for finding the timezone of any point on earth (coordinates) offline

https://timezonefinder.michelfe.it/

License:MIT License


Languages

Language:Python 94.8%Language:C 2.0%Language:Shell 1.7%Language:Makefile 1.5%