Last active
August 17, 2016 18:53
-
-
Save ch7ck/ca196f6b666e08626f6bda9050ef7d08 to your computer and use it in GitHub Desktop.
US + CA
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
US_states = { | |
'AK': 'Alaska', | |
'AL': 'Alabama', | |
'AR': 'Arkansas', | |
'AS': 'American Samoa', | |
'AZ': 'Arizona', | |
'CA': 'California', | |
'CO': 'Colorado', | |
'CT': 'Connecticut', | |
'DC': 'District of Columbia', | |
'DE': 'Delaware', | |
'FL': 'Florida', | |
'GA': 'Georgia', | |
'GU': 'Guam', | |
'HI': 'Hawaii', | |
'IA': 'Iowa', | |
'ID': 'Idaho', | |
'IL': 'Illinois', | |
'IN': 'Indiana', | |
'KS': 'Kansas', | |
'KY': 'Kentucky', | |
'LA': 'Louisiana', | |
'MA': 'Massachusetts', | |
'MD': 'Maryland', | |
'ME': 'Maine', | |
'MI': 'Michigan', | |
'MN': 'Minnesota', | |
'MO': 'Missouri', | |
'MP': 'Northern Mariana Islands', | |
'MS': 'Mississippi', | |
'MT': 'Montana', | |
'NA': 'National', | |
'NC': 'North Carolina', | |
'ND': 'North Dakota', | |
'NE': 'Nebraska', | |
'NH': 'New Hampshire', | |
'NJ': 'New Jersey', | |
'NM': 'New Mexico', | |
'NV': 'Nevada', | |
'NY': 'New York', | |
'OH': 'Ohio', | |
'OK': 'Oklahoma', | |
'OR': 'Oregon', | |
'PA': 'Pennsylvania', | |
'PR': 'Puerto Rico', | |
'RI': 'Rhode Island', | |
'SC': 'South Carolina', | |
'SD': 'South Dakota', | |
'TN': 'Tennessee', | |
'TX': 'Texas', | |
'UT': 'Utah', | |
'VA': 'Virginia', | |
'VI': 'Virgin Islands', | |
'VT': 'Vermont', | |
'WA': 'Washington', | |
'WI': 'Wisconsin', | |
'WV': 'West Virginia', | |
'WY': 'Wyoming' | |
} | |
CA_prov_terr = { | |
'AB': 'Alberta', | |
'BC': 'British Columbia', | |
'MB': 'Manitoba', | |
'NB': 'New Brunswick', | |
'NL': 'Newfoundland and Labrador', | |
'NT': 'Northwest Territories', | |
'NS': 'Nova Scotia', | |
'NU': 'Nunavut', | |
'ON': 'Ontario', | |
'PE': 'Prince Edward Island', | |
'QC': 'Quebec', | |
'SK': 'Saskatchewan', | |
'YT': 'Yukon' | |
} | |
CA_provinces = { | |
'AB': 'Alberta', | |
'BC': 'British Columbia', | |
'MB': 'Manitoba', | |
'NB': 'New Brunswick', | |
'NL': 'Newfoundland and Labrador', | |
'NS': 'Nova Scotia', | |
'ON': 'Ontario', | |
'PE': 'Prince Edward Island', | |
'QC': 'Quebec', | |
'SK': 'Saskatchewan' | |
} | |
CA_territories = { | |
'NT': 'Northwest Territories', | |
'NU': 'Nunavut', | |
'YT': 'Yukon' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment