zipcode-features 0.1.4__py3-none-any.whl → 0.1.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- zipcode_features/__init__.py +2 -2
- zipcode_features/data/cbsa_codes.json +935 -268
- {zipcode_features-0.1.4.dist-info → zipcode_features-0.1.5.dist-info}/METADATA +1 -1
- {zipcode_features-0.1.4.dist-info → zipcode_features-0.1.5.dist-info}/RECORD +6 -6
- {zipcode_features-0.1.4.dist-info → zipcode_features-0.1.5.dist-info}/WHEEL +0 -0
- {zipcode_features-0.1.4.dist-info → zipcode_features-0.1.5.dist-info}/licenses/LICENSE +0 -0
zipcode_features/__init__.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = '0.1.
|
|
1
|
+
__version__ = '0.1.5'
|
|
2
2
|
|
|
3
3
|
import zipcodes
|
|
4
4
|
from zipcode3.search import SearchEngine
|
|
@@ -187,7 +187,7 @@ def _get_cbsa_code_to_cbsa_name() -> dict:
|
|
|
187
187
|
df = pd.DataFrame(columns=["code", "name"])
|
|
188
188
|
df["name"] = code_to_name.values()
|
|
189
189
|
df["code"] = code_to_name.keys()
|
|
190
|
-
df["name"] = df["name"].str.replace(" -", "-")
|
|
190
|
+
df["name"] = df["name"].str.replace(" -", "-").replace("- ", "-")
|
|
191
191
|
df["name"] = df["name"].str.split().str.join(' ')
|
|
192
192
|
code_to_name = df.set_index('code')['name'].to_dict()
|
|
193
193
|
return partial(map_cbsa_code_to_name, code_to_name)
|
|
@@ -1,270 +1,937 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
2
|
+
"10100": "Aberdeen, SD",
|
|
3
|
+
"10140": "Aberdeen, WA",
|
|
4
|
+
"10180": "Abilene, TX",
|
|
5
|
+
"10220": "Ada, OK",
|
|
6
|
+
"10300": "Adrian, MI",
|
|
7
|
+
"10380": "Aguadilla, PR",
|
|
8
|
+
"10420": "Akron, OH",
|
|
9
|
+
"10460": "Alamogordo, NM",
|
|
10
|
+
"10480": "Alamosa, CO",
|
|
11
|
+
"10500": "Albany, GA",
|
|
12
|
+
"10540": "Albany, OR",
|
|
13
|
+
"10580": "Albany-Schenectady-Troy, NY",
|
|
14
|
+
"10620": "Albemarle, NC",
|
|
15
|
+
"10660": "Albert Lea, MN",
|
|
16
|
+
"10700": "Albertville, AL",
|
|
17
|
+
"10740": "Albuquerque, NM",
|
|
18
|
+
"10760": "Alexander City, AL",
|
|
19
|
+
"10780": "Alexandria, LA",
|
|
20
|
+
"10820": "Alexandria, MN",
|
|
21
|
+
"10860": "Alice, TX",
|
|
22
|
+
"10900": "Allentown-Bethlehem-Easton, PA-NJ",
|
|
23
|
+
"10940": "Alma, MI",
|
|
24
|
+
"10980": "Alpena, MI",
|
|
25
|
+
"11020": "Altoona, PA",
|
|
26
|
+
"11060": "Altus, OK",
|
|
27
|
+
"11100": "Amarillo, TX",
|
|
28
|
+
"11140": "Americus, GA",
|
|
29
|
+
"11180": "Ames, IA",
|
|
30
|
+
"11200": "Amherst Town-Northampton, MA",
|
|
31
|
+
"11220": "Amsterdam, NY",
|
|
32
|
+
"11260": "Anchorage, AK",
|
|
33
|
+
"11360": "Anderson Creek, NC",
|
|
34
|
+
"11380": "Andrews, TX",
|
|
35
|
+
"11420": "Angola, IN",
|
|
36
|
+
"11460": "Ann Arbor, MI",
|
|
37
|
+
"11500": "Anniston-Oxford, AL",
|
|
38
|
+
"11540": "Appleton, WI",
|
|
39
|
+
"11580": "Arcadia, FL",
|
|
40
|
+
"11620": "Ardmore, OK",
|
|
41
|
+
"11640": "Arecibo, PR",
|
|
42
|
+
"11660": "Arkadelphia, AR",
|
|
43
|
+
"11680": "Arkansas City-Winfield, KS",
|
|
44
|
+
"11700": "Asheville, NC",
|
|
45
|
+
"11740": "Ashland, OH",
|
|
46
|
+
"11820": "Astoria, OR",
|
|
47
|
+
"11860": "Atchison, KS",
|
|
48
|
+
"11900": "Athens, OH",
|
|
49
|
+
"11940": "Athens, TN",
|
|
50
|
+
"11980": "Athens, TX",
|
|
51
|
+
"12020": "Athens-Clarke County, GA",
|
|
52
|
+
"12060": "Atlanta-Sandy Springs-Roswell, GA",
|
|
53
|
+
"12100": "Atlantic City-Hammonton, NJ",
|
|
54
|
+
"12140": "Auburn, IN",
|
|
55
|
+
"12180": "Auburn, NY",
|
|
56
|
+
"12220": "Auburn-Opelika, AL",
|
|
57
|
+
"12260": "Augusta-Richmond County, GA-SC",
|
|
58
|
+
"12300": "Augusta-Waterville, ME",
|
|
59
|
+
"12380": "Austin, MN",
|
|
60
|
+
"12420": "Austin-Round Rock-San Marcos, TX",
|
|
61
|
+
"12460": "Bainbridge, GA",
|
|
62
|
+
"12520": "Baker City, OR",
|
|
63
|
+
"12540": "Bakersfield-Delano, CA",
|
|
64
|
+
"12580": "Baltimore-Columbia-Towson, MD",
|
|
65
|
+
"12620": "Bangor, ME",
|
|
66
|
+
"12660": "Baraboo, WI",
|
|
67
|
+
"12700": "Barnstable Town, MA",
|
|
68
|
+
"12740": "Barre, VT",
|
|
69
|
+
"12780": "Bartlesville, OK",
|
|
70
|
+
"12860": "Batavia, NY",
|
|
71
|
+
"12900": "Batesville, AR",
|
|
72
|
+
"12940": "Baton Rouge, LA",
|
|
73
|
+
"12980": "Battle Creek, MI",
|
|
74
|
+
"13020": "Bay City, MI",
|
|
75
|
+
"13060": "Bay City, TX",
|
|
76
|
+
"13100": "Beatrice, NE",
|
|
77
|
+
"13140": "Beaumont-Port Arthur, TX",
|
|
78
|
+
"13180": "Beaver Dam, WI",
|
|
79
|
+
"13220": "Beckley, WV",
|
|
80
|
+
"13260": "Bedford, IN",
|
|
81
|
+
"13300": "Beeville, TX",
|
|
82
|
+
"13340": "Bellefontaine, OH",
|
|
83
|
+
"13380": "Bellingham, WA",
|
|
84
|
+
"13420": "Bemidji, MN",
|
|
85
|
+
"13460": "Bend, OR",
|
|
86
|
+
"13540": "Bennington, VT",
|
|
87
|
+
"13660": "Big Rapids, MI",
|
|
88
|
+
"13700": "Big Spring, TX",
|
|
89
|
+
"13740": "Billings, MT",
|
|
90
|
+
"13780": "Binghamton, NY",
|
|
91
|
+
"13820": "Birmingham, AL",
|
|
92
|
+
"13860": "Bishop, CA",
|
|
93
|
+
"13900": "Bismarck, ND",
|
|
94
|
+
"13940": "Blackfoot, ID",
|
|
95
|
+
"13980": "Blacksburg-Christiansburg-Radford, VA",
|
|
96
|
+
"14010": "Bloomington, IL",
|
|
97
|
+
"14020": "Bloomington, IN",
|
|
98
|
+
"14100": "Bloomsburg-Berwick, PA",
|
|
99
|
+
"14140": "Bluefield, WV-VA",
|
|
100
|
+
"14180": "Blytheville, AR",
|
|
101
|
+
"14220": "Bogalusa, LA",
|
|
102
|
+
"14260": "Boise City, ID",
|
|
103
|
+
"14300": "Bonham, TX",
|
|
104
|
+
"14380": "Boone, NC",
|
|
105
|
+
"14420": "Borger, TX",
|
|
106
|
+
"14460": "Boston-Cambridge-Newton, MA-NH",
|
|
107
|
+
"14500": "Boulder, CO",
|
|
108
|
+
"14540": "Bowling Green, KY",
|
|
109
|
+
"14580": "Bozeman, MT",
|
|
110
|
+
"14620": "Bradford, PA",
|
|
111
|
+
"14660": "Brainerd, MN",
|
|
112
|
+
"14700": "Branson, MO",
|
|
113
|
+
"14710": "Brattleboro, VT",
|
|
114
|
+
"14720": "Breckenridge, CO",
|
|
115
|
+
"14740": "Bremerton-Silverdale-Port Orchard, WA",
|
|
116
|
+
"14780": "Brenham, TX",
|
|
117
|
+
"14820": "Brevard, NC",
|
|
118
|
+
"14860": "Bridgeport-Stamford-Danbury, CT",
|
|
119
|
+
"14940": "Brigham City, UT-ID",
|
|
120
|
+
"15020": "Brookhaven, MS",
|
|
121
|
+
"15060": "Brookings, OR",
|
|
122
|
+
"15100": "Brookings, SD",
|
|
123
|
+
"15180": "Brownsville-Harlingen, TX",
|
|
124
|
+
"15220": "Brownwood, TX",
|
|
125
|
+
"15260": "Brunswick-St. Simons, GA",
|
|
126
|
+
"15340": "Bucyrus, OH",
|
|
127
|
+
"15380": "Buffalo-Cheektowaga, NY",
|
|
128
|
+
"15420": "Burley, ID",
|
|
129
|
+
"15460": "Burlington, IA-IL",
|
|
130
|
+
"15500": "Burlington, NC",
|
|
131
|
+
"15540": "Burlington-South Burlington, VT",
|
|
132
|
+
"15580": "Butte-Silver Bow, MT",
|
|
133
|
+
"15620": "Cadillac, MI",
|
|
134
|
+
"15660": "Calhoun, GA",
|
|
135
|
+
"15700": "Cambridge, MD",
|
|
136
|
+
"15740": "Cambridge, OH",
|
|
137
|
+
"15780": "Camden, AR",
|
|
138
|
+
"15820": "Campbellsville, KY",
|
|
139
|
+
"15860": "Cañon City, CO",
|
|
140
|
+
"15900": "Canton, IL",
|
|
141
|
+
"15940": "Canton-Massillon, OH",
|
|
142
|
+
"15980": "Cape Coral-Fort Myers, FL",
|
|
143
|
+
"16020": "Cape Girardeau, MO-IL",
|
|
144
|
+
"16060": "Carbondale, IL",
|
|
145
|
+
"16100": "Carlsbad-Artesia, NM",
|
|
146
|
+
"16140": "Carroll, IA",
|
|
147
|
+
"16180": "Carson City, NV",
|
|
148
|
+
"16220": "Casper, WY",
|
|
149
|
+
"16260": "Cedar City, UT",
|
|
150
|
+
"16300": "Cedar Rapids, IA",
|
|
151
|
+
"16340": "Cedartown, GA",
|
|
152
|
+
"16380": "Celina, OH",
|
|
153
|
+
"16460": "Centralia, IL",
|
|
154
|
+
"16500": "Centralia, WA",
|
|
155
|
+
"16540": "Chambersburg, PA",
|
|
156
|
+
"16580": "Champaign-Urbana, IL",
|
|
157
|
+
"16620": "Charleston, WV",
|
|
158
|
+
"16660": "Charleston-Mattoon, IL",
|
|
159
|
+
"16700": "Charleston-North Charleston, SC",
|
|
160
|
+
"16740": "Charlotte-Concord-Gastonia, NC-SC",
|
|
161
|
+
"16820": "Charlottesville, VA",
|
|
162
|
+
"16860": "Chattanooga, TN-GA",
|
|
163
|
+
"16940": "Cheyenne, WY",
|
|
164
|
+
"16980": "Chicago-Naperville-Elgin, IL-IN",
|
|
165
|
+
"17020": "Chico, CA",
|
|
166
|
+
"17060": "Chillicothe, OH",
|
|
167
|
+
"17140": "Cincinnati, OH-KY-IN",
|
|
168
|
+
"17220": "Clarksburg, WV",
|
|
169
|
+
"17260": "Clarksdale, MS",
|
|
170
|
+
"17300": "Clarksville, TN-KY",
|
|
171
|
+
"17340": "Clearlake, CA",
|
|
172
|
+
"17380": "Cleveland, MS",
|
|
173
|
+
"17410": "Cleveland, OH",
|
|
174
|
+
"17420": "Cleveland, TN",
|
|
175
|
+
"17500": "Clewiston, FL",
|
|
176
|
+
"17540": "Clinton, IA",
|
|
177
|
+
"17580": "Clovis, NM",
|
|
178
|
+
"17620": "Coamo, PR",
|
|
179
|
+
"17640": "Coco, PR",
|
|
180
|
+
"17650": "Cody, WY",
|
|
181
|
+
"17660": "Coeur d'Alene, ID",
|
|
182
|
+
"17740": "Coldwater, MI",
|
|
183
|
+
"17780": "College Station-Bryan, TX",
|
|
184
|
+
"17820": "Colorado Springs, CO",
|
|
185
|
+
"17860": "Columbia, MO",
|
|
186
|
+
"17900": "Columbia, SC",
|
|
187
|
+
"17980": "Columbus, GA-AL",
|
|
188
|
+
"18020": "Columbus, IN",
|
|
189
|
+
"18060": "Columbus, MS",
|
|
190
|
+
"18100": "Columbus, NE",
|
|
191
|
+
"18140": "Columbus, OH",
|
|
192
|
+
"18180": "Concord, NH",
|
|
193
|
+
"18220": "Connersville, IN",
|
|
194
|
+
"18260": "Cookeville, TN",
|
|
195
|
+
"18300": "Coos Bay-North Bend, OR",
|
|
196
|
+
"18340": "Corbin, KY",
|
|
197
|
+
"18380": "Cordele, GA",
|
|
198
|
+
"18420": "Corinth, MS",
|
|
199
|
+
"18460": "Cornelia, GA",
|
|
200
|
+
"18500": "Corning, NY",
|
|
201
|
+
"18580": "Corpus Christi, TX",
|
|
202
|
+
"18620": "Corsicana, TX",
|
|
203
|
+
"18660": "Cortland, NY",
|
|
204
|
+
"18700": "Corvallis, OR",
|
|
205
|
+
"18740": "Coshocton, OH",
|
|
206
|
+
"18820": "Crawfordsville, IN",
|
|
207
|
+
"18860": "Crescent City, CA",
|
|
208
|
+
"18880": "Crestview-Fort Walton Beach-Destin, FL",
|
|
209
|
+
"18900": "Crossville, TN",
|
|
210
|
+
"18980": "Cullman, AL",
|
|
211
|
+
"19060": "Cumberland, MD-WV",
|
|
212
|
+
"19100": "Dallas-Fort Worth-Arlington, TX",
|
|
213
|
+
"19140": "Dalton, GA",
|
|
214
|
+
"19180": "Danville, IL",
|
|
215
|
+
"19220": "Danville, KY",
|
|
216
|
+
"19260": "Danville, VA",
|
|
217
|
+
"19300": "Daphne-Fairhope-Foley, AL",
|
|
218
|
+
"19340": "Davenport-Moline-Rock Island, IA-IL",
|
|
219
|
+
"19430": "Dayton-Kettering-Beavercreek, OH",
|
|
220
|
+
"19460": "Decatur, AL",
|
|
221
|
+
"19500": "Decatur, IL",
|
|
222
|
+
"19540": "Decatur, IN",
|
|
223
|
+
"19580": "Defiance, OH",
|
|
224
|
+
"19620": "Del Rio, TX",
|
|
225
|
+
"19660": "Deltona-Daytona Beach-Ormond Beach, FL",
|
|
226
|
+
"19700": "Deming, NM",
|
|
227
|
+
"19740": "Denver-Aurora-Centennial, CO",
|
|
228
|
+
"19760": "DeRidder, LA",
|
|
229
|
+
"19780": "Des Moines-West Des Moines, IA",
|
|
230
|
+
"19810": "Detroit Lakes, MN",
|
|
231
|
+
"19820": "Detroit-Warren-Dearborn, MI",
|
|
232
|
+
"19860": "Dickinson, ND",
|
|
233
|
+
"19940": "Dixon, IL",
|
|
234
|
+
"19980": "Dodge City, KS",
|
|
235
|
+
"20020": "Dothan, AL",
|
|
236
|
+
"20060": "Douglas, GA",
|
|
237
|
+
"20100": "Dover, DE",
|
|
238
|
+
"20140": "Dublin, GA",
|
|
239
|
+
"20180": "DuBois, PA",
|
|
240
|
+
"20220": "Dubuque, IA",
|
|
241
|
+
"20260": "Duluth, MN-WI",
|
|
242
|
+
"20300": "Dumas, TX",
|
|
243
|
+
"20340": "Duncan, OK",
|
|
244
|
+
"20420": "Durango, CO",
|
|
245
|
+
"20460": "Durant, OK",
|
|
246
|
+
"20500": "Durham-Chapel Hill, NC",
|
|
247
|
+
"20540": "Dyersburg, TN",
|
|
248
|
+
"20580": "Eagle Pass, TX",
|
|
249
|
+
"20660": "Easton, MD",
|
|
250
|
+
"20700": "East Stroudsburg, PA",
|
|
251
|
+
"20740": "Eau Claire, WI",
|
|
252
|
+
"20780": "Edwards, CO",
|
|
253
|
+
"20820": "Effingham, IL",
|
|
254
|
+
"20900": "El Campo, TX",
|
|
255
|
+
"20940": "El Centro, CA",
|
|
256
|
+
"20980": "El Dorado, AR",
|
|
257
|
+
"21020": "Elizabeth City, NC",
|
|
258
|
+
"21060": "Elizabethtown, KY",
|
|
259
|
+
"21120": "Elk City, OK",
|
|
260
|
+
"21140": "Elkhart-Goshen, IN",
|
|
261
|
+
"21180": "Elkins, WV",
|
|
262
|
+
"21220": "Elko, NV",
|
|
263
|
+
"21260": "Ellensburg, WA",
|
|
264
|
+
"21300": "Elmira, NY",
|
|
265
|
+
"21340": "El Paso, TX",
|
|
266
|
+
"21380": "Emporia, KS",
|
|
267
|
+
"21420": "Enid, OK",
|
|
268
|
+
"21460": "Enterprise, AL",
|
|
269
|
+
"21500": "Erie, PA",
|
|
270
|
+
"21540": "Escanaba, MI",
|
|
271
|
+
"21580": "Española, NM",
|
|
272
|
+
"21640": "Eufaula, AL-GA",
|
|
273
|
+
"21660": "Eugene-Springfield, OR",
|
|
274
|
+
"21700": "Eureka-Arcata, CA",
|
|
275
|
+
"21740": "Evanston, WY-UT",
|
|
276
|
+
"21780": "Evansville, IN",
|
|
277
|
+
"21820": "Fairbanks-College, AK",
|
|
278
|
+
"21860": "Fairmont, MN",
|
|
279
|
+
"21900": "Fairmont, WV",
|
|
280
|
+
"21980": "Fallon, NV",
|
|
281
|
+
"22020": "Fargo, ND-MN",
|
|
282
|
+
"22060": "Faribault-Northfield, MN",
|
|
283
|
+
"22100": "Farmington, MO",
|
|
284
|
+
"22140": "Farmington, NM",
|
|
285
|
+
"22180": "Fayetteville, NC",
|
|
286
|
+
"22190": "Fayetteville, TN",
|
|
287
|
+
"22220": "Fayetteville-Springdale-Rogers, AR",
|
|
288
|
+
"22260": "Fergus Falls, MN",
|
|
289
|
+
"22300": "Findlay, OH",
|
|
290
|
+
"22340": "Fitzgerald, GA",
|
|
291
|
+
"22380": "Flagstaff, AZ",
|
|
292
|
+
"22420": "Flint, MI",
|
|
293
|
+
"22500": "Florence, SC",
|
|
294
|
+
"22520": "Florence-Muscle Shoals, AL",
|
|
295
|
+
"22540": "Fond du Lac, WI",
|
|
296
|
+
"22580": "Forest City, NC",
|
|
297
|
+
"22620": "Forrest City, AR",
|
|
298
|
+
"22660": "Fort Collins-Loveland, CO",
|
|
299
|
+
"22700": "Fort Dodge, IA",
|
|
300
|
+
"22780": "Fort Leonard Wood, MO",
|
|
301
|
+
"22800": "Fort Madison, IA",
|
|
302
|
+
"22820": "Fort Morgan, CO",
|
|
303
|
+
"22840": "Fort Payne, AL",
|
|
304
|
+
"22900": "Fort Smith, AR-OK",
|
|
305
|
+
"23060": "Fort Wayne, IN",
|
|
306
|
+
"23140": "Frankfort, IN",
|
|
307
|
+
"23180": "Frankfort, KY",
|
|
308
|
+
"23190": "Franklin, KY",
|
|
309
|
+
"23240": "Fredericksburg, TX",
|
|
310
|
+
"23300": "Freeport, IL",
|
|
311
|
+
"23340": "Fremont, NE",
|
|
312
|
+
"23380": "Fremont, OH",
|
|
313
|
+
"23420": "Fresno, CA",
|
|
314
|
+
"23460": "Gadsden, AL",
|
|
315
|
+
"23500": "Gaffney, SC",
|
|
316
|
+
"23540": "Gainesville, FL",
|
|
317
|
+
"23580": "Gainesville, GA",
|
|
318
|
+
"23620": "Gainesville, TX",
|
|
319
|
+
"23660": "Galesburg, IL",
|
|
320
|
+
"23680": "Gallipolis, OH",
|
|
321
|
+
"23700": "Gallup, NM",
|
|
322
|
+
"23780": "Garden City, KS",
|
|
323
|
+
"23820": "Gardnerville Ranchos, NV-CA",
|
|
324
|
+
"23900": "Gettysburg, PA",
|
|
325
|
+
"23940": "Gillette, WY",
|
|
326
|
+
"23980": "Glasgow, KY",
|
|
327
|
+
"24020": "Glens Falls, NY",
|
|
328
|
+
"24100": "Gloversville, NY",
|
|
329
|
+
"24140": "Goldsboro, NC",
|
|
330
|
+
"24180": "Granbury, TX",
|
|
331
|
+
"24220": "Grand Forks, ND-MN",
|
|
332
|
+
"24260": "Grand Island, NE",
|
|
333
|
+
"24300": "Grand Junction, CO",
|
|
334
|
+
"24330": "Grand Rapids, MN",
|
|
335
|
+
"24340": "Grand Rapids-Wyoming-Kentwood, MI",
|
|
336
|
+
"24420": "Grants Pass, OR",
|
|
337
|
+
"24460": "Great Bend, KS",
|
|
338
|
+
"24500": "Great Falls, MT",
|
|
339
|
+
"24540": "Greeley, CO",
|
|
340
|
+
"24580": "Green Bay, WI",
|
|
341
|
+
"24600": "Greencastle, IN",
|
|
342
|
+
"24620": "Greeneville, TN",
|
|
343
|
+
"24640": "Greenfield, MA",
|
|
344
|
+
"24660": "Greensboro-High Point, NC",
|
|
345
|
+
"24700": "Greensburg, IN",
|
|
346
|
+
"24740": "Greenville, MS",
|
|
347
|
+
"24780": "Greenville, NC",
|
|
348
|
+
"24820": "Greenville, OH",
|
|
349
|
+
"24860": "Greenville-Anderson-Greer, SC",
|
|
350
|
+
"24900": "Greenwood, MS",
|
|
351
|
+
"24940": "Greenwood, SC",
|
|
352
|
+
"24980": "Grenada, MS",
|
|
353
|
+
"25020": "Guayama, PR",
|
|
354
|
+
"25060": "Gulfport-Biloxi, MS",
|
|
355
|
+
"25100": "Guymon, OK",
|
|
356
|
+
"25180": "Hagerstown-Martinsburg, MD-WV",
|
|
357
|
+
"25200": "Hailey, ID",
|
|
358
|
+
"25220": "Hammond, LA",
|
|
359
|
+
"25260": "Hanford-Corcoran, CA",
|
|
360
|
+
"25300": "Hannibal, MO",
|
|
361
|
+
"25420": "Harrisburg-Carlisle, PA",
|
|
362
|
+
"25460": "Harrison, AR",
|
|
363
|
+
"25500": "Harrisonburg, VA",
|
|
364
|
+
"25540": "Hartford-West Hartford-East Hartford, CT",
|
|
365
|
+
"25580": "Hastings, NE",
|
|
366
|
+
"25620": "Hattiesburg, MS",
|
|
367
|
+
"25700": "Hays, KS",
|
|
368
|
+
"25720": "Heber, UT",
|
|
369
|
+
"25740": "Helena, MT",
|
|
370
|
+
"25770": "Hemlock Farms, PA",
|
|
371
|
+
"25775": "Henderson, KY",
|
|
372
|
+
"25780": "Henderson, NC",
|
|
373
|
+
"25820": "Hereford, TX",
|
|
374
|
+
"25840": "Hermiston-Pendleton, OR",
|
|
375
|
+
"25850": "Hermitage, PA",
|
|
376
|
+
"25860": "Hickory-Lenoir-Morganton, NC",
|
|
377
|
+
"25880": "Hillsdale, MI",
|
|
378
|
+
"25900": "Hilo-Kailua, HI",
|
|
379
|
+
"25940": "Hilton Head Island-Bluffton-Port Royal, SC",
|
|
380
|
+
"25980": "Hinesville, GA",
|
|
381
|
+
"26020": "Hobbs, NM",
|
|
382
|
+
"26090": "Holland, MI",
|
|
383
|
+
"26140": "Homosassa Springs, FL",
|
|
384
|
+
"26220": "Hood River, OR",
|
|
385
|
+
"26300": "Hot Springs, AR",
|
|
386
|
+
"26340": "Houghton, MI",
|
|
387
|
+
"26380": "Houma-Bayou Cane-Thibodaux, LA",
|
|
388
|
+
"26420": "Houston-Pasadena-The Woodlands, TX",
|
|
389
|
+
"26460": "Hudson, NY",
|
|
390
|
+
"26500": "Huntingdon, PA",
|
|
391
|
+
"26540": "Huntington, IN",
|
|
392
|
+
"26580": "Huntington-Ashland, WV-KY-OH",
|
|
393
|
+
"26620": "Huntsville, AL",
|
|
394
|
+
"26660": "Huntsville, TX",
|
|
395
|
+
"26700": "Huron, SD",
|
|
396
|
+
"26740": "Hutchinson, KS",
|
|
397
|
+
"26780": "Hutchinson, MN",
|
|
398
|
+
"26820": "Idaho Falls, ID",
|
|
399
|
+
"26860": "Indiana, PA",
|
|
400
|
+
"26900": "Indianapolis-Carmel-Greenwood, IN",
|
|
401
|
+
"26980": "Iowa City, IA",
|
|
402
|
+
"27020": "Iron Mountain, MI-WI",
|
|
403
|
+
"27060": "Ithaca, NY",
|
|
404
|
+
"27100": "Jackson, MI",
|
|
405
|
+
"27140": "Jackson, MS",
|
|
406
|
+
"27180": "Jackson, TN",
|
|
407
|
+
"27220": "Jackson, WY-ID",
|
|
408
|
+
"27260": "Jacksonville, FL",
|
|
409
|
+
"27300": "Jacksonville, IL",
|
|
410
|
+
"27340": "Jacksonville, NC",
|
|
411
|
+
"27380": "Jacksonville, TX",
|
|
412
|
+
"27420": "Jamestown, ND",
|
|
413
|
+
"27460": "Jamestown-Dunkirk, NY",
|
|
414
|
+
"27500": "Janesville-Beloit, WI",
|
|
415
|
+
"27540": "Jasper, IN",
|
|
416
|
+
"27600": "Jefferson, GA",
|
|
417
|
+
"27620": "Jefferson City, MO",
|
|
418
|
+
"27700": "Jesup, GA",
|
|
419
|
+
"27740": "Johnson City, TN",
|
|
420
|
+
"27780": "Johnstown, PA",
|
|
421
|
+
"27860": "Jonesboro, AR",
|
|
422
|
+
"27900": "Joplin, MO-KS",
|
|
423
|
+
"27940": "Juneau, AK",
|
|
424
|
+
"27980": "Kahului-Wailuku, HI",
|
|
425
|
+
"28020": "Kalamazoo-Portage, MI",
|
|
426
|
+
"28060": "Kalispell, MT",
|
|
427
|
+
"28100": "Kankakee, IL",
|
|
428
|
+
"28140": "Kansas City, MO-KS",
|
|
429
|
+
"28180": "Kapaa, HI",
|
|
430
|
+
"28260": "Kearney, NE",
|
|
431
|
+
"28300": "Keene, NH",
|
|
432
|
+
"28340": "Kendallville, IN",
|
|
433
|
+
"28380": "Kennett, MO",
|
|
434
|
+
"28420": "Kennewick-Richland, WA",
|
|
435
|
+
"28450": "Kenosha, WI",
|
|
436
|
+
"28500": "Kerrville, TX",
|
|
437
|
+
"28540": "Ketchikan, AK",
|
|
438
|
+
"28580": "Key West-Key Largo, FL",
|
|
439
|
+
"28620": "Kill Devil Hills, NC",
|
|
440
|
+
"28660": "Killeen-Temple, TX",
|
|
441
|
+
"28680": "Kingsland, GA",
|
|
442
|
+
"28700": "Kingsport-Bristol, TN-VA",
|
|
443
|
+
"28740": "Kingston, NY",
|
|
444
|
+
"28780": "Kingsville, TX",
|
|
445
|
+
"28820": "Kinston, NC",
|
|
446
|
+
"28860": "Kirksville, MO",
|
|
447
|
+
"28880": "Kiryas Joel-Poughkeepsie-Newburgh, NY",
|
|
448
|
+
"28900": "Klamath Falls, OR",
|
|
449
|
+
"28940": "Knoxville, TN",
|
|
450
|
+
"29020": "Kokomo, IN",
|
|
451
|
+
"29060": "Laconia, NH",
|
|
452
|
+
"29100": "La Crosse-Onalaska, WI-MN",
|
|
453
|
+
"29180": "Lafayette, LA",
|
|
454
|
+
"29200": "Lafayette-West Lafayette, IN",
|
|
455
|
+
"29260": "La Grande, OR",
|
|
456
|
+
"29300": "LaGrange, GA-AL",
|
|
457
|
+
"29340": "Lake Charles, LA",
|
|
458
|
+
"29380": "Lake City, FL",
|
|
459
|
+
"29420": "Lake Havasu City-Kingman, AZ",
|
|
460
|
+
"29460": "Lakeland-Winter Haven, FL",
|
|
461
|
+
"29470": "Lake of the Woods, VA",
|
|
462
|
+
"29540": "Lancaster, PA",
|
|
463
|
+
"29620": "Lansing-East Lansing, MI",
|
|
464
|
+
"29660": "Laramie, WY",
|
|
465
|
+
"29700": "Laredo, TX",
|
|
466
|
+
"29720": "Lares, PR",
|
|
467
|
+
"29740": "Las Cruces, NM",
|
|
468
|
+
"29780": "Las Vegas, NM",
|
|
469
|
+
"29820": "Las Vegas-Henderson-North Las Vegas, NV",
|
|
470
|
+
"29860": "Laurel, MS",
|
|
471
|
+
"29900": "Laurinburg, NC",
|
|
472
|
+
"29940": "Lawrence, KS",
|
|
473
|
+
"29980": "Lawrenceburg, TN",
|
|
474
|
+
"30020": "Lawton, OK",
|
|
475
|
+
"30060": "Lebanon, MO",
|
|
476
|
+
"30140": "Lebanon, PA",
|
|
477
|
+
"30150": "Lebanon-Claremont, NH-VT",
|
|
478
|
+
"30180": "Le Mars, IA",
|
|
479
|
+
"30260": "Lewisburg, PA",
|
|
480
|
+
"30280": "Lewisburg, TN",
|
|
481
|
+
"30300": "Lewiston, ID-WA",
|
|
482
|
+
"30340": "Lewiston-Auburn, ME",
|
|
483
|
+
"30380": "Lewistown, PA",
|
|
484
|
+
"30420": "Lexington, NE",
|
|
485
|
+
"30460": "Lexington-Fayette, KY",
|
|
486
|
+
"30500": "Lexington Park, MD",
|
|
487
|
+
"30580": "Liberal, KS",
|
|
488
|
+
"30620": "Lima, OH",
|
|
489
|
+
"30660": "Lincoln, IL",
|
|
490
|
+
"30700": "Lincoln, NE",
|
|
491
|
+
"30780": "Little Rock-North Little Rock-Conway, AR",
|
|
492
|
+
"30820": "Lock Haven, PA",
|
|
493
|
+
"30860": "Logan, UT-ID",
|
|
494
|
+
"30900": "Logansport, IN",
|
|
495
|
+
"30980": "Longview, TX",
|
|
496
|
+
"31020": "Longview-Kelso, WA",
|
|
497
|
+
"31060": "Los Alamos, NM",
|
|
498
|
+
"31080": "Los Angeles-Long Beach-Anaheim, CA",
|
|
499
|
+
"31140": "Louisville/Jefferson County, KY-IN",
|
|
500
|
+
"31180": "Lubbock, TX",
|
|
501
|
+
"31220": "Ludington, MI",
|
|
502
|
+
"31260": "Lufkin, TX",
|
|
503
|
+
"31300": "Lumberton, NC",
|
|
504
|
+
"31340": "Lynchburg, VA",
|
|
505
|
+
"31380": "Macomb, IL",
|
|
506
|
+
"31420": "Macon-Bibb County, GA",
|
|
507
|
+
"31500": "Madison, IN",
|
|
508
|
+
"31540": "Madison, WI",
|
|
509
|
+
"31580": "Madisonville, KY",
|
|
510
|
+
"31620": "Magnolia, AR",
|
|
511
|
+
"31680": "Malvern, AR",
|
|
512
|
+
"31700": "Manchester-Nashua, NH",
|
|
513
|
+
"31740": "Manhattan, KS",
|
|
514
|
+
"31820": "Manitowoc, WI",
|
|
515
|
+
"31860": "Mankato, MN",
|
|
516
|
+
"31900": "Mansfield, OH",
|
|
517
|
+
"31930": "Marietta, OH",
|
|
518
|
+
"31940": "Marinette, WI-MI",
|
|
519
|
+
"31980": "Marion, IN",
|
|
520
|
+
"32000": "Marion, NC",
|
|
521
|
+
"32020": "Marion, OH",
|
|
522
|
+
"32060": "Marion-Herrin, IL",
|
|
523
|
+
"32100": "Marquette, MI",
|
|
524
|
+
"32140": "Marshall, MN",
|
|
525
|
+
"32180": "Marshall, MO",
|
|
526
|
+
"32260": "Marshalltown, IA",
|
|
527
|
+
"32280": "Martin, TN",
|
|
528
|
+
"32300": "Martinsville, VA",
|
|
529
|
+
"32340": "Maryville, MO",
|
|
530
|
+
"32380": "Mason City, IA",
|
|
531
|
+
"32390": "Massena-Ogdensburg, NY",
|
|
532
|
+
"32420": "Mayagüez, PR",
|
|
533
|
+
"32460": "Mayfield, KY",
|
|
534
|
+
"32540": "McAlester, OK",
|
|
535
|
+
"32580": "McAllen-Edinburg-Mission, TX",
|
|
536
|
+
"32620": "McComb, MS",
|
|
537
|
+
"32660": "McMinnville, TN",
|
|
538
|
+
"32700": "McPherson, KS",
|
|
539
|
+
"32740": "Meadville, PA",
|
|
540
|
+
"32780": "Medford, OR",
|
|
541
|
+
"32820": "Memphis, TN-MS-AR",
|
|
542
|
+
"32860": "Menomonie, WI",
|
|
543
|
+
"32900": "Merced, CA",
|
|
544
|
+
"32940": "Meridian, MS",
|
|
545
|
+
"33020": "Mexico, MO",
|
|
546
|
+
"33060": "Miami, OK",
|
|
547
|
+
"33100": "Miami-Fort Lauderdale-West Palm Beach, FL",
|
|
548
|
+
"33140": "Michigan City-La Porte, IN",
|
|
549
|
+
"33180": "Middlesborough, KY",
|
|
550
|
+
"33220": "Midland, MI",
|
|
551
|
+
"33260": "Midland, TX",
|
|
552
|
+
"33300": "Milledgeville, GA",
|
|
553
|
+
"33340": "Milwaukee-Waukesha, WI",
|
|
554
|
+
"33380": "Minden, LA",
|
|
555
|
+
"33420": "Mineral Wells, TX",
|
|
556
|
+
"33460": "Minneapolis-St. Paul-Bloomington, MN-WI",
|
|
557
|
+
"33500": "Minot, ND",
|
|
558
|
+
"33540": "Missoula, MT",
|
|
559
|
+
"33580": "Mitchell, SD",
|
|
560
|
+
"33620": "Moberly, MO",
|
|
561
|
+
"33660": "Mobile, AL",
|
|
562
|
+
"33700": "Modesto, CA",
|
|
563
|
+
"33740": "Monroe, LA",
|
|
564
|
+
"33780": "Monroe, MI",
|
|
565
|
+
"33860": "Montgomery, AL",
|
|
566
|
+
"33900": "Monticello, IN",
|
|
567
|
+
"33910": "Monticello, NY",
|
|
568
|
+
"33940": "Montrose, CO",
|
|
569
|
+
"33980": "Morehead City, NC",
|
|
570
|
+
"34020": "Morgan City, LA",
|
|
571
|
+
"34060": "Morgantown, WV",
|
|
572
|
+
"34100": "Morristown, TN",
|
|
573
|
+
"34140": "Moscow, ID",
|
|
574
|
+
"34180": "Moses Lake, WA",
|
|
575
|
+
"34220": "Moultrie, GA",
|
|
576
|
+
"34260": "Mountain Home, AR",
|
|
577
|
+
"34300": "Mountain Home, ID",
|
|
578
|
+
"34340": "Mount Airy, NC",
|
|
579
|
+
"34380": "Mount Pleasant, MI",
|
|
580
|
+
"34420": "Mount Pleasant, TX",
|
|
581
|
+
"34460": "Mount Sterling, KY",
|
|
582
|
+
"34500": "Mount Vernon, IL",
|
|
583
|
+
"34540": "Mount Vernon, OH",
|
|
584
|
+
"34580": "Mount Vernon-Anacortes, WA",
|
|
585
|
+
"34620": "Muncie, IN",
|
|
586
|
+
"34660": "Murray, KY",
|
|
587
|
+
"34680": "Murrells Inlet, SC",
|
|
588
|
+
"34700": "Muscatine, IA",
|
|
589
|
+
"34740": "Muskegon-Norton Shores, MI",
|
|
590
|
+
"34780": "Muskogee, OK",
|
|
591
|
+
"34820": "Myrtle Beach-Conway-North Myrtle Beach, SC",
|
|
592
|
+
"34860": "Nacogdoches, TX",
|
|
593
|
+
"34880": "Nantucket, MA",
|
|
594
|
+
"34900": "Napa, CA",
|
|
595
|
+
"34940": "Naples-Marco Island, FL",
|
|
596
|
+
"34980": "Nashville-Davidson--Murfreesboro--Franklin, TN",
|
|
597
|
+
"35020": "Natchez, MS-LA",
|
|
598
|
+
"35060": "Natchitoches, LA",
|
|
599
|
+
"35100": "New Bern, NC",
|
|
600
|
+
"35140": "Newberry, SC",
|
|
601
|
+
"35220": "New Castle, IN",
|
|
602
|
+
"35300": "New Haven, CT",
|
|
603
|
+
"35340": "New Iberia, LA",
|
|
604
|
+
"35380": "New Orleans-Metairie, LA",
|
|
605
|
+
"35420": "New Philadelphia-Dover, OH",
|
|
606
|
+
"35440": "Newport, OR",
|
|
607
|
+
"35460": "Newport, TN",
|
|
608
|
+
"35580": "New Ulm, MN",
|
|
609
|
+
"35620": "New York-Newark-Jersey City, NY-NJ",
|
|
610
|
+
"35660": "Niles, MI",
|
|
611
|
+
"35700": "Nogales, AZ",
|
|
612
|
+
"35740": "Norfolk, NE",
|
|
613
|
+
"35820": "North Platte, NE",
|
|
614
|
+
"35840": "North Port-Bradenton-Sarasota, FL",
|
|
615
|
+
"35900": "North Wilkesboro, NC",
|
|
616
|
+
"35940": "Norwalk, OH",
|
|
617
|
+
"35980": "Norwich-New London-Willimantic, CT",
|
|
618
|
+
"36020": "Oak Harbor, WA",
|
|
619
|
+
"36100": "Ocala, FL",
|
|
620
|
+
"36180": "Ocean Pines, MD",
|
|
621
|
+
"36220": "Odessa, TX",
|
|
622
|
+
"36260": "Ogden, UT",
|
|
623
|
+
"36340": "Oil City, PA",
|
|
624
|
+
"36380": "Okeechobee, FL",
|
|
625
|
+
"36420": "Oklahoma City, OK",
|
|
626
|
+
"36460": "Olean, NY",
|
|
627
|
+
"36500": "Olympia-Lacey-Tumwater, WA",
|
|
628
|
+
"36540": "Omaha, NE-IA",
|
|
629
|
+
"36580": "Oneonta, NY",
|
|
630
|
+
"36620": "Ontario, OR-ID",
|
|
631
|
+
"36660": "Opelousas, LA",
|
|
632
|
+
"36700": "Orangeburg, SC",
|
|
633
|
+
"36740": "Orlando-Kissimmee-Sanford, FL",
|
|
634
|
+
"36780": "Oshkosh-Neenah, WI",
|
|
635
|
+
"36820": "Oskaloosa, IA",
|
|
636
|
+
"36830": "Othello, WA",
|
|
637
|
+
"36837": "Ottawa, IL",
|
|
638
|
+
"36840": "Ottawa, KS",
|
|
639
|
+
"36900": "Ottumwa, IA",
|
|
640
|
+
"36940": "Owatonna, MN",
|
|
641
|
+
"36980": "Owensboro, KY",
|
|
642
|
+
"37020": "Owosso, MI",
|
|
643
|
+
"37060": "Oxford, MS",
|
|
644
|
+
"37100": "Oxnard-Thousand Oaks-Ventura, CA",
|
|
645
|
+
"37120": "Ozark, AL",
|
|
646
|
+
"37140": "Paducah, KY-IL",
|
|
647
|
+
"37220": "Pahrump, NV",
|
|
648
|
+
"37260": "Palatka, FL",
|
|
649
|
+
"37300": "Palestine, TX",
|
|
650
|
+
"37340": "Palm Bay-Melbourne-Titusville, FL",
|
|
651
|
+
"37420": "Pampa, TX",
|
|
652
|
+
"37460": "Panama City-Panama City Beach, FL",
|
|
653
|
+
"37500": "Paragould, AR",
|
|
654
|
+
"37540": "Paris, TN",
|
|
655
|
+
"37580": "Paris, TX",
|
|
656
|
+
"37620": "Parkersburg-Vienna, WV",
|
|
657
|
+
"37740": "Payson, AZ",
|
|
658
|
+
"37800": "Pella, IA",
|
|
659
|
+
"37860": "Pensacola-Ferry Pass-Brent, FL",
|
|
660
|
+
"37900": "Peoria, IL",
|
|
661
|
+
"37940": "Peru, IN",
|
|
662
|
+
"37950": "Petoskey, MI",
|
|
663
|
+
"37980": "Philadelphia-Camden-Wilmington, PA-NJ-DE-MD",
|
|
664
|
+
"38060": "Phoenix-Mesa-Chandler, AZ",
|
|
665
|
+
"38100": "Picayune, MS",
|
|
666
|
+
"38180": "Pierre, SD",
|
|
667
|
+
"38210": "Pikeville, KY",
|
|
668
|
+
"38220": "Pine Bluff, AR",
|
|
669
|
+
"38240": "Pinehurst-Southern Pines, NC",
|
|
670
|
+
"38260": "Pittsburg, KS",
|
|
671
|
+
"38300": "Pittsburgh, PA",
|
|
672
|
+
"38340": "Pittsfield, MA",
|
|
673
|
+
"38380": "Plainview, TX",
|
|
674
|
+
"38420": "Platteville, WI",
|
|
675
|
+
"38460": "Plattsburgh, NY",
|
|
676
|
+
"38500": "Plymouth, IN",
|
|
677
|
+
"38540": "Pocatello, ID",
|
|
678
|
+
"38620": "Ponca City, OK",
|
|
679
|
+
"38660": "Ponce, PR",
|
|
680
|
+
"38700": "Pontiac, IL",
|
|
681
|
+
"38740": "Poplar Bluff, MO",
|
|
682
|
+
"38820": "Port Angeles, WA",
|
|
683
|
+
"38860": "Portland-South Portland, ME",
|
|
684
|
+
"38900": "Portland-Vancouver-Hillsboro, OR-WA",
|
|
685
|
+
"38920": "Port Lavaca, TX",
|
|
686
|
+
"38940": "Port St. Lucie, FL",
|
|
687
|
+
"39020": "Portsmouth, OH",
|
|
688
|
+
"39040": "Port Townsend, WA",
|
|
689
|
+
"39060": "Pottsville, PA",
|
|
690
|
+
"39150": "Prescott Valley-Prescott, AZ",
|
|
691
|
+
"39220": "Price, UT",
|
|
692
|
+
"39300": "Providence-Warwick, RI-MA",
|
|
693
|
+
"39340": "Provo-Orem-Lehi, UT",
|
|
694
|
+
"39380": "Pueblo, CO",
|
|
695
|
+
"39420": "Pullman, WA",
|
|
696
|
+
"39460": "Punta Gorda, FL",
|
|
697
|
+
"39480": "Putnam, CT",
|
|
698
|
+
"39500": "Quincy, IL-MO",
|
|
699
|
+
"39540": "Racine-Mount Pleasant, WI",
|
|
700
|
+
"39580": "Raleigh-Cary, NC",
|
|
701
|
+
"39660": "Rapid City, SD",
|
|
702
|
+
"39700": "Raymondville, TX",
|
|
703
|
+
"39740": "Reading, PA",
|
|
704
|
+
"39780": "Red Bluff, CA",
|
|
705
|
+
"39820": "Redding, CA",
|
|
706
|
+
"39860": "Red Wing, MN",
|
|
707
|
+
"39900": "Reno, NV",
|
|
708
|
+
"39940": "Rexburg, ID",
|
|
709
|
+
"39960": "Rice Lake, WI",
|
|
710
|
+
"39980": "Richmond, IN",
|
|
711
|
+
"40060": "Richmond, VA",
|
|
712
|
+
"40080": "Richmond-Berea, KY",
|
|
713
|
+
"40090": "Rifle, CO",
|
|
714
|
+
"40100": "Rio Grande City-Roma, TX",
|
|
715
|
+
"40140": "Riverside-San Bernardino-Ontario, CA",
|
|
716
|
+
"40180": "Riverton, WY",
|
|
717
|
+
"40220": "Roanoke, VA",
|
|
718
|
+
"40260": "Roanoke Rapids, NC",
|
|
719
|
+
"40300": "Rochelle, IL",
|
|
720
|
+
"40340": "Rochester, MN",
|
|
721
|
+
"40380": "Rochester, NY",
|
|
722
|
+
"40420": "Rockford, IL",
|
|
723
|
+
"40460": "Rockingham, NC",
|
|
724
|
+
"40540": "Rock Springs, WY",
|
|
725
|
+
"40580": "Rocky Mount, NC",
|
|
726
|
+
"40620": "Rolla, MO",
|
|
727
|
+
"40660": "Rome, GA",
|
|
728
|
+
"40700": "Roseburg, OR",
|
|
729
|
+
"40740": "Roswell, NM",
|
|
730
|
+
"40760": "Ruidoso, NM",
|
|
731
|
+
"40770": "Russellville, AL",
|
|
732
|
+
"40780": "Russellville, AR",
|
|
733
|
+
"40820": "Ruston, LA",
|
|
734
|
+
"40860": "Rutland, VT",
|
|
735
|
+
"40900": "Sacramento-Roseville-Folsom, CA",
|
|
736
|
+
"40940": "Safford, AZ",
|
|
737
|
+
"40980": "Saginaw, MI",
|
|
738
|
+
"41060": "St. Cloud, MN",
|
|
739
|
+
"41100": "St. George, UT",
|
|
740
|
+
"41140": "St. Joseph, MO-KS",
|
|
741
|
+
"41180": "St. Louis, MO-IL",
|
|
742
|
+
"41260": "St. Marys, PA",
|
|
743
|
+
"41400": "Salem, OH",
|
|
744
|
+
"41420": "Salem, OR",
|
|
745
|
+
"41460": "Salina, KS",
|
|
746
|
+
"41500": "Salinas, CA",
|
|
747
|
+
"41540": "Salisbury, MD",
|
|
748
|
+
"41620": "Salt Lake City-Murray, UT",
|
|
749
|
+
"41660": "San Angelo, TX",
|
|
750
|
+
"41700": "San Antonio-New Braunfels, TX",
|
|
751
|
+
"41740": "San Diego-Chula Vista-Carlsbad, CA",
|
|
752
|
+
"41760": "Sandpoint, ID",
|
|
753
|
+
"41780": "Sandusky, OH",
|
|
754
|
+
"41820": "Sanford, NC",
|
|
755
|
+
"41860": "San Francisco-Oakland-Fremont, CA",
|
|
756
|
+
"41940": "San Jose-Sunnyvale-Santa Clara, CA",
|
|
757
|
+
"41980": "San Juan-Bayamón-Caguas, PR",
|
|
758
|
+
"42020": "San Luis Obispo-Paso Robles, CA",
|
|
759
|
+
"42100": "Santa Cruz-Watsonville, CA",
|
|
760
|
+
"42140": "Santa Fe, NM",
|
|
761
|
+
"42200": "Santa Maria-Santa Barbara, CA",
|
|
762
|
+
"42220": "Santa Rosa-Petaluma, CA",
|
|
763
|
+
"42300": "Sault Ste. Marie, MI",
|
|
764
|
+
"42340": "Savannah, GA",
|
|
765
|
+
"42380": "Sayre, PA",
|
|
766
|
+
"42420": "Scottsbluff, NE",
|
|
767
|
+
"42460": "Scottsboro, AL",
|
|
768
|
+
"42540": "Scranton--Wilkes-Barre, PA",
|
|
769
|
+
"42580": "Seaford, DE",
|
|
770
|
+
"42620": "Searcy, AR",
|
|
771
|
+
"42660": "Seattle-Tacoma-Bellevue, WA",
|
|
772
|
+
"42680": "Sebastian-Vero Beach-West Vero Corridor, FL",
|
|
773
|
+
"42700": "Sebring, FL",
|
|
774
|
+
"42740": "Sedalia, MO",
|
|
775
|
+
"42780": "Selinsgrove, PA",
|
|
776
|
+
"42820": "Selma, AL",
|
|
777
|
+
"42860": "Seneca, SC",
|
|
778
|
+
"42900": "Seneca Falls, NY",
|
|
779
|
+
"42940": "Sevierville, TN",
|
|
780
|
+
"42980": "Seymour, IN",
|
|
781
|
+
"43020": "Shawano, WI",
|
|
782
|
+
"43060": "Shawnee, OK",
|
|
783
|
+
"43100": "Sheboygan, WI",
|
|
784
|
+
"43140": "Shelby-Kings Mountain, NC",
|
|
785
|
+
"43180": "Shelbyville, TN",
|
|
786
|
+
"43220": "Shelton, WA",
|
|
787
|
+
"43260": "Sheridan, WY",
|
|
788
|
+
"43300": "Sherman-Denison, TX",
|
|
789
|
+
"43320": "Show Low, AZ",
|
|
790
|
+
"43340": "Shreveport-Bossier City, LA",
|
|
791
|
+
"43380": "Sidney, OH",
|
|
792
|
+
"43420": "Sierra Vista-Douglas, AZ",
|
|
793
|
+
"43460": "Sikeston, MO",
|
|
794
|
+
"43500": "Silver City, NM",
|
|
795
|
+
"43580": "Sioux City, IA-NE-SD",
|
|
796
|
+
"43620": "Sioux Falls, SD-MN",
|
|
797
|
+
"43640": "Slidell-Mandeville-Covington, LA",
|
|
798
|
+
"43660": "Snyder, TX",
|
|
799
|
+
"43700": "Somerset, KY",
|
|
800
|
+
"43740": "Somerset, PA",
|
|
801
|
+
"43760": "Sonora, CA",
|
|
802
|
+
"43780": "South Bend-Mishawaka, IN-MI",
|
|
803
|
+
"43890": "Sparta, WI",
|
|
804
|
+
"43900": "Spartanburg, SC",
|
|
805
|
+
"43940": "Spearfish, SD",
|
|
806
|
+
"43980": "Spencer, IA",
|
|
807
|
+
"44020": "Spirit Lake, IA",
|
|
808
|
+
"44060": "Spokane-Spokane Valley, WA",
|
|
809
|
+
"44100": "Springfield, IL",
|
|
810
|
+
"44140": "Springfield, MA",
|
|
811
|
+
"44180": "Springfield, MO",
|
|
812
|
+
"44220": "Springfield, OH",
|
|
813
|
+
"44260": "Starkville, MS",
|
|
814
|
+
"44300": "State College, PA",
|
|
815
|
+
"44340": "Statesboro, GA",
|
|
816
|
+
"44420": "Staunton-Stuarts Draft, VA",
|
|
817
|
+
"44460": "Steamboat Springs, CO",
|
|
818
|
+
"44500": "Stephenville, TX",
|
|
819
|
+
"44540": "Sterling, CO",
|
|
820
|
+
"44580": "Sterling, IL",
|
|
821
|
+
"44620": "Stevens Point-Plover, WI",
|
|
822
|
+
"44660": "Stillwater, OK",
|
|
823
|
+
"44700": "Stockton-Lodi, CA",
|
|
824
|
+
"44740": "Storm Lake, IA",
|
|
825
|
+
"44780": "Sturgis, MI",
|
|
826
|
+
"44860": "Sulphur Springs, TX",
|
|
827
|
+
"44900": "Summerville, GA",
|
|
828
|
+
"44940": "Sumter, SC",
|
|
829
|
+
"44980": "Sunbury, PA",
|
|
830
|
+
"45000": "Susanville, CA",
|
|
831
|
+
"45020": "Sweetwater, TX",
|
|
832
|
+
"45060": "Syracuse, NY",
|
|
833
|
+
"45140": "Tahlequah, OK",
|
|
834
|
+
"45180": "Talladega-Sylacauga, AL",
|
|
835
|
+
"45220": "Tallahassee, FL",
|
|
836
|
+
"45300": "Tampa-St. Petersburg-Clearwater, FL",
|
|
837
|
+
"45340": "Taos, NM",
|
|
838
|
+
"45380": "Taylorville, IL",
|
|
839
|
+
"45460": "Terre Haute, IN",
|
|
840
|
+
"45500": "Texarkana, TX-AR",
|
|
841
|
+
"45520": "The Dalles, OR",
|
|
842
|
+
"45580": "Thomaston, GA",
|
|
843
|
+
"45620": "Thomasville, GA",
|
|
844
|
+
"45660": "Tiffin, OH",
|
|
845
|
+
"45700": "Tifton, GA",
|
|
846
|
+
"45740": "Toccoa, GA",
|
|
847
|
+
"45780": "Toledo, OH",
|
|
848
|
+
"45820": "Topeka, KS",
|
|
849
|
+
"45860": "Torrington, CT",
|
|
850
|
+
"45880": "Town of Pecos, TX",
|
|
851
|
+
"45900": "Traverse City, MI",
|
|
852
|
+
"45940": "Trenton-Princeton, NJ",
|
|
853
|
+
"45980": "Troy, AL",
|
|
854
|
+
"46020": "Truckee-Grass Valley, CA",
|
|
855
|
+
"46060": "Tucson, AZ",
|
|
856
|
+
"46100": "Tullahoma-Manchester, TN",
|
|
857
|
+
"46140": "Tulsa, OK",
|
|
858
|
+
"46180": "Tupelo, MS",
|
|
859
|
+
"46220": "Tuscaloosa, AL",
|
|
860
|
+
"46300": "Twin Falls, ID",
|
|
861
|
+
"46340": "Tyler, TX",
|
|
862
|
+
"46380": "Ukiah, CA",
|
|
863
|
+
"46460": "Union City, TN",
|
|
864
|
+
"46500": "Urbana, OH",
|
|
865
|
+
"46520": "Urban Honolulu, HI",
|
|
866
|
+
"46540": "Utica-Rome, NY",
|
|
867
|
+
"46580": "Utuado, PR",
|
|
868
|
+
"46620": "Uvalde, TX",
|
|
869
|
+
"46660": "Valdosta, GA",
|
|
870
|
+
"46700": "Vallejo, CA",
|
|
871
|
+
"46780": "Van Wert, OH",
|
|
872
|
+
"46820": "Vermillion, SD",
|
|
873
|
+
"46860": "Vernal, UT",
|
|
874
|
+
"46900": "Vernon, TX",
|
|
875
|
+
"46980": "Vicksburg, MS",
|
|
876
|
+
"47020": "Victoria, TX",
|
|
877
|
+
"47080": "Vidalia, GA",
|
|
878
|
+
"47180": "Vincennes, IN",
|
|
879
|
+
"47220": "Vineland, NJ",
|
|
880
|
+
"47240": "Vineyard Haven, MA",
|
|
881
|
+
"47260": "Virginia Beach-Chesapeake-Norfolk, VA-NC",
|
|
882
|
+
"47300": "Visalia, CA",
|
|
883
|
+
"47340": "Wabash, IN",
|
|
884
|
+
"47380": "Waco, TX",
|
|
885
|
+
"47420": "Wahpeton, ND-MN",
|
|
886
|
+
"47460": "Walla Walla, WA",
|
|
887
|
+
"47540": "Wapakoneta, OH",
|
|
888
|
+
"47580": "Warner Robins, GA",
|
|
889
|
+
"47620": "Warren, PA",
|
|
890
|
+
"47660": "Warrensburg, MO",
|
|
891
|
+
"47700": "Warsaw, IN",
|
|
892
|
+
"47780": "Washington, IN",
|
|
893
|
+
"47820": "Washington, NC",
|
|
894
|
+
"47900": "Washington-Arlington-Alexandria, DC-VA-MD-WV",
|
|
895
|
+
"47920": "Washington Court House, OH",
|
|
896
|
+
"47930": "Waterbury-Shelton, CT",
|
|
897
|
+
"47940": "Waterloo-Cedar Falls, IA",
|
|
898
|
+
"47980": "Watertown, SD",
|
|
899
|
+
"48020": "Watertown-Fort Atkinson, WI",
|
|
900
|
+
"48060": "Watertown-Fort Drum, NY",
|
|
901
|
+
"48140": "Wausau, WI",
|
|
902
|
+
"48180": "Waycross, GA",
|
|
903
|
+
"48200": "Waynesville, NC",
|
|
904
|
+
"48220": "Weatherford, OK",
|
|
905
|
+
"48260": "Weirton-Steubenville, WV-OH",
|
|
906
|
+
"48300": "Wenatchee-East Wenatchee, WA",
|
|
907
|
+
"48460": "West Plains, MO",
|
|
908
|
+
"48540": "Wheeling, WV-OH",
|
|
909
|
+
"48580": "Whitewater-Elkhorn, WI",
|
|
910
|
+
"48620": "Wichita, KS",
|
|
911
|
+
"48660": "Wichita Falls, TX",
|
|
912
|
+
"48680": "Wildwood-The Villages, FL",
|
|
913
|
+
"48700": "Williamsport, PA",
|
|
914
|
+
"48780": "Williston, ND",
|
|
915
|
+
"48820": "Willmar, MN",
|
|
916
|
+
"48900": "Wilmington, NC",
|
|
917
|
+
"48940": "Wilmington, OH",
|
|
918
|
+
"48980": "Wilson, NC",
|
|
919
|
+
"49010": "Winchester, TN",
|
|
920
|
+
"49020": "Winchester, VA-WV",
|
|
921
|
+
"49080": "Winnemucca, NV",
|
|
922
|
+
"49100": "Winona, MN",
|
|
923
|
+
"49180": "Winston-Salem, NC",
|
|
924
|
+
"49220": "Wisconsin Rapids-Marshfield, WI",
|
|
925
|
+
"49260": "Woodward, OK",
|
|
926
|
+
"49300": "Wooster, OH",
|
|
927
|
+
"49340": "Worcester, MA",
|
|
928
|
+
"49380": "Worthington, MN",
|
|
929
|
+
"49420": "Yakima, WA",
|
|
930
|
+
"49460": "Yankton, SD",
|
|
931
|
+
"49620": "York-Hanover, PA",
|
|
932
|
+
"49660": "Youngstown-Warren, OH",
|
|
933
|
+
"49700": "Yuba City, CA",
|
|
934
|
+
"49740": "Yuma, AZ",
|
|
935
|
+
"49780": "Zanesville, OH",
|
|
936
|
+
"49820": "Zapata, TX"
|
|
270
937
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zipcode-features
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: A Python package to process and extract features from zipcode data.
|
|
5
5
|
Project-URL: Homepage, https://github.com/EricSchles/zipcode_features
|
|
6
6
|
Author-email: Eric Schles <your.email@example.com>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
zipcode_features/__init__.py,sha256=
|
|
1
|
+
zipcode_features/__init__.py,sha256=Zla9DzMVI3ils-g4Hg9AngjyYq4B6RdLVP6b930IKu8,11444
|
|
2
2
|
zipcode_features/data/CBSA_ZIP_122025.csv,sha256=K04cmFp6n-BnDNKBAVNlo9ZcISvNcCyi0pilx85M4uw,5184179
|
|
3
3
|
zipcode_features/data/ZIP_COUNTY_122025.csv,sha256=U15HG0Vy-KFgdTBHBib77-nyBnmze3YL7jgmdjRj8hg,3649183
|
|
4
4
|
zipcode_features/data/bls_2025_quarter_four.csv,sha256=K44BQUijfSKzaG1la7VpvGDa1mpoEKGRTDu9hjm0hrk,3715371
|
|
5
5
|
zipcode_features/data/bls_2025_quarter_one.csv,sha256=WrR9aRoqC4p0rVGmHIEV-ugLo4fLdluOBoIo4-LKUqU,3832268
|
|
6
6
|
zipcode_features/data/bls_2025_quarter_three.csv,sha256=FeACbqadlOOuQvnQNCgyOKke448X_bGUuHJV7g7OW3A,3709136
|
|
7
7
|
zipcode_features/data/bls_2025_quarter_two.csv,sha256=L_aIESbpSPViV4bGH82EvKLkBI_lf4BxGgoMe_wTrdc,3831843
|
|
8
|
-
zipcode_features/data/cbsa_codes.json,sha256=
|
|
9
|
-
zipcode_features-0.1.
|
|
10
|
-
zipcode_features-0.1.
|
|
11
|
-
zipcode_features-0.1.
|
|
12
|
-
zipcode_features-0.1.
|
|
8
|
+
zipcode_features/data/cbsa_codes.json,sha256=FiU0rGL0X_7uOnkZann6vKfGSI1_E-hPFFOQZH8v0uo,28484
|
|
9
|
+
zipcode_features-0.1.5.dist-info/METADATA,sha256=P8xewak7oCbRR-ihR-IKOPnqC6BEOQDEgAi0EnTVxho,5849
|
|
10
|
+
zipcode_features-0.1.5.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
11
|
+
zipcode_features-0.1.5.dist-info/licenses/LICENSE,sha256=HDbMJ7oItmxTn3jVtZFi6jUFAHovset5jzAPUderjOc,1073
|
|
12
|
+
zipcode_features-0.1.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|