@cdc/map 2.6.2 → 2.6.4
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.
- package/dist/cdcmap.js +37 -29
- package/examples/bubble-us.json +363 -0
- package/examples/bubble-world.json +427 -0
- package/examples/default-county.json +105 -0
- package/examples/default-hex.json +475 -0
- package/examples/default-single-state.json +109 -0
- package/examples/default-usa-regions.json +118 -0
- package/examples/default-usa.json +744 -603
- package/examples/default-world-data.json +1450 -0
- package/examples/default-world.json +5 -3
- package/examples/example-city-state.json +510 -0
- package/examples/example-world-map.json +1596 -0
- package/examples/gender-rate-map.json +1 -0
- package/examples/private/atsdr.json +439 -0
- package/examples/private/atsdr_new.json +436 -0
- package/examples/private/bubble.json +285 -0
- package/examples/private/default-world-data.json +1444 -0
- package/examples/private/default.json +968 -0
- package/examples/private/map.csv +60 -0
- package/examples/private/mdx.json +210 -0
- package/examples/private/regions.json +52 -0
- package/examples/private/wcmsrd-13881-data.json +2858 -0
- package/examples/private/wcmsrd-13881.json +5823 -0
- package/examples/private/wcmsrd-test.json +268 -0
- package/examples/private/world.json +1580 -0
- package/examples/private/worldmap.json +1490 -0
- package/package.json +11 -7
- package/src/CdcMap.js +726 -202
- package/src/components/BubbleList.js +240 -0
- package/src/components/CityList.js +22 -3
- package/src/components/CountyMap.js +557 -0
- package/src/components/DataTable.js +85 -24
- package/src/components/EditorPanel.js +2455 -1204
- package/src/components/Geo.js +1 -1
- package/src/components/Sidebar.js +5 -5
- package/src/components/SingleStateMap.js +326 -0
- package/src/components/UsaMap.js +41 -9
- package/src/components/UsaRegionMap.js +319 -0
- package/src/components/WorldMap.js +112 -35
- package/src/data/abbreviations.js +57 -0
- package/src/data/country-coordinates.js +250 -0
- package/src/data/county-map-halfquality.json +58453 -0
- package/src/data/county-map-quarterquality.json +1 -0
- package/src/data/county-topo.json +1 -0
- package/src/data/dfc-map.json +1 -0
- package/src/data/initial-state.js +21 -4
- package/src/data/newtest.json +1 -0
- package/src/data/state-abbreviations.js +60 -0
- package/src/data/state-coordinates.js +55 -0
- package/src/data/supported-geos.js +3592 -163
- package/src/data/test.json +1 -0
- package/src/data/us-regions-topo-2.json +360525 -0
- package/src/data/us-regions-topo.json +37894 -0
- package/src/hooks/useActiveElement.js +19 -0
- package/src/hooks/useColorPalette.ts +96 -0
- package/src/index.html +35 -20
- package/src/index.js +8 -4
- package/src/scss/datatable.scss +2 -1
- package/src/scss/editor-panel.scss +76 -55
- package/src/scss/main.scss +10 -1
- package/src/scss/map.scss +257 -121
- package/src/scss/sidebar.scss +0 -1
- package/uploads/upload-example-city-state.json +392 -0
- package/uploads/upload-example-world-data.json +1490 -0
- package/LICENSE +0 -201
- package/src/data/color-palettes.js +0 -191
- package/src/images/map-folded.svg +0 -1
|
@@ -1,827 +1,968 @@
|
|
|
1
1
|
{
|
|
2
|
-
"type": "map",
|
|
3
|
-
"defaultData": true,
|
|
4
|
-
"general": {
|
|
5
|
-
"title": "Default USA Map",
|
|
6
|
-
"subtext": "",
|
|
7
|
-
"territoriesLabel": "Territories",
|
|
8
|
-
"type": "data",
|
|
9
|
-
"geoType": "us",
|
|
10
|
-
"headerColor": "theme-blue",
|
|
11
|
-
"showSidebar": true,
|
|
12
|
-
"showTitle": true,
|
|
13
|
-
"geoBorderColor": "darkGray",
|
|
14
|
-
"showDownloadButton": true,
|
|
15
|
-
"expandDataTable": true
|
|
16
|
-
},
|
|
17
|
-
"color": "pinkpurple",
|
|
18
|
-
"columns": {
|
|
19
|
-
"geo": {
|
|
20
|
-
"name": "state",
|
|
21
|
-
"label": "Location",
|
|
22
|
-
"tooltip": false,
|
|
23
|
-
"dataTable": true
|
|
24
|
-
},
|
|
25
|
-
"primary": {
|
|
26
|
-
"name": "Insured Rate",
|
|
27
|
-
"label": "Data Label",
|
|
28
|
-
"prefix": "",
|
|
29
|
-
"suffix": "%",
|
|
30
|
-
"dataTable": true,
|
|
31
|
-
"tooltip": true
|
|
32
|
-
},
|
|
33
|
-
"navigate": {
|
|
34
|
-
"name": "link",
|
|
35
|
-
"tooltip": false,
|
|
36
|
-
"dataTable": false
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"legend": {
|
|
40
|
-
"numberOfItems": 3,
|
|
41
|
-
"position": "side",
|
|
42
|
-
"title": "Legend Title",
|
|
43
|
-
"description": "Legend Text",
|
|
44
|
-
"type": "equalnumber",
|
|
45
|
-
"specialClasses": ["N/A"]
|
|
46
|
-
},
|
|
47
|
-
"filters": [],
|
|
48
2
|
"data": [
|
|
49
3
|
{
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
4
|
+
"Condition": "Arboviral",
|
|
5
|
+
"State": "AL",
|
|
6
|
+
"Status": "Production"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"Condition": "Arboviral",
|
|
10
|
+
"State": "AK",
|
|
11
|
+
"Status": "Onboarding"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"Condition": "Arboviral",
|
|
15
|
+
"State": "AZ",
|
|
16
|
+
"Status": "Production"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"Condition": "Arboviral",
|
|
20
|
+
"State": "AR",
|
|
21
|
+
"Status": "Production"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"Condition": "Arboviral",
|
|
25
|
+
"State": "DE",
|
|
26
|
+
"Status": "Production"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"Condition": "Arboviral",
|
|
30
|
+
"State": "FL",
|
|
31
|
+
"Status": "Production"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"Condition": "Arboviral",
|
|
35
|
+
"State": "ID",
|
|
36
|
+
"Status": "Production"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"Condition": "Arboviral",
|
|
40
|
+
"State": "IL",
|
|
41
|
+
"Status": "Production"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"Condition": "Arboviral",
|
|
45
|
+
"State": "IN",
|
|
46
|
+
"Status": "Production"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"Condition": "Arboviral",
|
|
50
|
+
"State": "KS",
|
|
51
|
+
"Status": "Onboarding"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"Condition": "Arboviral",
|
|
55
|
+
"State": "LA",
|
|
56
|
+
"Status": "Production"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"Condition": "Arboviral",
|
|
60
|
+
"State": "MD",
|
|
61
|
+
"Status": "Production"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"Condition": "Arboviral",
|
|
65
|
+
"State": "MA",
|
|
66
|
+
"Status": "Production"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"Condition": "Arboviral",
|
|
70
|
+
"State": "MI",
|
|
71
|
+
"Status": "Onboarding"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"Condition": "Arboviral",
|
|
75
|
+
"State": "MS",
|
|
76
|
+
"Status": "Production"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"Condition": "Arboviral",
|
|
80
|
+
"State": "MT",
|
|
81
|
+
"Status": "Production"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"Condition": "Arboviral",
|
|
85
|
+
"State": "NE",
|
|
86
|
+
"Status": "Production"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"Condition": "Arboviral",
|
|
90
|
+
"State": "NJ",
|
|
91
|
+
"Status": "Production"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"Condition": "Arboviral",
|
|
95
|
+
"State": "NY",
|
|
96
|
+
"Status": "Production"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"Condition": "Arboviral",
|
|
100
|
+
"State": "ND",
|
|
101
|
+
"Status": "Production"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"Condition": "Arboviral",
|
|
105
|
+
"State": "OR",
|
|
106
|
+
"Status": "Production"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"Condition": "Arboviral",
|
|
110
|
+
"State": "PA",
|
|
111
|
+
"Status": "Production"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"Condition": "Arboviral",
|
|
115
|
+
"State": "RI",
|
|
116
|
+
"Status": "Production"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"Condition": "Arboviral",
|
|
120
|
+
"State": "SC",
|
|
121
|
+
"Status": "Onboarding"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"Condition": "Arboviral",
|
|
125
|
+
"State": "SD",
|
|
126
|
+
"Status": "Production"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"Condition": "Arboviral",
|
|
130
|
+
"State": "TN",
|
|
131
|
+
"Status": "Production"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"Condition": "Arboviral",
|
|
135
|
+
"State": "TX",
|
|
136
|
+
"Status": "Production"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"Condition": "Arboviral",
|
|
140
|
+
"State": "UT",
|
|
141
|
+
"Status": "Production"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"Condition": "Arboviral",
|
|
145
|
+
"State": "VA",
|
|
146
|
+
"Status": "Production"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"Condition": "Arboviral",
|
|
150
|
+
"State": "WA",
|
|
151
|
+
"Status": "Onboarding"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"Condition": "Arboviral",
|
|
155
|
+
"State": "WI",
|
|
156
|
+
"Status": "Production"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"Condition": "Arboviral",
|
|
160
|
+
"State": "WY",
|
|
161
|
+
"Status": "Production"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"Condition": "Arboviral",
|
|
165
|
+
"State": "New York City",
|
|
166
|
+
"Status": "Production"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"Condition": "Babesiosis",
|
|
170
|
+
"State": "CT",
|
|
171
|
+
"Status": "Piloting"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"Condition": "Babesiosis",
|
|
175
|
+
"State": "FL",
|
|
176
|
+
"Status": "Piloting"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"Condition": "Babesiosis",
|
|
180
|
+
"State": "ID",
|
|
181
|
+
"Status": "Onboarding"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"Condition": "Babesiosis",
|
|
185
|
+
"State": "MI",
|
|
186
|
+
"Status": "Production"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"Condition": "Babesiosis",
|
|
190
|
+
"State": "WI",
|
|
191
|
+
"Status": "Production"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"Condition": "Congenital Syphilis",
|
|
195
|
+
"State": "AL",
|
|
196
|
+
"Status": "Production"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"Condition": "Congenital Syphilis",
|
|
200
|
+
"State": "CT",
|
|
201
|
+
"Status": "Production"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"Condition": "Congenital Syphilis",
|
|
205
|
+
"State": "ID",
|
|
206
|
+
"Status": "Production"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"Condition": "Congenital Syphilis",
|
|
210
|
+
"State": "IN",
|
|
211
|
+
"Status": "Onboarding"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"Condition": "Congenital Syphilis",
|
|
215
|
+
"State": "KY",
|
|
216
|
+
"Status": "Production"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"Condition": "Congenital Syphilis",
|
|
220
|
+
"State": "MI",
|
|
221
|
+
"Status": "Production"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"Condition": "Congenital Syphilis",
|
|
225
|
+
"State": "NC",
|
|
226
|
+
"Status": "Production"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"Condition": "Congenital Syphilis",
|
|
230
|
+
"State": "OR",
|
|
231
|
+
"Status": "Production"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"Condition": "Congenital Syphilis",
|
|
235
|
+
"State": "SC",
|
|
236
|
+
"Status": "Production"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"Condition": "Congenital Syphilis",
|
|
240
|
+
"State": "WI",
|
|
241
|
+
"Status": "Production"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"Condition": "COVID-19",
|
|
245
|
+
"State": "AK",
|
|
246
|
+
"Status": "Onboarding"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"Condition": "COVID-19",
|
|
250
|
+
"State": "ID",
|
|
251
|
+
"Status": "Production"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"Condition": "COVID-19",
|
|
255
|
+
"State": "KS",
|
|
256
|
+
"Status": "Production"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"Condition": "COVID-19",
|
|
260
|
+
"State": "KY",
|
|
261
|
+
"Status": "Onboarding"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"Condition": "COVID-19",
|
|
265
|
+
"State": "UT",
|
|
266
|
+
"Status": "Production"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"Condition": "CRS",
|
|
270
|
+
"State": "OR",
|
|
271
|
+
"Status": "Piloting"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"Condition": "FDD",
|
|
275
|
+
"State": "FL",
|
|
276
|
+
"Status": "Piloting"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"Condition": "FDD",
|
|
280
|
+
"State": "MI",
|
|
281
|
+
"Status": "Onboarding"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"Condition": "FDD",
|
|
285
|
+
"State": "MN",
|
|
286
|
+
"Status": "Piloting"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"Condition": "FDD",
|
|
290
|
+
"State": "NY",
|
|
291
|
+
"Status": "Piloting"
|
|
55
292
|
},
|
|
56
293
|
{
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"Year (Good filter option)": 2003,
|
|
61
|
-
"link": ""
|
|
294
|
+
"Condition": "FDD",
|
|
295
|
+
"State": "OR",
|
|
296
|
+
"Status": "Production"
|
|
62
297
|
},
|
|
63
298
|
{
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"Year (Good filter option)": "2010",
|
|
68
|
-
"link": ""
|
|
299
|
+
"Condition": "Generic v2.0",
|
|
300
|
+
"State": "AL",
|
|
301
|
+
"Status": "Production"
|
|
69
302
|
},
|
|
70
303
|
{
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"Year (Good filter option)": "2010",
|
|
75
|
-
"link": "#lorem"
|
|
304
|
+
"Condition": "Generic v2.0",
|
|
305
|
+
"State": "AK",
|
|
306
|
+
"Status": "Production"
|
|
76
307
|
},
|
|
77
308
|
{
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"Year (Good filter option)": "2010",
|
|
82
|
-
"link": ""
|
|
309
|
+
"Condition": "Generic v2.0",
|
|
310
|
+
"State": "AZ",
|
|
311
|
+
"Status": "Production"
|
|
83
312
|
},
|
|
84
313
|
{
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"Year (Good filter option)": "2010",
|
|
89
|
-
"link": "https://search.cdc.gov/search/?query=California&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
314
|
+
"Condition": "Generic v2.0",
|
|
315
|
+
"State": "CA",
|
|
316
|
+
"Status": "Production"
|
|
90
317
|
},
|
|
91
318
|
{
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"Year (Good filter option)": "2010",
|
|
96
|
-
"link": ""
|
|
319
|
+
"Condition": "Generic v2.0",
|
|
320
|
+
"State": "CO",
|
|
321
|
+
"Status": "Production"
|
|
97
322
|
},
|
|
98
323
|
{
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"Year (Good filter option)": "2010",
|
|
103
|
-
"link": ""
|
|
324
|
+
"Condition": "Generic v2.0",
|
|
325
|
+
"State": "CT",
|
|
326
|
+
"Status": "Production"
|
|
104
327
|
},
|
|
105
328
|
{
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"Year (Good filter option)": "2010",
|
|
110
|
-
"link": ""
|
|
329
|
+
"Condition": "Generic v2.0",
|
|
330
|
+
"State": "DE",
|
|
331
|
+
"Status": "Production"
|
|
111
332
|
},
|
|
112
333
|
{
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"Year (Good filter option)": "2010",
|
|
117
|
-
"link": "https://search.cdc.gov/search/index.html?query=Washington+D.C.&sitelimit=&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
334
|
+
"Condition": "Generic v2.0",
|
|
335
|
+
"State": "FL",
|
|
336
|
+
"Status": "Production"
|
|
118
337
|
},
|
|
119
338
|
{
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"Year (Good filter option)": "2010",
|
|
124
|
-
"link": ""
|
|
339
|
+
"Condition": "Generic v2.0",
|
|
340
|
+
"State": "GA",
|
|
341
|
+
"Status": "Production"
|
|
125
342
|
},
|
|
126
343
|
{
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"Year (Good filter option)": "2010",
|
|
131
|
-
"link": ""
|
|
344
|
+
"Condition": "Generic v2.0",
|
|
345
|
+
"State": "ID",
|
|
346
|
+
"Status": "Production"
|
|
132
347
|
},
|
|
133
348
|
{
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"Year (Good filter option)": "2010",
|
|
138
|
-
"link": "https://cdc.gov/"
|
|
349
|
+
"Condition": "Generic v2.0",
|
|
350
|
+
"State": "IL",
|
|
351
|
+
"Status": "Production"
|
|
139
352
|
},
|
|
140
353
|
{
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"Year (Good filter option)": "2010",
|
|
145
|
-
"link": ""
|
|
354
|
+
"Condition": "Generic v2.0",
|
|
355
|
+
"State": "IN",
|
|
356
|
+
"Status": "Production"
|
|
146
357
|
},
|
|
147
358
|
{
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"
|
|
151
|
-
"Year (Good filter option)": "2010",
|
|
152
|
-
"link": ""
|
|
359
|
+
"Condition": "Generic v2.0",
|
|
360
|
+
"State": "IA",
|
|
361
|
+
"Status": "Production"
|
|
153
362
|
},
|
|
154
363
|
{
|
|
155
|
-
"
|
|
156
|
-
"
|
|
157
|
-
"
|
|
158
|
-
"Year (Good filter option)": "2010",
|
|
159
|
-
"link": ""
|
|
364
|
+
"Condition": "Generic v2.0",
|
|
365
|
+
"State": "KS",
|
|
366
|
+
"Status": "Production"
|
|
160
367
|
},
|
|
161
368
|
{
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
165
|
-
"Year (Good filter option)": "2010",
|
|
166
|
-
"link": ""
|
|
369
|
+
"Condition": "Generic v2.0",
|
|
370
|
+
"State": "KY",
|
|
371
|
+
"Status": "Production"
|
|
167
372
|
},
|
|
168
373
|
{
|
|
169
|
-
"
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
"Year (Good filter option)": "2010",
|
|
173
|
-
"link": ""
|
|
374
|
+
"Condition": "Generic v2.0",
|
|
375
|
+
"State": "ME",
|
|
376
|
+
"Status": "Production"
|
|
174
377
|
},
|
|
175
378
|
{
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"Year (Good filter option)": "2010",
|
|
180
|
-
"link": ""
|
|
379
|
+
"Condition": "Generic v2.0",
|
|
380
|
+
"State": "MA",
|
|
381
|
+
"Status": "Production"
|
|
181
382
|
},
|
|
182
383
|
{
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"Year (Good filter option)": "2010",
|
|
187
|
-
"link": ""
|
|
384
|
+
"Condition": "Generic v2.0",
|
|
385
|
+
"State": "MI",
|
|
386
|
+
"Status": "Production"
|
|
188
387
|
},
|
|
189
388
|
{
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
"Year (Good filter option)": "2010",
|
|
194
|
-
"link": ""
|
|
389
|
+
"Condition": "Generic v2.0",
|
|
390
|
+
"State": "MN",
|
|
391
|
+
"Status": "Production"
|
|
195
392
|
},
|
|
196
393
|
{
|
|
197
|
-
"
|
|
198
|
-
"
|
|
199
|
-
"
|
|
200
|
-
"Year (Good filter option)": "2010",
|
|
201
|
-
"link": ""
|
|
394
|
+
"Condition": "Generic v2.0",
|
|
395
|
+
"State": "MS",
|
|
396
|
+
"Status": "Production"
|
|
202
397
|
},
|
|
203
398
|
{
|
|
204
|
-
"
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"Year (Good filter option)": "2010",
|
|
208
|
-
"link": ""
|
|
399
|
+
"Condition": "Generic v2.0",
|
|
400
|
+
"State": "MT",
|
|
401
|
+
"Status": "Production"
|
|
209
402
|
},
|
|
210
403
|
{
|
|
211
|
-
"
|
|
212
|
-
"
|
|
213
|
-
"
|
|
214
|
-
"Year (Good filter option)": "2010",
|
|
215
|
-
"link": ""
|
|
404
|
+
"Condition": "Generic v2.0",
|
|
405
|
+
"State": "NH",
|
|
406
|
+
"Status": "Onboarding"
|
|
216
407
|
},
|
|
217
408
|
{
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"
|
|
221
|
-
"Year (Good filter option)": "2010",
|
|
222
|
-
"link": ""
|
|
409
|
+
"Condition": "Generic v2.0",
|
|
410
|
+
"State": "NJ",
|
|
411
|
+
"Status": "Production"
|
|
223
412
|
},
|
|
224
413
|
{
|
|
225
|
-
"
|
|
226
|
-
"
|
|
227
|
-
"
|
|
228
|
-
"Year (Good filter option)": "2010",
|
|
229
|
-
"link": ""
|
|
414
|
+
"Condition": "Generic v2.0",
|
|
415
|
+
"State": "NY",
|
|
416
|
+
"Status": "Production"
|
|
230
417
|
},
|
|
231
418
|
{
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"Year (Good filter option)": "2010",
|
|
236
|
-
"link": ""
|
|
419
|
+
"Condition": "Generic v2.0",
|
|
420
|
+
"State": "NC",
|
|
421
|
+
"Status": "Production"
|
|
237
422
|
},
|
|
238
423
|
{
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
"Year (Good filter option)": "2010",
|
|
243
|
-
"link": ""
|
|
424
|
+
"Condition": "Generic v2.0",
|
|
425
|
+
"State": "OR",
|
|
426
|
+
"Status": "Production"
|
|
244
427
|
},
|
|
245
428
|
{
|
|
246
|
-
"
|
|
247
|
-
"
|
|
248
|
-
"
|
|
249
|
-
"Year (Good filter option)": "2010",
|
|
250
|
-
"link": ""
|
|
429
|
+
"Condition": "Generic v2.0",
|
|
430
|
+
"State": "PA",
|
|
431
|
+
"Status": "Production"
|
|
251
432
|
},
|
|
252
433
|
{
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"Year (Good filter option)": "2010",
|
|
257
|
-
"link": ""
|
|
434
|
+
"Condition": "Generic v2.0",
|
|
435
|
+
"State": "RI",
|
|
436
|
+
"Status": "Production"
|
|
258
437
|
},
|
|
259
438
|
{
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
"
|
|
263
|
-
"Year (Good filter option)": "2010",
|
|
264
|
-
"link": ""
|
|
439
|
+
"Condition": "Generic v2.0",
|
|
440
|
+
"State": "SC",
|
|
441
|
+
"Status": "Production"
|
|
265
442
|
},
|
|
266
443
|
{
|
|
267
|
-
"
|
|
268
|
-
"
|
|
269
|
-
"
|
|
270
|
-
"Year (Good filter option)": "2010",
|
|
271
|
-
"link": ""
|
|
444
|
+
"Condition": "Generic v2.0",
|
|
445
|
+
"State": "TN",
|
|
446
|
+
"Status": "Production"
|
|
272
447
|
},
|
|
273
448
|
{
|
|
274
|
-
"
|
|
275
|
-
"
|
|
276
|
-
"
|
|
277
|
-
"Year (Good filter option)": "2010",
|
|
278
|
-
"link": ""
|
|
449
|
+
"Condition": "Generic v2.0",
|
|
450
|
+
"State": "UT",
|
|
451
|
+
"Status": "Production"
|
|
279
452
|
},
|
|
280
453
|
{
|
|
281
|
-
"
|
|
282
|
-
"
|
|
283
|
-
"
|
|
284
|
-
"Year (Good filter option)": "2010",
|
|
285
|
-
"link": ""
|
|
454
|
+
"Condition": "Generic v2.0",
|
|
455
|
+
"State": "VA",
|
|
456
|
+
"Status": "Production"
|
|
286
457
|
},
|
|
287
458
|
{
|
|
288
|
-
"
|
|
289
|
-
"
|
|
290
|
-
"
|
|
291
|
-
"Year (Good filter option)": "2010",
|
|
292
|
-
"link": ""
|
|
459
|
+
"Condition": "Generic v2.0",
|
|
460
|
+
"State": "WV",
|
|
461
|
+
"Status": "Onboarding"
|
|
293
462
|
},
|
|
294
463
|
{
|
|
295
|
-
"
|
|
296
|
-
"
|
|
297
|
-
"
|
|
298
|
-
"Year (Good filter option)": "2010",
|
|
299
|
-
"link": ""
|
|
464
|
+
"Condition": "Generic v2.0",
|
|
465
|
+
"State": "WI",
|
|
466
|
+
"Status": "Production"
|
|
300
467
|
},
|
|
301
468
|
{
|
|
302
|
-
"
|
|
303
|
-
"
|
|
304
|
-
"
|
|
305
|
-
"Year (Good filter option)": "2010",
|
|
306
|
-
"link": ""
|
|
469
|
+
"Condition": "Generic v2.0",
|
|
470
|
+
"State": "WY",
|
|
471
|
+
"Status": "Onboarding"
|
|
307
472
|
},
|
|
308
473
|
{
|
|
309
|
-
"
|
|
310
|
-
"
|
|
311
|
-
"
|
|
312
|
-
"Year (Good filter option)": "2010",
|
|
313
|
-
"link": ""
|
|
474
|
+
"Condition": "Generic v2.0",
|
|
475
|
+
"State": "New York City",
|
|
476
|
+
"Status": "Production"
|
|
314
477
|
},
|
|
315
478
|
{
|
|
316
|
-
"
|
|
317
|
-
"
|
|
318
|
-
"
|
|
319
|
-
"Year (Good filter option)": "2010",
|
|
320
|
-
"link": ""
|
|
479
|
+
"Condition": "Generic v2.0",
|
|
480
|
+
"State": "CNMI",
|
|
481
|
+
"Status": "Onboarding"
|
|
321
482
|
},
|
|
322
483
|
{
|
|
323
|
-
"
|
|
324
|
-
"
|
|
325
|
-
"
|
|
326
|
-
"Year (Good filter option)": "2010",
|
|
327
|
-
"link": ""
|
|
484
|
+
"Condition": "Generic v2.0",
|
|
485
|
+
"State": "GU",
|
|
486
|
+
"Status": "Production"
|
|
328
487
|
},
|
|
329
488
|
{
|
|
330
|
-
"
|
|
331
|
-
"
|
|
332
|
-
"
|
|
333
|
-
"Year (Good filter option)": "2010",
|
|
334
|
-
"link": ""
|
|
489
|
+
"Condition": "Generic v2.0",
|
|
490
|
+
"State": "PR",
|
|
491
|
+
"Status": "Production"
|
|
335
492
|
},
|
|
336
493
|
{
|
|
337
|
-
"
|
|
338
|
-
"
|
|
339
|
-
"
|
|
340
|
-
"Year (Good filter option)": "2010",
|
|
341
|
-
"link": ""
|
|
494
|
+
"Condition": "Generic v2.0",
|
|
495
|
+
"State": "VI",
|
|
496
|
+
"Status": "Onboarding"
|
|
342
497
|
},
|
|
343
498
|
{
|
|
344
|
-
"
|
|
345
|
-
"
|
|
346
|
-
"
|
|
347
|
-
"Year (Good filter option)": "2010",
|
|
348
|
-
"link": ""
|
|
499
|
+
"Condition": "HAI MDRO",
|
|
500
|
+
"State": "CO",
|
|
501
|
+
"Status": "Onboarding"
|
|
349
502
|
},
|
|
350
503
|
{
|
|
351
|
-
"
|
|
352
|
-
"
|
|
353
|
-
"
|
|
354
|
-
"Year (Good filter option)": "2010",
|
|
355
|
-
"link": ""
|
|
504
|
+
"Condition": "HAI MDRO",
|
|
505
|
+
"State": "MI",
|
|
506
|
+
"Status": "Production"
|
|
356
507
|
},
|
|
357
508
|
{
|
|
358
|
-
"
|
|
359
|
-
"
|
|
360
|
-
"
|
|
361
|
-
"Year (Good filter option)": "2010",
|
|
362
|
-
"link": "https://search.cdc.gov/search/?query=Texas&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
509
|
+
"Condition": "HAI MDRO",
|
|
510
|
+
"State": "OR",
|
|
511
|
+
"Status": "Piloting"
|
|
363
512
|
},
|
|
364
513
|
{
|
|
365
|
-
"
|
|
366
|
-
"
|
|
367
|
-
"
|
|
368
|
-
"Year (Good filter option)": "2010",
|
|
369
|
-
"link": ""
|
|
514
|
+
"Condition": "Hepatitis",
|
|
515
|
+
"State": "AL",
|
|
516
|
+
"Status": "Production"
|
|
370
517
|
},
|
|
371
518
|
{
|
|
372
|
-
"
|
|
373
|
-
"
|
|
374
|
-
"
|
|
375
|
-
"Year (Good filter option)": "2010",
|
|
376
|
-
"link": ""
|
|
519
|
+
"Condition": "Hepatitis",
|
|
520
|
+
"State": "AK",
|
|
521
|
+
"Status": "Production"
|
|
377
522
|
},
|
|
378
523
|
{
|
|
379
|
-
"
|
|
380
|
-
"
|
|
381
|
-
"
|
|
382
|
-
"Year (Good filter option)": "2010",
|
|
383
|
-
"link": ""
|
|
524
|
+
"Condition": "Hepatitis",
|
|
525
|
+
"State": "CO",
|
|
526
|
+
"Status": "Production"
|
|
384
527
|
},
|
|
385
528
|
{
|
|
386
|
-
"
|
|
387
|
-
"
|
|
388
|
-
"
|
|
389
|
-
"Year (Good filter option)": "2010",
|
|
390
|
-
"link": ""
|
|
529
|
+
"Condition": "Hepatitis",
|
|
530
|
+
"State": "DE",
|
|
531
|
+
"Status": "Production"
|
|
391
532
|
},
|
|
392
533
|
{
|
|
393
|
-
"
|
|
394
|
-
"
|
|
395
|
-
"
|
|
396
|
-
"Year (Good filter option)": "2010",
|
|
397
|
-
"link": ""
|
|
534
|
+
"Condition": "Hepatitis",
|
|
535
|
+
"State": "FL",
|
|
536
|
+
"Status": "Production"
|
|
398
537
|
},
|
|
399
538
|
{
|
|
400
|
-
"
|
|
401
|
-
"
|
|
402
|
-
"
|
|
403
|
-
"Year (Good filter option)": "2010",
|
|
404
|
-
"link": ""
|
|
539
|
+
"Condition": "Hepatitis",
|
|
540
|
+
"State": "ID",
|
|
541
|
+
"Status": "Production"
|
|
405
542
|
},
|
|
406
543
|
{
|
|
407
|
-
"
|
|
408
|
-
"
|
|
409
|
-
"
|
|
410
|
-
"Year (Good filter option)": "2010",
|
|
411
|
-
"link": "https://cdc.gov/"
|
|
544
|
+
"Condition": "Hepatitis",
|
|
545
|
+
"State": "IN",
|
|
546
|
+
"Status": "Production"
|
|
412
547
|
},
|
|
413
548
|
{
|
|
414
|
-
"
|
|
415
|
-
"
|
|
416
|
-
"
|
|
417
|
-
"Year (Good filter option)": "2010",
|
|
418
|
-
"link": ""
|
|
549
|
+
"Condition": "Hepatitis",
|
|
550
|
+
"State": "IA",
|
|
551
|
+
"Status": "Production"
|
|
419
552
|
},
|
|
420
553
|
{
|
|
421
|
-
"
|
|
422
|
-
"
|
|
423
|
-
"
|
|
424
|
-
"Year (Good filter option)": "2010",
|
|
425
|
-
"link": ""
|
|
554
|
+
"Condition": "Hepatitis",
|
|
555
|
+
"State": "LA",
|
|
556
|
+
"Status": "Production"
|
|
426
557
|
},
|
|
427
558
|
{
|
|
428
|
-
"
|
|
429
|
-
"
|
|
430
|
-
"
|
|
431
|
-
"Year (Good filter option)": "2010",
|
|
432
|
-
"link": ""
|
|
559
|
+
"Condition": "Hepatitis",
|
|
560
|
+
"State": "MA",
|
|
561
|
+
"Status": "Production"
|
|
433
562
|
},
|
|
434
563
|
{
|
|
435
|
-
"
|
|
436
|
-
"
|
|
437
|
-
"
|
|
438
|
-
"Year (Good filter option)": "2010",
|
|
439
|
-
"link": "https://cdc.gov/"
|
|
564
|
+
"Condition": "Hepatitis",
|
|
565
|
+
"State": "MI",
|
|
566
|
+
"Status": "Production"
|
|
440
567
|
},
|
|
441
568
|
{
|
|
442
|
-
"
|
|
443
|
-
"
|
|
444
|
-
"
|
|
445
|
-
"Year (Good filter option)": "2015",
|
|
446
|
-
"link": ""
|
|
569
|
+
"Condition": "Hepatitis",
|
|
570
|
+
"State": "MN",
|
|
571
|
+
"Status": "Production"
|
|
447
572
|
},
|
|
448
573
|
{
|
|
449
|
-
"
|
|
450
|
-
"
|
|
451
|
-
"
|
|
452
|
-
"Year (Good filter option)": "2015",
|
|
453
|
-
"link": ""
|
|
574
|
+
"Condition": "Hepatitis",
|
|
575
|
+
"State": "NE",
|
|
576
|
+
"Status": "Production"
|
|
454
577
|
},
|
|
455
578
|
{
|
|
456
|
-
"
|
|
457
|
-
"
|
|
458
|
-
"
|
|
459
|
-
"Year (Good filter option)": "2015",
|
|
460
|
-
"link": "https://search.cdc.gov/search/?query=Arizona&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
579
|
+
"Condition": "Hepatitis",
|
|
580
|
+
"State": "NJ",
|
|
581
|
+
"Status": "Production"
|
|
461
582
|
},
|
|
462
583
|
{
|
|
463
|
-
"
|
|
464
|
-
"
|
|
465
|
-
"
|
|
466
|
-
"Year (Good filter option)": "2015",
|
|
467
|
-
"link": ""
|
|
584
|
+
"Condition": "Hepatitis",
|
|
585
|
+
"State": "NY",
|
|
586
|
+
"Status": "Production"
|
|
468
587
|
},
|
|
469
588
|
{
|
|
470
|
-
"
|
|
471
|
-
"
|
|
472
|
-
"
|
|
473
|
-
"Year (Good filter option)": "2015",
|
|
474
|
-
"link": "https://search.cdc.gov/search/?query=California&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
589
|
+
"Condition": "Hepatitis",
|
|
590
|
+
"State": "OR",
|
|
591
|
+
"Status": "Production"
|
|
475
592
|
},
|
|
476
593
|
{
|
|
477
|
-
"
|
|
478
|
-
"
|
|
479
|
-
"
|
|
480
|
-
"Year (Good filter option)": "2015",
|
|
481
|
-
"link": ""
|
|
594
|
+
"Condition": "Hepatitis",
|
|
595
|
+
"State": "RI",
|
|
596
|
+
"Status": "Production"
|
|
482
597
|
},
|
|
483
598
|
{
|
|
484
|
-
"
|
|
485
|
-
"
|
|
486
|
-
"
|
|
487
|
-
"Year (Good filter option)": "2015",
|
|
488
|
-
"link": ""
|
|
599
|
+
"Condition": "Hepatitis",
|
|
600
|
+
"State": "SC",
|
|
601
|
+
"Status": "Production"
|
|
489
602
|
},
|
|
490
603
|
{
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
"
|
|
494
|
-
"Year (Good filter option)": "2015",
|
|
495
|
-
"link": ""
|
|
604
|
+
"Condition": "Hepatitis",
|
|
605
|
+
"State": "TN",
|
|
606
|
+
"Status": "Production"
|
|
496
607
|
},
|
|
497
608
|
{
|
|
498
|
-
"
|
|
499
|
-
"
|
|
500
|
-
"
|
|
501
|
-
"Year (Good filter option)": "2015",
|
|
502
|
-
"link": "https://search.cdc.gov/search/index.html?query=Washington+D.C.&sitelimit=&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
609
|
+
"Condition": "Hepatitis",
|
|
610
|
+
"State": "UT",
|
|
611
|
+
"Status": "Production"
|
|
503
612
|
},
|
|
504
613
|
{
|
|
505
|
-
"
|
|
506
|
-
"
|
|
507
|
-
"
|
|
508
|
-
"Year (Good filter option)": "2015",
|
|
509
|
-
"link": ""
|
|
614
|
+
"Condition": "Hepatitis",
|
|
615
|
+
"State": "VA",
|
|
616
|
+
"Status": "Production"
|
|
510
617
|
},
|
|
511
618
|
{
|
|
512
|
-
"
|
|
513
|
-
"
|
|
514
|
-
"
|
|
515
|
-
"Year (Good filter option)": "2015",
|
|
516
|
-
"link": ""
|
|
619
|
+
"Condition": "Hepatitis",
|
|
620
|
+
"State": "WV",
|
|
621
|
+
"Status": "Production"
|
|
517
622
|
},
|
|
518
623
|
{
|
|
519
|
-
"
|
|
520
|
-
"
|
|
521
|
-
"
|
|
522
|
-
"Year (Good filter option)": "2015",
|
|
523
|
-
"link": "https://cdc.gov/"
|
|
624
|
+
"Condition": "Hepatitis",
|
|
625
|
+
"State": "WI",
|
|
626
|
+
"Status": "Production"
|
|
524
627
|
},
|
|
525
628
|
{
|
|
526
|
-
"
|
|
527
|
-
"
|
|
528
|
-
"
|
|
529
|
-
"Year (Good filter option)": "2015",
|
|
530
|
-
"link": ""
|
|
629
|
+
"Condition": "Hepatitis",
|
|
630
|
+
"State": "GU",
|
|
631
|
+
"Status": "Onboarding"
|
|
531
632
|
},
|
|
532
633
|
{
|
|
533
|
-
"
|
|
534
|
-
"
|
|
535
|
-
"
|
|
536
|
-
"Year (Good filter option)": "2015",
|
|
537
|
-
"link": ""
|
|
634
|
+
"Condition": "Hepatitis",
|
|
635
|
+
"State": "PR",
|
|
636
|
+
"Status": "Production"
|
|
538
637
|
},
|
|
539
638
|
{
|
|
540
|
-
"
|
|
541
|
-
"
|
|
542
|
-
"
|
|
543
|
-
"Year (Good filter option)": "2015",
|
|
544
|
-
"link": ""
|
|
639
|
+
"Condition": "Hepatitis",
|
|
640
|
+
"State": "VI",
|
|
641
|
+
"Status": "Onboarding"
|
|
545
642
|
},
|
|
546
643
|
{
|
|
547
|
-
"
|
|
548
|
-
"
|
|
549
|
-
"
|
|
550
|
-
"Year (Good filter option)": "2015",
|
|
551
|
-
"link": ""
|
|
644
|
+
"Condition": "Lyme & TBRD",
|
|
645
|
+
"State": "FL",
|
|
646
|
+
"Status": "Piloting"
|
|
552
647
|
},
|
|
553
648
|
{
|
|
554
|
-
"
|
|
555
|
-
"
|
|
556
|
-
"
|
|
557
|
-
"Year (Good filter option)": "2015",
|
|
558
|
-
"link": ""
|
|
649
|
+
"Condition": "Lyme & TBRD",
|
|
650
|
+
"State": "ID",
|
|
651
|
+
"Status": "Production"
|
|
559
652
|
},
|
|
560
653
|
{
|
|
561
|
-
"
|
|
562
|
-
"
|
|
563
|
-
"
|
|
564
|
-
"Year (Good filter option)": "2015",
|
|
565
|
-
"link": ""
|
|
654
|
+
"Condition": "Lyme & TBRD",
|
|
655
|
+
"State": "IL",
|
|
656
|
+
"Status": "Onboarding"
|
|
566
657
|
},
|
|
567
658
|
{
|
|
568
|
-
"
|
|
569
|
-
"
|
|
570
|
-
"
|
|
571
|
-
"Year (Good filter option)": "2015",
|
|
572
|
-
"link": ""
|
|
659
|
+
"Condition": "Lyme & TBRD",
|
|
660
|
+
"State": "MI",
|
|
661
|
+
"Status": "Production"
|
|
573
662
|
},
|
|
574
663
|
{
|
|
575
|
-
"
|
|
576
|
-
"
|
|
577
|
-
"
|
|
578
|
-
"Year (Good filter option)": "2015",
|
|
579
|
-
"link": ""
|
|
664
|
+
"Condition": "Lyme & TBRD",
|
|
665
|
+
"State": "OR",
|
|
666
|
+
"Status": "Piloting"
|
|
580
667
|
},
|
|
581
668
|
{
|
|
582
|
-
"
|
|
583
|
-
"
|
|
584
|
-
"
|
|
585
|
-
"Year (Good filter option)": "2015",
|
|
586
|
-
"link": ""
|
|
669
|
+
"Condition": "Malaria",
|
|
670
|
+
"State": "CT",
|
|
671
|
+
"Status": "Piloting"
|
|
587
672
|
},
|
|
588
673
|
{
|
|
589
|
-
"
|
|
590
|
-
"
|
|
591
|
-
"
|
|
592
|
-
"Year (Good filter option)": "2015",
|
|
593
|
-
"link": ""
|
|
674
|
+
"Condition": "Malaria",
|
|
675
|
+
"State": "FL",
|
|
676
|
+
"Status": "Piloting"
|
|
594
677
|
},
|
|
595
678
|
{
|
|
596
|
-
"
|
|
597
|
-
"
|
|
598
|
-
"
|
|
599
|
-
"Year (Good filter option)": "2015",
|
|
600
|
-
"link": ""
|
|
679
|
+
"Condition": "Malaria",
|
|
680
|
+
"State": "ID",
|
|
681
|
+
"Status": "Production"
|
|
601
682
|
},
|
|
602
683
|
{
|
|
603
|
-
"
|
|
604
|
-
"
|
|
605
|
-
"
|
|
606
|
-
"Year (Good filter option)": "2015",
|
|
607
|
-
"link": ""
|
|
684
|
+
"Condition": "Malaria",
|
|
685
|
+
"State": "MI",
|
|
686
|
+
"Status": "Production"
|
|
608
687
|
},
|
|
609
688
|
{
|
|
610
|
-
"
|
|
611
|
-
"
|
|
612
|
-
"
|
|
613
|
-
"Year (Good filter option)": "2015",
|
|
614
|
-
"link": ""
|
|
689
|
+
"Condition": "Measles",
|
|
690
|
+
"State": "AL",
|
|
691
|
+
"Status": "Piloting"
|
|
615
692
|
},
|
|
616
693
|
{
|
|
617
|
-
"
|
|
618
|
-
"
|
|
619
|
-
"
|
|
620
|
-
"Year (Good filter option)": "2015",
|
|
621
|
-
"link": ""
|
|
694
|
+
"Condition": "Measles",
|
|
695
|
+
"State": "AZ",
|
|
696
|
+
"Status": "Piloting"
|
|
622
697
|
},
|
|
623
698
|
{
|
|
624
|
-
"
|
|
625
|
-
"
|
|
626
|
-
"
|
|
627
|
-
"Year (Good filter option)": "2015",
|
|
628
|
-
"link": ""
|
|
699
|
+
"Condition": "Measles",
|
|
700
|
+
"State": "FL",
|
|
701
|
+
"Status": "Piloting"
|
|
629
702
|
},
|
|
630
703
|
{
|
|
631
|
-
"
|
|
632
|
-
"
|
|
633
|
-
"
|
|
634
|
-
"Year (Good filter option)": "2015",
|
|
635
|
-
"link": ""
|
|
704
|
+
"Condition": "Measles",
|
|
705
|
+
"State": "OR",
|
|
706
|
+
"Status": "Piloting"
|
|
636
707
|
},
|
|
637
708
|
{
|
|
638
|
-
"
|
|
639
|
-
"
|
|
640
|
-
"
|
|
641
|
-
"Year (Good filter option)": "2015",
|
|
642
|
-
"link": ""
|
|
709
|
+
"Condition": "Mumps",
|
|
710
|
+
"State": "FL",
|
|
711
|
+
"Status": "Piloting"
|
|
643
712
|
},
|
|
644
713
|
{
|
|
645
|
-
"
|
|
646
|
-
"
|
|
647
|
-
"
|
|
648
|
-
"Year (Good filter option)": "2015",
|
|
649
|
-
"link": ""
|
|
714
|
+
"Condition": "Mumps",
|
|
715
|
+
"State": "KS",
|
|
716
|
+
"Status": "Piloting"
|
|
650
717
|
},
|
|
651
718
|
{
|
|
652
|
-
"
|
|
653
|
-
"
|
|
654
|
-
"
|
|
655
|
-
"Year (Good filter option)": "2015",
|
|
656
|
-
"link": ""
|
|
719
|
+
"Condition": "Mumps",
|
|
720
|
+
"State": "MI",
|
|
721
|
+
"Status": "Piloting"
|
|
657
722
|
},
|
|
658
723
|
{
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"Year (Good filter option)": "2015",
|
|
663
|
-
"link": ""
|
|
724
|
+
"Condition": "Mumps",
|
|
725
|
+
"State": "OR",
|
|
726
|
+
"Status": "Piloting"
|
|
664
727
|
},
|
|
665
728
|
{
|
|
666
|
-
"
|
|
667
|
-
"
|
|
668
|
-
"
|
|
669
|
-
"Year (Good filter option)": "2015",
|
|
670
|
-
"link": ""
|
|
729
|
+
"Condition": "Mumps",
|
|
730
|
+
"State": "UT",
|
|
731
|
+
"Status": "Production"
|
|
671
732
|
},
|
|
672
733
|
{
|
|
673
|
-
"
|
|
674
|
-
"
|
|
675
|
-
"
|
|
676
|
-
"Year (Good filter option)": "2015",
|
|
677
|
-
"link": ""
|
|
734
|
+
"Condition": "Mumps",
|
|
735
|
+
"State": "New York City",
|
|
736
|
+
"Status": "Piloting"
|
|
678
737
|
},
|
|
679
738
|
{
|
|
680
|
-
"
|
|
681
|
-
"
|
|
682
|
-
"
|
|
683
|
-
"Year (Good filter option)": "2015",
|
|
684
|
-
"link": ""
|
|
739
|
+
"Condition": "Pertussis",
|
|
740
|
+
"State": "FL",
|
|
741
|
+
"Status": "Piloting"
|
|
685
742
|
},
|
|
686
743
|
{
|
|
687
|
-
"
|
|
688
|
-
"
|
|
689
|
-
"
|
|
690
|
-
"Year (Good filter option)": "2015",
|
|
691
|
-
"link": ""
|
|
744
|
+
"Condition": "Pertussis",
|
|
745
|
+
"State": "KS",
|
|
746
|
+
"Status": "Piloting"
|
|
692
747
|
},
|
|
693
748
|
{
|
|
694
|
-
"
|
|
695
|
-
"
|
|
696
|
-
"
|
|
697
|
-
"Year (Good filter option)": "2015",
|
|
698
|
-
"link": ""
|
|
749
|
+
"Condition": "Pertussis",
|
|
750
|
+
"State": "MI",
|
|
751
|
+
"Status": "Piloting"
|
|
699
752
|
},
|
|
700
753
|
{
|
|
701
|
-
"
|
|
702
|
-
"
|
|
703
|
-
"
|
|
704
|
-
"Year (Good filter option)": "2015",
|
|
705
|
-
"link": ""
|
|
754
|
+
"Condition": "Pertussis",
|
|
755
|
+
"State": "OR",
|
|
756
|
+
"Status": "Piloting"
|
|
706
757
|
},
|
|
707
758
|
{
|
|
708
|
-
"
|
|
709
|
-
"
|
|
710
|
-
"
|
|
711
|
-
"Year (Good filter option)": "2015",
|
|
712
|
-
"link": ""
|
|
759
|
+
"Condition": "Pertussis",
|
|
760
|
+
"State": "UT",
|
|
761
|
+
"Status": "Production"
|
|
713
762
|
},
|
|
714
763
|
{
|
|
715
|
-
"
|
|
716
|
-
"
|
|
717
|
-
"
|
|
718
|
-
"Year (Good filter option)": "2015",
|
|
719
|
-
"link": ""
|
|
764
|
+
"Condition": "Pertussis",
|
|
765
|
+
"State": "New York City",
|
|
766
|
+
"Status": "Piloting"
|
|
720
767
|
},
|
|
721
768
|
{
|
|
722
|
-
"
|
|
723
|
-
"
|
|
724
|
-
"
|
|
725
|
-
"Year (Good filter option)": "2015",
|
|
726
|
-
"link": ""
|
|
769
|
+
"Condition": "RIBD",
|
|
770
|
+
"State": "GA",
|
|
771
|
+
"Status": "Piloting"
|
|
727
772
|
},
|
|
728
773
|
{
|
|
729
|
-
"
|
|
730
|
-
"
|
|
731
|
-
"
|
|
732
|
-
"Year (Good filter option)": "2015",
|
|
733
|
-
"link": ""
|
|
774
|
+
"Condition": "RIBD",
|
|
775
|
+
"State": "OR",
|
|
776
|
+
"Status": "Piloting"
|
|
734
777
|
},
|
|
735
778
|
{
|
|
736
|
-
"
|
|
737
|
-
"
|
|
738
|
-
"
|
|
739
|
-
"Year (Good filter option)": "2015",
|
|
740
|
-
"link": ""
|
|
779
|
+
"Condition": "Rubella",
|
|
780
|
+
"State": "FL",
|
|
781
|
+
"Status": "Piloting"
|
|
741
782
|
},
|
|
742
783
|
{
|
|
743
|
-
"
|
|
744
|
-
"
|
|
745
|
-
"
|
|
746
|
-
"Year (Good filter option)": "2015",
|
|
747
|
-
"link": "https://search.cdc.gov/search/?query=Texas&utf8=%E2%9C%93&affiliate=cdc-main"
|
|
784
|
+
"Condition": "Rubella",
|
|
785
|
+
"State": "OR",
|
|
786
|
+
"Status": "Piloting"
|
|
748
787
|
},
|
|
749
788
|
{
|
|
750
|
-
"
|
|
751
|
-
"
|
|
752
|
-
"
|
|
753
|
-
"Year (Good filter option)": "2015",
|
|
754
|
-
"link": ""
|
|
789
|
+
"Condition": "STD",
|
|
790
|
+
"State": "AL",
|
|
791
|
+
"Status": "Production"
|
|
755
792
|
},
|
|
756
793
|
{
|
|
757
|
-
"
|
|
758
|
-
"
|
|
759
|
-
"
|
|
760
|
-
"Year (Good filter option)": "2015",
|
|
761
|
-
"link": ""
|
|
794
|
+
"Condition": "STD",
|
|
795
|
+
"State": "CT",
|
|
796
|
+
"Status": "Production"
|
|
762
797
|
},
|
|
763
798
|
{
|
|
764
|
-
"
|
|
765
|
-
"
|
|
766
|
-
"
|
|
767
|
-
"Year (Good filter option)": "2015",
|
|
768
|
-
"link": ""
|
|
799
|
+
"Condition": "STD",
|
|
800
|
+
"State": "ID",
|
|
801
|
+
"Status": "Production"
|
|
769
802
|
},
|
|
770
803
|
{
|
|
771
|
-
"
|
|
772
|
-
"
|
|
773
|
-
"
|
|
774
|
-
"Year (Good filter option)": "2015",
|
|
775
|
-
"link": ""
|
|
804
|
+
"Condition": "STD",
|
|
805
|
+
"State": "IN",
|
|
806
|
+
"Status": "Onboarding"
|
|
776
807
|
},
|
|
777
808
|
{
|
|
778
|
-
"
|
|
779
|
-
"
|
|
780
|
-
"
|
|
781
|
-
"Year (Good filter option)": "2015",
|
|
782
|
-
"link": ""
|
|
809
|
+
"Condition": "STD",
|
|
810
|
+
"State": "KY",
|
|
811
|
+
"Status": "Production"
|
|
783
812
|
},
|
|
784
813
|
{
|
|
785
|
-
"
|
|
786
|
-
"
|
|
787
|
-
"
|
|
788
|
-
"Year (Good filter option)": "2015",
|
|
789
|
-
"link": ""
|
|
814
|
+
"Condition": "STD",
|
|
815
|
+
"State": "MI",
|
|
816
|
+
"Status": "Production"
|
|
790
817
|
},
|
|
791
818
|
{
|
|
792
|
-
"
|
|
793
|
-
"
|
|
794
|
-
"
|
|
795
|
-
"Year (Good filter option)": "2015",
|
|
796
|
-
"link": ""
|
|
819
|
+
"Condition": "STD",
|
|
820
|
+
"State": "NC",
|
|
821
|
+
"Status": "Production"
|
|
797
822
|
},
|
|
798
823
|
{
|
|
799
|
-
"
|
|
800
|
-
"
|
|
801
|
-
"
|
|
802
|
-
"Year (Good filter option)": "2015",
|
|
803
|
-
"link": ""
|
|
824
|
+
"Condition": "STD",
|
|
825
|
+
"State": "OR",
|
|
826
|
+
"Status": "Production"
|
|
804
827
|
},
|
|
805
828
|
{
|
|
806
|
-
"
|
|
807
|
-
"
|
|
808
|
-
"
|
|
809
|
-
"Year (Good filter option)": "2015",
|
|
810
|
-
"link": ""
|
|
829
|
+
"Condition": "STD",
|
|
830
|
+
"State": "SC",
|
|
831
|
+
"Status": "Production"
|
|
811
832
|
},
|
|
812
833
|
{
|
|
813
|
-
"
|
|
814
|
-
"
|
|
815
|
-
"
|
|
816
|
-
"Year (Good filter option)": "2015",
|
|
817
|
-
"link": ""
|
|
834
|
+
"Condition": "STD",
|
|
835
|
+
"State": "WI",
|
|
836
|
+
"Status": "Production"
|
|
818
837
|
},
|
|
819
838
|
{
|
|
820
|
-
"
|
|
821
|
-
"
|
|
822
|
-
"
|
|
823
|
-
|
|
824
|
-
|
|
839
|
+
"Condition": "TB & LTBI",
|
|
840
|
+
"State": "AZ",
|
|
841
|
+
"Status": "Onboarding"
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
"Condition": "TB & LTBI",
|
|
845
|
+
"State": "MI",
|
|
846
|
+
"Status": "Onboarding"
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"Condition": "TB & LTBI",
|
|
850
|
+
"State": "OR",
|
|
851
|
+
"Status": "Production"
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
"Condition": "Trichinellosis",
|
|
855
|
+
"State": "CT",
|
|
856
|
+
"Status": "Piloting"
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"Condition": "Trichinellosis",
|
|
860
|
+
"State": "FL",
|
|
861
|
+
"Status": "Piloting"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"Condition": "Trichinellosis",
|
|
865
|
+
"State": "ID",
|
|
866
|
+
"Status": "Onboarding"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"Condition": "Trichinellosis",
|
|
870
|
+
"State": "MI",
|
|
871
|
+
"Status": "Production"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"Condition": "Trichinellosis",
|
|
875
|
+
"State": "WI",
|
|
876
|
+
"Status": "Production"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"Condition": "Varicella",
|
|
880
|
+
"State": "FL",
|
|
881
|
+
"Status": "Piloting"
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
"Condition": "Varicella",
|
|
885
|
+
"State": "KS",
|
|
886
|
+
"Status": "Piloting"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"Condition": "Varicella",
|
|
890
|
+
"State": "MI",
|
|
891
|
+
"Status": "Piloting"
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"Condition": "Varicella",
|
|
895
|
+
"State": "SC",
|
|
896
|
+
"Status": "Piloting"
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"Condition": "Varicella",
|
|
900
|
+
"State": "UT",
|
|
901
|
+
"Status": "Production"
|
|
825
902
|
}
|
|
826
|
-
]
|
|
827
|
-
|
|
903
|
+
],
|
|
904
|
+
"dataFileName": "undefined.csv",
|
|
905
|
+
"dataFileSourceType": "file",
|
|
906
|
+
"dataDescription": {
|
|
907
|
+
"horizontal": true
|
|
908
|
+
},
|
|
909
|
+
"newViz": true,
|
|
910
|
+
"type": "map",
|
|
911
|
+
"general": {
|
|
912
|
+
"geoType": "us",
|
|
913
|
+
"geoBorderColor": "darkGray",
|
|
914
|
+
"headerColor": "theme-blue",
|
|
915
|
+
"showTitle": true,
|
|
916
|
+
"showSidebar": true,
|
|
917
|
+
"showDownloadButton": true,
|
|
918
|
+
"showDownloadMediaButton": false,
|
|
919
|
+
"displayAsHex": false,
|
|
920
|
+
"displayStateLabels": false,
|
|
921
|
+
"territoriesLabel": "Territories",
|
|
922
|
+
"language": "en",
|
|
923
|
+
"hasRegions": false,
|
|
924
|
+
"expandDataTable": true,
|
|
925
|
+
"fullBorder": false,
|
|
926
|
+
"type": "data",
|
|
927
|
+
"title": "Default US Map"
|
|
928
|
+
},
|
|
929
|
+
|
|
930
|
+
"geoType": "us",
|
|
931
|
+
"geoBorderColor": "darkGray",
|
|
932
|
+
"headerColor": "theme-blue",
|
|
933
|
+
"showTitle": true,
|
|
934
|
+
"showSidebar": true,
|
|
935
|
+
"showDownloadButton": true,
|
|
936
|
+
"showDownloadMediaButton": false,
|
|
937
|
+
"displayAsHex": false,
|
|
938
|
+
"displayStateLabels": false,
|
|
939
|
+
"territoriesLabel": "Territories",
|
|
940
|
+
"language": "en",
|
|
941
|
+
"hasRegions": false,
|
|
942
|
+
"expandDataTable": true,
|
|
943
|
+
"fullBorder": false,
|
|
944
|
+
"color": "pinkpurple",
|
|
945
|
+
"columns": {
|
|
946
|
+
"geo": { "name": "State", "label": "Location", "tooltip": false, "dataTable": true },
|
|
947
|
+
"primary": { "dataTable": true, "tooltip": true, "prefix": "", "suffix": "", "name": "Condition", "label": "" },
|
|
948
|
+
"navigate": { "name": "Condition" }
|
|
949
|
+
},
|
|
950
|
+
"legend": {
|
|
951
|
+
"descriptions": {},
|
|
952
|
+
"specialClasses": [],
|
|
953
|
+
"unified": false,
|
|
954
|
+
"singleColumn": false,
|
|
955
|
+
"dynamicDescription": false,
|
|
956
|
+
"type": "category",
|
|
957
|
+
"numberOfItems": 3,
|
|
958
|
+
"position": "side",
|
|
959
|
+
"title": "Legend"
|
|
960
|
+
},
|
|
961
|
+
"filters": [],
|
|
962
|
+
"dataTable": { "title": "Data Table", "forceDisplay": true },
|
|
963
|
+
"tooltips": {
|
|
964
|
+
"appearanceType": "hover",
|
|
965
|
+
"linkLabel": "Learn More",
|
|
966
|
+
"capitalizeLabels": true
|
|
967
|
+
}
|
|
968
|
+
}
|