@cdc/map 2.6.3 → 9.22.9

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.
Files changed (73) hide show
  1. package/dist/cdcmap.js +32 -18
  2. package/examples/bubble-us.json +363 -0
  3. package/examples/bubble-world.json +427 -0
  4. package/examples/default-county.json +64 -12
  5. package/examples/default-hex.json +477 -0
  6. package/examples/default-usa-regions.json +118 -0
  7. package/examples/default-usa.json +1 -1
  8. package/examples/default-world-data.json +1450 -0
  9. package/examples/default-world.json +5 -3
  10. package/examples/example-city-state.json +46 -1
  11. package/examples/gallery/categorical-qualitative.json +797 -0
  12. package/examples/gallery/categorical-scale-based.json +739 -0
  13. package/examples/gallery/city-state.json +479 -0
  14. package/examples/gallery/county.json +22731 -0
  15. package/examples/gallery/equal-interval.json +1027 -0
  16. package/examples/gallery/equal-number.json +1027 -0
  17. package/examples/gallery/filterable.json +909 -0
  18. package/examples/gallery/hex-filtered.json +420 -0
  19. package/examples/gallery/hex.json +413 -0
  20. package/examples/gallery/single-state.json +21402 -0
  21. package/examples/gallery/world.json +1592 -0
  22. package/examples/private/atsdr.json +439 -0
  23. package/examples/private/atsdr_new.json +436 -0
  24. package/examples/private/bubble.json +285 -0
  25. package/examples/private/city-state.json +428 -0
  26. package/examples/private/cty-issue.json +42768 -0
  27. package/examples/private/default-usa.json +460 -0
  28. package/examples/private/default-world-data.json +1444 -0
  29. package/examples/private/default.json +968 -0
  30. package/examples/private/legend-issue.json +1 -0
  31. package/examples/private/map-rounding-error.json +42759 -0
  32. package/examples/private/map.csv +60 -0
  33. package/examples/private/mdx.json +210 -0
  34. package/examples/private/monkeypox.json +376 -0
  35. package/examples/private/regions.json +52 -0
  36. package/examples/private/valid-data-map.csv +59 -0
  37. package/examples/private/wcmsrd-13881-data.json +2858 -0
  38. package/examples/private/wcmsrd-13881.json +5823 -0
  39. package/examples/private/wcmsrd-14492-data.json +292 -0
  40. package/examples/private/wcmsrd-14492.json +114 -0
  41. package/examples/private/wcmsrd-test.json +268 -0
  42. package/examples/private/world.json +1580 -0
  43. package/examples/private/worldmap.json +1490 -0
  44. package/package.json +51 -50
  45. package/src/CdcMap.js +496 -158
  46. package/src/components/BubbleList.js +244 -0
  47. package/src/components/CityList.js +41 -5
  48. package/src/components/CountyMap.js +16 -6
  49. package/src/components/DataTable.js +25 -18
  50. package/src/components/EditorPanel.js +915 -404
  51. package/src/components/Geo.js +1 -1
  52. package/src/components/Modal.js +2 -1
  53. package/src/components/NavigationMenu.js +4 -3
  54. package/src/components/Sidebar.js +14 -19
  55. package/src/components/SingleStateMap.js +11 -5
  56. package/src/components/UsaMap.js +103 -36
  57. package/src/components/UsaRegionMap.js +320 -0
  58. package/src/components/WorldMap.js +116 -34
  59. package/src/data/country-coordinates.js +250 -0
  60. package/src/data/{dfc-map.json → county-map.json} +0 -0
  61. package/src/data/initial-state.js +20 -2
  62. package/src/data/state-coordinates.js +55 -0
  63. package/src/data/supported-geos.js +96 -15
  64. package/src/data/us-regions-topo-2.json +360525 -0
  65. package/src/data/us-regions-topo.json +37894 -0
  66. package/src/hooks/useColorPalette.ts +96 -0
  67. package/src/index.html +7 -4
  68. package/src/scss/editor-panel.scss +78 -57
  69. package/src/scss/main.scss +1 -1
  70. package/src/scss/map.scss +112 -2
  71. package/src/scss/sidebar.scss +2 -1
  72. package/src/data/color-palettes.js +0 -200
  73. package/src/images/map-folded.svg +0 -1
@@ -0,0 +1,1027 @@
1
+ {
2
+ "general": {
3
+ "title": "Equal Intervals Map",
4
+ "subtext": "Map subtext",
5
+ "type": "data",
6
+ "geoType": "us",
7
+ "headerColor": "theme-cyan",
8
+ "showSidebar": true,
9
+ "showTitle": true,
10
+ "showDownloadButton": true,
11
+ "expandDataTable": false,
12
+ "backgroundColor": "#f5f5f5",
13
+ "geoBorderColor": "darkGray",
14
+ "territoriesLabel": "Territories",
15
+ "language": "en",
16
+ "hasRegions": false
17
+ },
18
+ "columns": {
19
+ "geo": {
20
+ "name": "STATE",
21
+ "label": "Location",
22
+ "tooltip": false,
23
+ "dataTable": true
24
+ },
25
+ "primary": {
26
+ "name": "Rate",
27
+ "label": "Rate",
28
+ "prefix": "",
29
+ "suffix": "%",
30
+ "dataTable": true,
31
+ "tooltip": true
32
+ },
33
+ "navigate": {
34
+ "name": "URL",
35
+ "tooltip": false,
36
+ "dataTable": false
37
+ },
38
+ "Location": {
39
+ "name": "Location",
40
+ "label": "Location",
41
+ "prefix": "",
42
+ "suffix": "",
43
+ "tooltip": true,
44
+ "dataTable": true
45
+ },
46
+ "geosInRegion": {
47
+ "name": ""
48
+ }
49
+ },
50
+ "legend": {
51
+ "numberOfItems": 4,
52
+ "position": "side",
53
+ "title": "Title of the Map",
54
+ "description": "Legend of the Map",
55
+ "type": "equalinterval",
56
+ "specialClasses": [],
57
+ "geosPerColor": {},
58
+ "unified": false,
59
+ "singleColumn": true,
60
+ "descriptions": {},
61
+ "dynamicDescription": false
62
+ },
63
+ "data": [
64
+ {
65
+ "STATE": "AL",
66
+ "Rate": 30,
67
+ "Location": "Vehicle",
68
+ "URL": "https:\/\/www.cdc.gov\/",
69
+ "$$hashKey": "object:195",
70
+ "stateabbreviation": "al",
71
+ "statename": "Alabama",
72
+ "stateId": "1",
73
+ "timeIntervalDataVal": 0,
74
+ "color": "class4_color1",
75
+ "$$stateabbreviation": "al",
76
+ "$$statename": "Alabama",
77
+ "$$stateId": "1",
78
+ "$$color": "class4_color1"
79
+ },
80
+ {
81
+ "STATE": "AK",
82
+ "Rate": 40,
83
+ "Location": "Work",
84
+ "URL": "https:\/\/www.cdc.gov\/",
85
+ "$$hashKey": "object:196",
86
+ "stateabbreviation": "ak",
87
+ "statename": "Alaska",
88
+ "stateId": "2",
89
+ "timeIntervalDataVal": 0,
90
+ "color": "class4_color2",
91
+ "$$stateabbreviation": "ak",
92
+ "$$statename": "Alaska",
93
+ "$$stateId": "2",
94
+ "$$color": "class4_color2"
95
+ },
96
+ {
97
+ "STATE": "AS",
98
+ "Rate": 55,
99
+ "Location": "Home",
100
+ "URL": "https:\/\/www.cdc.gov\/",
101
+ "$$hashKey": "object:197",
102
+ "type": "territory",
103
+ "stateabbreviation": "as",
104
+ "statename": "American Samoa",
105
+ "stateId": "60",
106
+ "timeIntervalDataVal": 0,
107
+ "color": "class4_color3",
108
+ "$$stateabbreviation": "as",
109
+ "$$statename": "American Samoa",
110
+ "$$stateId": "60",
111
+ "$$color": "class4_color3"
112
+ },
113
+ {
114
+ "STATE": "AZ",
115
+ "Rate": 57,
116
+ "Location": "School",
117
+ "URL": "https:\/\/www.cdc.gov\/",
118
+ "$$hashKey": "object:198",
119
+ "stateabbreviation": "az",
120
+ "statename": "Arizona",
121
+ "stateId": "4",
122
+ "timeIntervalDataVal": 0,
123
+ "color": "class4_color3",
124
+ "$$stateabbreviation": "az",
125
+ "$$statename": "Arizona",
126
+ "$$stateId": "4",
127
+ "$$color": "class4_color3"
128
+ },
129
+ {
130
+ "STATE": "AR",
131
+ "Rate": 60,
132
+ "Location": "School",
133
+ "URL": "https:\/\/www.cdc.gov\/",
134
+ "$$hashKey": "object:199",
135
+ "stateabbreviation": "ar",
136
+ "statename": "Arkansas",
137
+ "textoffsety": 3,
138
+ "stateId": "5",
139
+ "timeIntervalDataVal": 0,
140
+ "color": "class4_color3",
141
+ "$$stateabbreviation": "ar",
142
+ "$$statename": "Arkansas",
143
+ "$$stateId": "5",
144
+ "$$color": "class4_color3"
145
+ },
146
+ {
147
+ "STATE": "CA",
148
+ "Rate": 30,
149
+ "Location": "Home",
150
+ "URL": "https:\/\/www.cdc.gov\/",
151
+ "stateabbreviation": "ca",
152
+ "statename": "California",
153
+ "textoffsety": 10,
154
+ "stateId": "6",
155
+ "timeIntervalDataVal": 0,
156
+ "color": "class4_color1",
157
+ "$$stateabbreviation": "ca",
158
+ "$$statename": "California",
159
+ "$$stateId": "6",
160
+ "$$color": "class4_color1"
161
+ },
162
+ {
163
+ "STATE": "CO",
164
+ "Rate": 40,
165
+ "Location": "Vehicle",
166
+ "URL": "https:\/\/www.cdc.gov\/",
167
+ "stateabbreviation": "co",
168
+ "statename": "Colorado",
169
+ "textoffsety": 3,
170
+ "stateId": "8",
171
+ "timeIntervalDataVal": 0,
172
+ "color": "class4_color2",
173
+ "$$stateabbreviation": "co",
174
+ "$$statename": "Colorado",
175
+ "$$stateId": "8",
176
+ "$$color": "class4_color2"
177
+ },
178
+ {
179
+ "STATE": "CT",
180
+ "Rate": 55,
181
+ "Location": "Home",
182
+ "URL": "https:\/\/www.cdc.gov\/",
183
+ "type": "smallstate",
184
+ "stateabbreviation": "ct",
185
+ "statename": "Connecticut",
186
+ "textoffsetx": 2,
187
+ "textoffsety": 4,
188
+ "stateId": "9",
189
+ "timeIntervalDataVal": 0,
190
+ "color": "class4_color3",
191
+ "$$stateabbreviation": "ct",
192
+ "$$statename": "Connecticut",
193
+ "$$stateId": "9",
194
+ "$$color": "class4_color3"
195
+ },
196
+ {
197
+ "STATE": "DE",
198
+ "Rate": 57,
199
+ "Location": "Home",
200
+ "URL": "https:\/\/www.cdc.gov\/",
201
+ "type": "smallstate",
202
+ "stateabbreviation": "de",
203
+ "statename": "Delaware",
204
+ "stateId": "10",
205
+ "timeIntervalDataVal": 0,
206
+ "color": "class4_color3",
207
+ "$$stateabbreviation": "de",
208
+ "$$statename": "Delaware",
209
+ "$$stateId": "10",
210
+ "$$color": "class4_color3"
211
+ },
212
+ {
213
+ "STATE": "DC",
214
+ "Rate": 60,
215
+ "Location": "Home",
216
+ "URL": "https:\/\/www.cdc.gov\/",
217
+ "type": "smallstate",
218
+ "stateabbreviation": "dc",
219
+ "statename": "District of Columbia",
220
+ "stateId": "11",
221
+ "timeIntervalDataVal": 0,
222
+ "color": "class4_color3",
223
+ "$$stateabbreviation": "dc",
224
+ "$$statename": "District of Columbia",
225
+ "$$stateId": "11",
226
+ "$$color": "class4_color3"
227
+ },
228
+ {
229
+ "STATE": "FL",
230
+ "Rate": 30,
231
+ "Location": "Work",
232
+ "URL": "https:\/\/www.cdc.gov\/",
233
+ "stateabbreviation": "fl",
234
+ "statename": "Florida",
235
+ "textoffsetx": 8,
236
+ "textoffsety": 7,
237
+ "stateId": "12",
238
+ "timeIntervalDataVal": 0,
239
+ "color": "class4_color1",
240
+ "$$stateabbreviation": "fl",
241
+ "$$statename": "Florida",
242
+ "$$stateId": "12",
243
+ "$$color": "class4_color1"
244
+ },
245
+ {
246
+ "STATE": "GA",
247
+ "Rate": 40,
248
+ "Location": "Work",
249
+ "URL": "https:\/\/www.cdc.gov\/",
250
+ "stateabbreviation": "ga",
251
+ "statename": "Georgia",
252
+ "stateId": "13",
253
+ "timeIntervalDataVal": 0,
254
+ "color": "class4_color2",
255
+ "$$stateabbreviation": "ga",
256
+ "$$statename": "Georgia",
257
+ "$$stateId": "13",
258
+ "$$color": "class4_color2"
259
+ },
260
+ {
261
+ "STATE": "GU",
262
+ "Rate": 55,
263
+ "Location": "Home",
264
+ "URL": "https:\/\/www.cdc.gov\/",
265
+ "type": "territory",
266
+ "stateabbreviation": "gu",
267
+ "statename": "Guam",
268
+ "stateId": "66",
269
+ "timeIntervalDataVal": 0,
270
+ "color": "class4_color3",
271
+ "$$stateabbreviation": "gu",
272
+ "$$statename": "Guam",
273
+ "$$stateId": "66",
274
+ "$$color": "class4_color3"
275
+ },
276
+ {
277
+ "STATE": "HI",
278
+ "Rate": 57,
279
+ "Location": "School",
280
+ "URL": "https:\/\/www.cdc.gov\/",
281
+ "stateabbreviation": "hi",
282
+ "statename": "Hawaii",
283
+ "textoffsetx": -15,
284
+ "textoffsety": 7,
285
+ "stateId": "15",
286
+ "timeIntervalDataVal": 0,
287
+ "color": "class4_color3",
288
+ "$$stateabbreviation": "hi",
289
+ "$$statename": "Hawaii",
290
+ "$$stateId": "15",
291
+ "$$color": "class4_color3"
292
+ },
293
+ {
294
+ "STATE": "ID",
295
+ "Rate": 60,
296
+ "Location": "School",
297
+ "URL": "https:\/\/www.cdc.gov\/",
298
+ "stateabbreviation": "id",
299
+ "statename": "Idaho",
300
+ "textoffsety": 10,
301
+ "stateId": "16",
302
+ "timeIntervalDataVal": 0,
303
+ "color": "class4_color3",
304
+ "$$stateabbreviation": "id",
305
+ "$$statename": "Idaho",
306
+ "$$stateId": "16",
307
+ "$$color": "class4_color3"
308
+ },
309
+ {
310
+ "STATE": "IL",
311
+ "Rate": 30,
312
+ "Location": "Work",
313
+ "URL": "https:\/\/www.cdc.gov\/",
314
+ "stateabbreviation": "il",
315
+ "statename": "Illinois",
316
+ "stateId": "17",
317
+ "timeIntervalDataVal": 0,
318
+ "color": "class4_color1",
319
+ "$$stateabbreviation": "il",
320
+ "$$statename": "Illinois",
321
+ "$$stateId": "17",
322
+ "$$color": "class4_color1"
323
+ },
324
+ {
325
+ "STATE": "IN",
326
+ "Rate": 40,
327
+ "Location": "Vehicle",
328
+ "URL": "https:\/\/www.cdc.gov\/",
329
+ "stateabbreviation": "in",
330
+ "statename": "Indiana",
331
+ "stateId": "18",
332
+ "timeIntervalDataVal": 0,
333
+ "color": "class4_color2",
334
+ "$$stateabbreviation": "in",
335
+ "$$statename": "Indiana",
336
+ "$$stateId": "18",
337
+ "$$color": "class4_color2"
338
+ },
339
+ {
340
+ "STATE": "IA",
341
+ "Rate": 55,
342
+ "Location": "Home",
343
+ "URL": "https:\/\/www.cdc.gov\/",
344
+ "stateabbreviation": "ia",
345
+ "statename": "Iowa",
346
+ "textoffsety": 3,
347
+ "stateId": "19",
348
+ "timeIntervalDataVal": 0,
349
+ "color": "class4_color3",
350
+ "$$stateabbreviation": "ia",
351
+ "$$statename": "Iowa",
352
+ "$$stateId": "19",
353
+ "$$color": "class4_color3"
354
+ },
355
+ {
356
+ "STATE": "KS",
357
+ "Rate": 57,
358
+ "Location": "Home",
359
+ "URL": "https:\/\/www.cdc.gov\/",
360
+ "stateabbreviation": "ks",
361
+ "statename": "Kansas",
362
+ "textoffsety": 5,
363
+ "stateId": "20",
364
+ "timeIntervalDataVal": 0,
365
+ "color": "class4_color3",
366
+ "$$stateabbreviation": "ks",
367
+ "$$statename": "Kansas",
368
+ "$$stateId": "20",
369
+ "$$color": "class4_color3"
370
+ },
371
+ {
372
+ "STATE": "KY",
373
+ "Rate": 60,
374
+ "Location": "NA",
375
+ "URL": "https:\/\/www.cdc.gov\/",
376
+ "stateabbreviation": "ky",
377
+ "statename": "Kentucky",
378
+ "textoffsetx": 4,
379
+ "textoffsety": 3,
380
+ "stateId": "21",
381
+ "timeIntervalDataVal": 0,
382
+ "color": "class4_color3",
383
+ "$$stateabbreviation": "ky",
384
+ "$$statename": "Kentucky",
385
+ "$$stateId": "21",
386
+ "$$color": "class4_color3"
387
+ },
388
+ {
389
+ "STATE": "LA",
390
+ "Rate": 30,
391
+ "Location": "Vehicle",
392
+ "URL": "https:\/\/www.cdc.gov\/",
393
+ "stateabbreviation": "la",
394
+ "statename": "Louisiana",
395
+ "textoffsetx": -5,
396
+ "stateId": "22",
397
+ "timeIntervalDataVal": 0,
398
+ "color": "class4_color1",
399
+ "$$stateabbreviation": "la",
400
+ "$$statename": "Louisiana",
401
+ "$$stateId": "22",
402
+ "$$color": "class4_color1"
403
+ },
404
+ {
405
+ "STATE": "ME",
406
+ "Rate": 40,
407
+ "Location": "Work",
408
+ "URL": "https:\/\/www.cdc.gov\/",
409
+ "stateabbreviation": "me",
410
+ "statename": "Maine",
411
+ "stateId": "23",
412
+ "timeIntervalDataVal": 0,
413
+ "color": "class4_color2",
414
+ "$$stateabbreviation": "me",
415
+ "$$statename": "Maine",
416
+ "$$stateId": "23",
417
+ "$$color": "class4_color2"
418
+ },
419
+ {
420
+ "STATE": "MH",
421
+ "Rate": 55,
422
+ "Location": "Home",
423
+ "URL": "https:\/\/www.cdc.gov\/",
424
+ "type": "territory",
425
+ "stateabbreviation": "mh",
426
+ "statename": "Marshall Islands",
427
+ "stateId": "68",
428
+ "timeIntervalDataVal": 0,
429
+ "color": "class4_color3",
430
+ "$$stateabbreviation": "mh",
431
+ "$$statename": "Marshall Islands",
432
+ "$$stateId": "68",
433
+ "$$color": "class4_color3"
434
+ },
435
+ {
436
+ "STATE": "MD",
437
+ "Rate": 57,
438
+ "Location": "School",
439
+ "URL": "https:\/\/www.cdc.gov\/",
440
+ "type": "smallstate",
441
+ "stateabbreviation": "md",
442
+ "statename": "Maryland",
443
+ "textoffsetx": 2,
444
+ "textoffsety": 2,
445
+ "stateId": "24",
446
+ "timeIntervalDataVal": 0,
447
+ "color": "class4_color3",
448
+ "$$stateabbreviation": "md",
449
+ "$$statename": "Maryland",
450
+ "$$stateId": "24",
451
+ "$$color": "class4_color3"
452
+ },
453
+ {
454
+ "STATE": "MA",
455
+ "Rate": 60,
456
+ "Location": "School",
457
+ "URL": "https:\/\/www.cdc.gov\/",
458
+ "stateabbreviation": "ma",
459
+ "statename": "Massachusetts",
460
+ "textoffsety": 3,
461
+ "stateId": "25",
462
+ "timeIntervalDataVal": 0,
463
+ "color": "class4_color3",
464
+ "$$stateabbreviation": "ma",
465
+ "$$statename": "Massachusetts",
466
+ "$$stateId": "25",
467
+ "$$color": "class4_color3"
468
+ },
469
+ {
470
+ "STATE": "MI",
471
+ "Rate": 12,
472
+ "Location": "Work",
473
+ "URL": "https:\/\/www.cdc.gov\/",
474
+ "stateabbreviation": "mi",
475
+ "statename": "Michigan",
476
+ "textoffsetx": 6,
477
+ "textoffsety": 10,
478
+ "stateId": "26",
479
+ "timeIntervalDataVal": 0,
480
+ "color": "class4_color1",
481
+ "$$stateabbreviation": "mi",
482
+ "$$statename": "Michigan",
483
+ "$$stateId": "26",
484
+ "$$color": "class4_color1"
485
+ },
486
+ {
487
+ "STATE": "FM",
488
+ "Rate": 65,
489
+ "Location": "Vehicle",
490
+ "URL": "https:\/\/www.cdc.gov\/",
491
+ "type": "territory",
492
+ "stateabbreviation": "fm",
493
+ "statename": "Micronesia",
494
+ "stateId": "71",
495
+ "timeIntervalDataVal": 0,
496
+ "color": "class4_color3",
497
+ "$$stateabbreviation": "fm",
498
+ "$$statename": "Micronesia",
499
+ "$$stateId": "71",
500
+ "$$color": "class4_color3"
501
+ },
502
+ {
503
+ "STATE": "MN",
504
+ "Rate": 55,
505
+ "Location": "Home",
506
+ "URL": "https:\/\/www.cdc.gov\/",
507
+ "stateabbreviation": "mn",
508
+ "statename": "Minnesota",
509
+ "stateId": "27",
510
+ "timeIntervalDataVal": 0,
511
+ "color": "class4_color3",
512
+ "$$stateabbreviation": "mn",
513
+ "$$statename": "Minnesota",
514
+ "$$stateId": "27",
515
+ "$$color": "class4_color3"
516
+ },
517
+ {
518
+ "STATE": "MS",
519
+ "Rate": 57,
520
+ "Location": "Home",
521
+ "URL": "https:\/\/www.cdc.gov\/",
522
+ "stateabbreviation": "ms",
523
+ "statename": "Mississippi",
524
+ "stateId": "28",
525
+ "timeIntervalDataVal": 0,
526
+ "color": "class4_color3",
527
+ "$$stateabbreviation": "ms",
528
+ "$$statename": "Mississippi",
529
+ "$$stateId": "28",
530
+ "$$color": "class4_color3"
531
+ },
532
+ {
533
+ "STATE": "MO",
534
+ "Rate": 60,
535
+ "Location": "Home",
536
+ "URL": "https:\/\/www.cdc.gov\/",
537
+ "stateabbreviation": "mo",
538
+ "statename": "Missouri",
539
+ "textoffsety": 5,
540
+ "stateId": "29",
541
+ "timeIntervalDataVal": 0,
542
+ "color": "class4_color3",
543
+ "$$stateabbreviation": "mo",
544
+ "$$statename": "Missouri",
545
+ "$$stateId": "29",
546
+ "$$color": "class4_color3"
547
+ },
548
+ {
549
+ "STATE": "MT",
550
+ "Rate": 30,
551
+ "Location": "Vehicle",
552
+ "URL": "https:\/\/www.cdc.gov\/",
553
+ "stateabbreviation": "mt",
554
+ "statename": "Montana",
555
+ "stateId": "30",
556
+ "timeIntervalDataVal": 0,
557
+ "color": "class4_color1",
558
+ "$$stateabbreviation": "mt",
559
+ "$$statename": "Montana",
560
+ "$$stateId": "30",
561
+ "$$color": "class4_color1"
562
+ },
563
+ {
564
+ "STATE": "NE",
565
+ "Rate": 40,
566
+ "Location": "Work",
567
+ "URL": "https:\/\/www.cdc.gov\/",
568
+ "stateabbreviation": "ne",
569
+ "statename": "Nebraska",
570
+ "textoffsety": 3,
571
+ "stateId": "31",
572
+ "timeIntervalDataVal": 0,
573
+ "color": "class4_color2",
574
+ "$$stateabbreviation": "ne",
575
+ "$$statename": "Nebraska",
576
+ "$$stateId": "31",
577
+ "$$color": "class4_color2"
578
+ },
579
+ {
580
+ "STATE": "NV",
581
+ "Rate": 55,
582
+ "Location": "Home",
583
+ "URL": "https:\/\/www.cdc.gov\/",
584
+ "stateabbreviation": "nv",
585
+ "statename": "Nevada",
586
+ "stateId": "32",
587
+ "timeIntervalDataVal": 0,
588
+ "color": "class4_color3",
589
+ "$$stateabbreviation": "nv",
590
+ "$$statename": "Nevada",
591
+ "$$stateId": "32",
592
+ "$$color": "class4_color3"
593
+ },
594
+ {
595
+ "STATE": "NH",
596
+ "Rate": 57,
597
+ "Location": "School",
598
+ "URL": "https:\/\/www.cdc.gov\/",
599
+ "type": "smallstate",
600
+ "stateabbreviation": "nh",
601
+ "statename": "New Hampshire",
602
+ "textoffsety": 6,
603
+ "stateId": "33",
604
+ "timeIntervalDataVal": 0,
605
+ "color": "class4_color3",
606
+ "$$stateabbreviation": "nh",
607
+ "$$statename": "New Hampshire",
608
+ "$$stateId": "33",
609
+ "$$color": "class4_color3"
610
+ },
611
+ {
612
+ "STATE": "NJ",
613
+ "Rate": 60,
614
+ "Location": "School",
615
+ "URL": "https:\/\/www.cdc.gov\/",
616
+ "type": "smallstate",
617
+ "stateabbreviation": "nj",
618
+ "statename": "New Jersey",
619
+ "stateId": "34",
620
+ "timeIntervalDataVal": 0,
621
+ "color": "class4_color3",
622
+ "$$stateabbreviation": "nj",
623
+ "$$statename": "New Jersey",
624
+ "$$stateId": "34",
625
+ "$$color": "class4_color3"
626
+ },
627
+ {
628
+ "STATE": "NM",
629
+ "Rate": 12,
630
+ "Location": "Work",
631
+ "URL": "https:\/\/www.cdc.gov\/",
632
+ "stateabbreviation": "nm",
633
+ "statename": "New Mexico",
634
+ "textoffsety": 3,
635
+ "stateId": "35",
636
+ "timeIntervalDataVal": 0,
637
+ "color": "class4_color1",
638
+ "$$stateabbreviation": "nm",
639
+ "$$statename": "New Mexico",
640
+ "$$stateId": "35",
641
+ "$$color": "class4_color1"
642
+ },
643
+ {
644
+ "STATE": "NY",
645
+ "Rate": 40,
646
+ "Location": "Vehicle",
647
+ "URL": "https:\/\/www.cdc.gov\/",
648
+ "stateabbreviation": "ny",
649
+ "statename": "New York",
650
+ "stateId": "36",
651
+ "timeIntervalDataVal": 0,
652
+ "color": "class4_color2",
653
+ "$$stateabbreviation": "ny",
654
+ "$$statename": "New York",
655
+ "$$stateId": "36",
656
+ "$$color": "class4_color2"
657
+ },
658
+ {
659
+ "STATE": "NC",
660
+ "Rate": 55,
661
+ "Location": "Home",
662
+ "URL": "https:\/\/www.cdc.gov\/",
663
+ "stateabbreviation": "nc",
664
+ "statename": "North Carolina",
665
+ "textoffsety": 3,
666
+ "stateId": "37",
667
+ "timeIntervalDataVal": 0,
668
+ "color": "class4_color3",
669
+ "$$stateabbreviation": "nc",
670
+ "$$statename": "North Carolina",
671
+ "$$stateId": "37",
672
+ "$$color": "class4_color3"
673
+ },
674
+ {
675
+ "STATE": "ND",
676
+ "Rate": 57,
677
+ "Location": "Home",
678
+ "URL": "https:\/\/www.cdc.gov\/",
679
+ "stateabbreviation": "nd",
680
+ "statename": "North Dakota",
681
+ "textoffsety": 3,
682
+ "stateId": "38",
683
+ "timeIntervalDataVal": 0,
684
+ "color": "class4_color3",
685
+ "$$stateabbreviation": "nd",
686
+ "$$statename": "North Dakota",
687
+ "$$stateId": "38",
688
+ "$$color": "class4_color3"
689
+ },
690
+ {
691
+ "STATE": "MP",
692
+ "Rate": 60,
693
+ "Location": "Home",
694
+ "URL": "https:\/\/www.cdc.gov\/",
695
+ "type": "territory",
696
+ "stateabbreviation": "mp",
697
+ "statename": "Northern Mariana Islands",
698
+ "stateId": "69",
699
+ "timeIntervalDataVal": 0,
700
+ "color": "class4_color3",
701
+ "$$stateabbreviation": "mp",
702
+ "$$statename": "Northern Mariana Islands",
703
+ "$$stateId": "69",
704
+ "$$color": "class4_color3"
705
+ },
706
+ {
707
+ "STATE": "OH",
708
+ "Rate": 88,
709
+ "Location": "Vehicle",
710
+ "URL": "https:\/\/www.cdc.gov\/",
711
+ "stateabbreviation": "oh",
712
+ "statename": "Ohio",
713
+ "textoffsety": 5,
714
+ "stateId": "39",
715
+ "timeIntervalDataVal": 0,
716
+ "color": "class4_color4",
717
+ "$$stateabbreviation": "oh",
718
+ "$$statename": "Ohio",
719
+ "$$stateId": "39",
720
+ "$$color": "class4_color4"
721
+ },
722
+ {
723
+ "STATE": "OK",
724
+ "Rate": 40,
725
+ "Location": "Work",
726
+ "URL": "https:\/\/www.cdc.gov\/",
727
+ "stateabbreviation": "ok",
728
+ "statename": "Oklahoma",
729
+ "textoffsety": 3,
730
+ "stateId": "40",
731
+ "timeIntervalDataVal": 0,
732
+ "color": "class4_color2",
733
+ "$$stateabbreviation": "ok",
734
+ "$$statename": "Oklahoma",
735
+ "$$stateId": "40",
736
+ "$$color": "class4_color2"
737
+ },
738
+ {
739
+ "STATE": "OR",
740
+ "Rate": 55,
741
+ "Location": "Home",
742
+ "URL": "https:\/\/www.cdc.gov\/",
743
+ "stateabbreviation": "or",
744
+ "statename": "Oregon",
745
+ "textoffsety": 3,
746
+ "stateId": "41",
747
+ "timeIntervalDataVal": 0,
748
+ "color": "class4_color3",
749
+ "$$stateabbreviation": "or",
750
+ "$$statename": "Oregon",
751
+ "$$stateId": "41",
752
+ "$$color": "class4_color3"
753
+ },
754
+ {
755
+ "STATE": "PW",
756
+ "Rate": 15,
757
+ "Location": "School",
758
+ "URL": "https:\/\/www.cdc.gov\/",
759
+ "type": "territory",
760
+ "stateabbreviation": "pw",
761
+ "statename": "Palau",
762
+ "stateId": "70",
763
+ "timeIntervalDataVal": 0,
764
+ "color": "class4_color1",
765
+ "$$stateabbreviation": "pw",
766
+ "$$statename": "Palau",
767
+ "$$stateId": "70",
768
+ "$$color": "class4_color1"
769
+ },
770
+ {
771
+ "STATE": "PA",
772
+ "Rate": 60,
773
+ "Location": "School",
774
+ "URL": "https:\/\/www.cdc.gov\/",
775
+ "stateabbreviation": "pa",
776
+ "statename": "Pennsylvania",
777
+ "textoffsety": 5,
778
+ "stateId": "42",
779
+ "timeIntervalDataVal": 0,
780
+ "color": "class4_color3",
781
+ "$$stateabbreviation": "pa",
782
+ "$$statename": "Pennsylvania",
783
+ "$$stateId": "42",
784
+ "$$color": "class4_color3"
785
+ },
786
+ {
787
+ "STATE": "PR",
788
+ "Rate": 30,
789
+ "Location": "Work",
790
+ "URL": "https:\/\/www.cdc.gov\/",
791
+ "type": "territory",
792
+ "stateabbreviation": "pr",
793
+ "statename": "Puerto Rico",
794
+ "stateId": "72",
795
+ "timeIntervalDataVal": 0,
796
+ "color": "class4_color1",
797
+ "$$stateabbreviation": "pr",
798
+ "$$statename": "Puerto Rico",
799
+ "$$stateId": "72",
800
+ "$$color": "class4_color1"
801
+ },
802
+ {
803
+ "STATE": "RI",
804
+ "Rate": 40,
805
+ "Location": "Vehicle",
806
+ "URL": "https:\/\/www.cdc.gov\/",
807
+ "type": "smallstate",
808
+ "stateabbreviation": "ri",
809
+ "statename": "Rhode Island",
810
+ "stateId": "44",
811
+ "timeIntervalDataVal": 0,
812
+ "color": "class4_color2",
813
+ "$$stateabbreviation": "ri",
814
+ "$$statename": "Rhode Island",
815
+ "$$stateId": "44",
816
+ "$$color": "class4_color2"
817
+ },
818
+ {
819
+ "STATE": "SC",
820
+ "Rate": 55,
821
+ "Location": "Home",
822
+ "URL": "https:\/\/www.cdc.gov\/",
823
+ "stateabbreviation": "sc",
824
+ "statename": "South Carolina",
825
+ "textoffsety": 3,
826
+ "stateId": "45",
827
+ "timeIntervalDataVal": 0,
828
+ "color": "class4_color3",
829
+ "$$stateabbreviation": "sc",
830
+ "$$statename": "South Carolina",
831
+ "$$stateId": "45",
832
+ "$$color": "class4_color3"
833
+ },
834
+ {
835
+ "STATE": "SD",
836
+ "Rate": 86,
837
+ "Location": "Home",
838
+ "URL": "https:\/\/www.cdc.gov\/",
839
+ "stateabbreviation": "sd",
840
+ "statename": "South Dakota",
841
+ "textoffsety": 3,
842
+ "stateId": "46",
843
+ "timeIntervalDataVal": 0,
844
+ "color": "class4_color4",
845
+ "$$stateabbreviation": "sd",
846
+ "$$statename": "South Dakota",
847
+ "$$stateId": "46",
848
+ "$$color": "class4_color4"
849
+ },
850
+ {
851
+ "STATE": "TN",
852
+ "Rate": 60,
853
+ "Location": "Home",
854
+ "URL": "https:\/\/www.cdc.gov\/",
855
+ "stateabbreviation": "tn",
856
+ "statename": "Tennessee",
857
+ "textoffsety": 4,
858
+ "stateId": "47",
859
+ "timeIntervalDataVal": 0,
860
+ "color": "class4_color3",
861
+ "$$stateabbreviation": "tn",
862
+ "$$statename": "Tennessee",
863
+ "$$stateId": "47",
864
+ "$$color": "class4_color3"
865
+ },
866
+ {
867
+ "STATE": "TX",
868
+ "Rate": 30,
869
+ "Location": "Vehicle",
870
+ "URL": "https:\/\/www.cdc.gov\/",
871
+ "stateabbreviation": "tx",
872
+ "statename": "Texas",
873
+ "stateId": "48",
874
+ "timeIntervalDataVal": 0,
875
+ "color": "class4_color1",
876
+ "$$stateabbreviation": "tx",
877
+ "$$statename": "Texas",
878
+ "$$stateId": "48",
879
+ "$$color": "class4_color1"
880
+ },
881
+ {
882
+ "STATE": "UT",
883
+ "Rate": 54,
884
+ "Location": "Work",
885
+ "URL": "https:\/\/www.cdc.gov\/",
886
+ "stateabbreviation": "ut",
887
+ "statename": "Utah",
888
+ "textoffsety": 3,
889
+ "stateId": "49",
890
+ "timeIntervalDataVal": 0,
891
+ "color": "class4_color3",
892
+ "$$stateabbreviation": "ut",
893
+ "$$statename": "Utah",
894
+ "$$stateId": "49",
895
+ "$$color": "class4_color3"
896
+ },
897
+ {
898
+ "STATE": "VT",
899
+ "Rate": 40,
900
+ "Location": "Home",
901
+ "URL": "https:\/\/www.cdc.gov\/",
902
+ "type": "smallstate",
903
+ "stateabbreviation": "vt",
904
+ "statename": "Vermont",
905
+ "stateId": "50",
906
+ "timeIntervalDataVal": 0,
907
+ "color": "class4_color2",
908
+ "$$stateabbreviation": "vt",
909
+ "$$statename": "Vermont",
910
+ "$$stateId": "50",
911
+ "$$color": "class4_color2"
912
+ },
913
+ {
914
+ "STATE": "VI",
915
+ "Rate": 55,
916
+ "Location": "School",
917
+ "URL": "https:\/\/www.cdc.gov\/",
918
+ "type": "territory",
919
+ "stateabbreviation": "vi",
920
+ "statename": "Virgin Islands",
921
+ "stateId": "78",
922
+ "timeIntervalDataVal": 0,
923
+ "color": "class4_color3",
924
+ "$$stateabbreviation": "vi",
925
+ "$$statename": "Virgin Islands",
926
+ "$$stateId": "78",
927
+ "$$color": "class4_color3"
928
+ },
929
+ {
930
+ "STATE": "VA",
931
+ "Rate": 57,
932
+ "Location": "School",
933
+ "URL": "https:\/\/www.cdc.gov\/",
934
+ "stateabbreviation": "va",
935
+ "statename": "Virginia",
936
+ "textoffsety": 3,
937
+ "stateId": "51",
938
+ "timeIntervalDataVal": 0,
939
+ "color": "class4_color3",
940
+ "$$stateabbreviation": "va",
941
+ "$$statename": "Virginia",
942
+ "$$stateId": "51",
943
+ "$$color": "class4_color3"
944
+ },
945
+ {
946
+ "STATE": "WA",
947
+ "Rate": 62,
948
+ "Location": "Work",
949
+ "URL": "https:\/\/www.cdc.gov\/",
950
+ "stateabbreviation": "wa",
951
+ "statename": "Washington",
952
+ "textoffsety": 5,
953
+ "stateId": "53",
954
+ "timeIntervalDataVal": 0,
955
+ "color": "class4_color3",
956
+ "$$stateabbreviation": "wa",
957
+ "$$statename": "Washington",
958
+ "$$stateId": "53",
959
+ "$$color": "class4_color3"
960
+ },
961
+ {
962
+ "STATE": "WV",
963
+ "Rate": 25,
964
+ "Location": "Vehicle",
965
+ "URL": "https:\/\/www.cdc.gov\/",
966
+ "stateabbreviation": "wv",
967
+ "statename": "West Virginia",
968
+ "textoffsetx": -4,
969
+ "textoffsety": 10,
970
+ "stateId": "54",
971
+ "timeIntervalDataVal": 0,
972
+ "color": "class4_color1",
973
+ "$$stateabbreviation": "wv",
974
+ "$$statename": "West Virginia",
975
+ "$$stateId": "54",
976
+ "$$color": "class4_color1"
977
+ },
978
+ {
979
+ "STATE": "WI",
980
+ "Rate": 40,
981
+ "Location": "Home",
982
+ "URL": "https:\/\/www.cdc.gov\/",
983
+ "stateabbreviation": "wi",
984
+ "statename": "Wisconsin",
985
+ "stateId": "55",
986
+ "timeIntervalDataVal": 0,
987
+ "color": "class4_color2",
988
+ "$$stateabbreviation": "wi",
989
+ "$$statename": "Wisconsin",
990
+ "$$stateId": "55",
991
+ "$$color": "class4_color2"
992
+ },
993
+ {
994
+ "STATE": "WY",
995
+ "Rate": 55,
996
+ "Location": "Home",
997
+ "URL": "https:\/\/www.cdc.gov\/",
998
+ "stateabbreviation": "wy",
999
+ "statename": "Wyoming",
1000
+ "textoffsety": 3,
1001
+ "stateId": "56",
1002
+ "timeIntervalDataVal": 0,
1003
+ "color": "class4_color3",
1004
+ "$$stateabbreviation": "wy",
1005
+ "$$statename": "Wyoming",
1006
+ "$$stateId": "56",
1007
+ "$$color": "class4_color3"
1008
+ }
1009
+ ],
1010
+ "filters": [],
1011
+ "sharing": {
1012
+ "enabled": false,
1013
+ "dataHost": "wcms-wp.cdc.gov",
1014
+ "configUrl": "\/wcms\/4.0\/cdc-wp\/data-presentation\/page-elements\/equal-interval-map.json"
1015
+ },
1016
+ "dataTable": {
1017
+ "title": "Data Table"
1018
+ },
1019
+ "tooltips": {
1020
+ "appearanceType": "click",
1021
+ "linkLabel": "Learn More",
1022
+ "capitalizeLabels": true
1023
+ },
1024
+ "color": "yelloworangebrown",
1025
+ "usingWidgetLoader": true,
1026
+ "type": "map"
1027
+ }