Last active
August 29, 2015 14:21
-
-
Save alexprengere/7a8a35c691fad5f170d8 to your computer and use it in GitHub Desktop.
Fix ori_por timezones
This file contains 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from GeoBases import GeoBase | |
import pytz | |
def pors_with_unk_tz(db_oripor): | |
for p in db_oripor: | |
p_tz = db_oripor.get(p, 'timezone') | |
p_iata = db_oripor.get(p, 'iata_code') | |
p_geocode = db_oripor.getLocation(p) | |
try: | |
p_city = db_oripor.get(p, 'city_name_list')[0] | |
except IndexError: | |
p_city = None | |
try: | |
pytz.timezone(p_tz) | |
except pytz.exceptions.UnknownTimeZoneError: | |
yield p, p_tz, p_iata, p_city, p_geocode | |
def main(): | |
db_oripor = GeoBase('ori_por', verbose=False) | |
db_geonames = GeoBase('cities', verbose=False) | |
with open('tz_fixes.csv', 'w') as out: | |
for p, p_tz, p_iata, p_city, p_geocode in pors_with_unk_tz(db_oripor): | |
if p_geocode is None: | |
print '! Could not find geocode for {0}'.format(p) | |
continue | |
# Closest match in GeoNames | |
dist, id_ = db_geonames.findClosestFromPoint(p_geocode).next() | |
g_city = db_geonames.get(id_, 'name') | |
g_tz = db_geonames.get(id_, 'timezone') | |
out.write('{0},{1},{2},{3:.2f}\n'.format(p_iata, p_tz, g_tz, dist)) | |
print ('{0} with tz "{1}" matches tz "{2}" ' | |
'(dist {3:.1f}km, "{4}" -> "{5}")').format( | |
p_iata, p_tz, g_tz, dist, p_city, g_city) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment