-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
17 changed files
with
1,147 additions
and
973 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,108 +1,109 @@ | ||
"""List of 2-digit state codes with commented full names.""" | ||
|
||
state_codes = { | ||
"Alabama": "al", | ||
"Alaska": "ak", | ||
"Arizona": "az", | ||
"Arkansas": "ar", | ||
"California": "ca", | ||
"Colorado": "co", | ||
"Connecticut": "ct", | ||
"Delaware": "de", | ||
"Alabama": "al", | ||
"Alaska": "ak", | ||
"Arizona": "az", | ||
"Arkansas": "ar", | ||
"California": "ca", | ||
"Colorado": "co", | ||
"Connecticut": "ct", | ||
"Delaware": "de", | ||
"District of Columbia": "dc", | ||
"Florida": "fl", | ||
"Georgia": "ga", | ||
"Hawaii": "hi", | ||
"Idaho": "id", | ||
"Illinois": "il", | ||
"Indiana": "in", | ||
"Iowa": "ia", | ||
"Kansas": "ks", | ||
"Kentucky": "ky", | ||
"Louisiana": "la", | ||
"Maine": "me", | ||
"Maryland": "md", | ||
"Massachusetts": "ma", | ||
"Michigan": "mi", | ||
"Minnesota": "mn", | ||
"Mississippi": "ms", | ||
"Missouri": "mo", | ||
"Montana": "mt", | ||
"Nebraska": "ne", | ||
"Nevada": "nv", | ||
"New Hampshire": "nh", | ||
"New Jersey": "nj", | ||
"New Mexico": "nm", | ||
"New York": "ny", | ||
"North Carolina": "nc", | ||
"North Dakota": "nd", | ||
"Ohio": "oh", | ||
"Oklahoma": "ok", | ||
"Oregon": "or", | ||
"Pennsylvania": "pa", | ||
"Rhode Island": "ri", | ||
"South Carolina": "sc", | ||
"South Dakota": "sd", | ||
"Tennessee": "tn", | ||
"Texas": "tx", | ||
"Utah": "ut", | ||
"Vermont": "vt", | ||
"Virginia": "va", | ||
"Washington": "wa", | ||
"West Virginia": "wv", | ||
"Wisconsin": "wi", | ||
"Wyoming": "wy", | ||
"Florida": "fl", | ||
"Georgia": "ga", | ||
"Hawaii": "hi", | ||
"Idaho": "id", | ||
"Illinois": "il", | ||
"Indiana": "in", | ||
"Iowa": "ia", | ||
"Kansas": "ks", | ||
"Kentucky": "ky", | ||
"Louisiana": "la", | ||
"Maine": "me", | ||
"Maryland": "md", | ||
"Massachusetts": "ma", | ||
"Michigan": "mi", | ||
"Minnesota": "mn", | ||
"Mississippi": "ms", | ||
"Missouri": "mo", | ||
"Montana": "mt", | ||
"Nebraska": "ne", | ||
"Nevada": "nv", | ||
"New Hampshire": "nh", | ||
"New Jersey": "nj", | ||
"New Mexico": "nm", | ||
"New York": "ny", | ||
"North Carolina": "nc", | ||
"North Dakota": "nd", | ||
"Ohio": "oh", | ||
"Oklahoma": "ok", | ||
"Oregon": "or", | ||
"Pennsylvania": "pa", | ||
"Rhode Island": "ri", | ||
"South Carolina": "sc", | ||
"South Dakota": "sd", | ||
"Tennessee": "tn", | ||
"Texas": "tx", | ||
"Utah": "ut", | ||
"Vermont": "vt", | ||
"Virginia": "va", | ||
"Washington": "wa", | ||
"West Virginia": "wv", | ||
"Wisconsin": "wi", | ||
"Wyoming": "wy", | ||
} | ||
|
||
fips_codes = { | ||
"Alabama": "01", | ||
"Alaska": "02", | ||
"Arizona": "04", | ||
"Arkansas": "05", | ||
"California": "06", | ||
"Colorado": "08", | ||
"Connecticut": "09", | ||
"Delaware": "10", | ||
"Alabama": "01", | ||
"Alaska": "02", | ||
"Arizona": "04", | ||
"Arkansas": "05", | ||
"California": "06", | ||
"Colorado": "08", | ||
"Connecticut": "09", | ||
"Delaware": "10", | ||
"District of Columbia": "11", | ||
"Florida": "12", | ||
"Georgia": "13", | ||
"Hawaii": "15", | ||
"Idaho": "16", | ||
"Illinois": "17", | ||
"Indiana": "18", | ||
"Iowa": "19", | ||
"Kansas": "20", | ||
"Kentucky": "21", | ||
"Louisiana": "22", | ||
"Maine": "23", | ||
"Maryland": "24", | ||
"Massachusetts": "25", | ||
"Michigan": "26", | ||
"Minnesota": "27", | ||
"Mississippi": "28", | ||
"Missouri": "29", | ||
"Montana": "30", | ||
"Nebraska": "31", | ||
"Nevada": "32", | ||
"New Hampshire": "33", | ||
"New Jersey": "34", | ||
"New Mexico": "35", | ||
"New York": "36", | ||
"North Carolina": "37", | ||
"North Dakota": "38", | ||
"Ohio": "39", | ||
"Oklahoma": "40", | ||
"Oregon": "41", | ||
"Pennsylvania": "42", | ||
"Rhode Island": "44", | ||
"South Carolina": "45", | ||
"South Dakota": "46", | ||
"Tennessee": "47", | ||
"Texas": "48", | ||
"Utah": "49", | ||
"Vermont": "50", | ||
"Virginia": "51", | ||
"Washington": "53", | ||
"West Virginia": "54", | ||
"Wisconsin": "55", | ||
"Wyoming": "56", | ||
"Florida": "12", | ||
"Georgia": "13", | ||
"Hawaii": "15", | ||
"Idaho": "16", | ||
"Illinois": "17", | ||
"Indiana": "18", | ||
"Iowa": "19", | ||
"Kansas": "20", | ||
"Kentucky": "21", | ||
"Louisiana": "22", | ||
"Maine": "23", | ||
"Maryland": "24", | ||
"Massachusetts": "25", | ||
"Michigan": "26", | ||
"Minnesota": "27", | ||
"Mississippi": "28", | ||
"Missouri": "29", | ||
"Montana": "30", | ||
"Nebraska": "31", | ||
"Nevada": "32", | ||
"New Hampshire": "33", | ||
"New Jersey": "34", | ||
"New Mexico": "35", | ||
"New York": "36", | ||
"North Carolina": "37", | ||
"North Dakota": "38", | ||
"Ohio": "39", | ||
"Oklahoma": "40", | ||
"Oregon": "41", | ||
"Pennsylvania": "42", | ||
"Rhode Island": "44", | ||
"South Carolina": "45", | ||
"South Dakota": "46", | ||
"Tennessee": "47", | ||
"Texas": "48", | ||
"Utah": "49", | ||
"Vermont": "50", | ||
"Virginia": "51", | ||
"Washington": "53", | ||
"West Virginia": "54", | ||
"Wisconsin": "55", | ||
"Wyoming": "56", | ||
} |
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
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
Oops, something went wrong.