This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a database of zipcodes and their time zones | |
# by Peter Hurford <http://www.peterhurford.com> | |
# Coded in an array as zitpime[<zip code>] = [<time offset from UTC>, <DST yes (1) or no (0)>] | |
# Daylight Savings is March 9 to November 2 | |
# Data retrieved from http://www.boutell.com/zipcodes/ (CSV and SQL available), which in turn retrieved data from the CivicSpace US ZIP Code Database. | |
# Here, I used Regex to sort the data into a Ruby hash. | |
# You are free to use this array for your own purposes, just provide attribution. |
NewerOlder