You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
Right now, it's only possible to look up timezones for point locations.
It would be nice to be able to look up timezones for a rectangular area (e.g. a bounding box/quadrangle). I could see three possible interfaces for this:
If the area is completely contained within a single timezone, return that timezone; if not, return "Etc/UTC".
If the area is completely contained within a single timezone, return that timezone; if not, return whichever timezone has the most coverage within the area.
Always return an array of all timezones covered by the location. (In the case of a point, this will always be a list of length 1; in the case of an area, the array will be of length >= 1.) If we want to be really nice, this list could be sorted by amount of coverage within an area.
The text was updated successfully, but these errors were encountered:
Right now, it's only possible to look up timezones for point locations.
It would be nice to be able to look up timezones for a rectangular area (e.g. a bounding box/quadrangle). I could see three possible interfaces for this:
The text was updated successfully, but these errors were encountered: