In [ ]:


In [1]:
# Read in the county numbers file.
import json, ast
with open('data/counties.json', 'rb') as counties_file:
    number_to_county = ast.literal_eval(counties_file.read())
county_to_number = {v:k for k,v in number_to_county.iteritems()}

In [ ]:


In [ ]: