@cdc/map 4.26.3 → 4.26.5

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 (105) hide show
  1. package/CONFIG.md +268 -0
  2. package/README.md +74 -24
  3. package/dist/cdcmap-CY9IcPSi.es.js +6 -0
  4. package/dist/cdcmap-DlpiY3fQ.es.js +4 -0
  5. package/dist/cdcmap.js +29168 -27482
  6. package/examples/{testing-layer-2.json → __data__/testing-layer-2.json} +1 -1
  7. package/examples/{testing-layer.json → __data__/testing-layer.json} +1 -1
  8. package/examples/county-hsa-toggle.json +51993 -0
  9. package/examples/custom-map-layers.json +2 -2
  10. package/examples/default-county.json +6 -3
  11. package/examples/minimal-example.json +73 -0
  12. package/examples/private/annotation-bug.json +2 -2
  13. package/examples/private/css-issue.json +314 -0
  14. package/examples/private/region-breaking.json +1639 -0
  15. package/examples/private/test1.json +27247 -0
  16. package/package.json +4 -4
  17. package/src/CdcMapComponent.tsx +107 -14
  18. package/src/_stories/CdcMap.AltText.stories.tsx +122 -0
  19. package/src/_stories/CdcMap.Editor.ColumnsSectionTests.stories.tsx +600 -0
  20. package/src/_stories/CdcMap.Editor.DataTableSectionTests.stories.tsx +404 -0
  21. package/src/_stories/CdcMap.Editor.FiltersSectionTests.stories.tsx +229 -0
  22. package/src/_stories/CdcMap.Editor.GeneralSectionTests.stories.tsx +262 -0
  23. package/src/_stories/CdcMap.Editor.LegendSectionTests.stories.tsx +541 -0
  24. package/src/_stories/CdcMap.Editor.MultiCountryWorldMapTests.stories.tsx +359 -0
  25. package/src/_stories/CdcMap.Editor.PatternSettingsSectionTests.stories.tsx +516 -0
  26. package/src/_stories/CdcMap.Editor.SmallMultiplesSectionTests.stories.tsx +165 -0
  27. package/src/_stories/CdcMap.Editor.TextAnnotationsSectionTests.stories.tsx +145 -0
  28. package/src/_stories/CdcMap.Editor.TypeSectionTests.stories.tsx +312 -0
  29. package/src/_stories/CdcMap.Editor.VisualSectionTests.stories.tsx +359 -0
  30. package/src/_stories/CdcMap.Editor.ZoomControlsTests.stories.tsx +88 -0
  31. package/src/_stories/CdcMap.FocusVisibility.stories.tsx +87 -0
  32. package/src/_stories/CdcMap.HiddenMount.stories.tsx +69 -0
  33. package/src/_stories/CdcMap.ResetBehavior.stories.tsx +32 -0
  34. package/src/_stories/CdcMap.Zoom.stories.tsx +111 -0
  35. package/src/_stories/{CdcMap.stories.tsx → CdcMap.smoke.stories.tsx} +60 -0
  36. package/src/_stories/_mock/alt_text_metadata.json +65 -0
  37. package/src/_stories/_mock/legends/legend-tests.json +3 -3
  38. package/src/_stories/_mock/world-bubble-reset.json +138 -0
  39. package/src/_stories/_mock/world-data-zoom-filters.json +166 -0
  40. package/src/components/Annotation/AnnotationList.tsx +1 -1
  41. package/src/components/BubbleList.tsx +13 -0
  42. package/src/components/EditorPanel/components/EditorPanel.tsx +637 -382
  43. package/src/components/EditorPanel/components/HexShapeSettings.tsx +1 -1
  44. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +112 -117
  45. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +26 -13
  46. package/src/components/EditorPanel/components/editorPanel.styles.css +22 -2
  47. package/src/components/FilterControls.tsx +21 -0
  48. package/src/components/Legend/components/Legend.tsx +3 -3
  49. package/src/components/Legend/components/LegendItem.Hex.tsx +4 -2
  50. package/src/components/SmallMultiples/SmallMultiples.tsx +2 -2
  51. package/src/components/SmallMultiples/SynchronizedTooltip.tsx +1 -1
  52. package/src/components/UsaMap/components/UsaMap.County.tsx +309 -108
  53. package/src/components/UsaMap/components/UsaMap.Region.tsx +5 -2
  54. package/src/components/UsaMap/components/UsaMap.SingleState.tsx +33 -10
  55. package/src/components/UsaMap/components/UsaMap.State.tsx +10 -3
  56. package/src/components/UsaMap/data/cb_2019_us_county_20m.json +75817 -1
  57. package/src/components/UsaMap/data/hsa_fips_mapping.json +3144 -0
  58. package/src/components/WorldMap/WorldMap.tsx +37 -4
  59. package/src/components/WorldMap/data/world-topo.json +1 -1
  60. package/src/components/ZoomableGroup.tsx +23 -3
  61. package/src/components/filterControls.styles.css +6 -0
  62. package/src/data/initial-state.js +3 -0
  63. package/src/data/supported-counties.json +1 -1
  64. package/src/helpers/countyTerritories.ts +38 -0
  65. package/src/helpers/dataTableHelpers.ts +35 -6
  66. package/src/helpers/generateRuntimeFilters.ts +2 -1
  67. package/src/helpers/handleMapAriaLabels.ts +45 -30
  68. package/src/helpers/shouldAutoResetSingleStateZoom.ts +22 -0
  69. package/src/helpers/tests/countyTerritories.test.ts +87 -0
  70. package/src/helpers/tests/handleMapAriaLabels.test.ts +71 -0
  71. package/src/helpers/tests/shouldAutoResetSingleStateZoom.test.ts +71 -0
  72. package/src/hooks/useApplyTooltipsToGeo.tsx +7 -4
  73. package/src/hooks/useGeoClickHandler.ts +13 -1
  74. package/src/hooks/useMapLayers.tsx +1 -1
  75. package/src/hooks/useStateZoom.tsx +39 -20
  76. package/src/hooks/useTooltip.test.tsx +2 -16
  77. package/src/hooks/useTooltip.ts +18 -7
  78. package/src/index.jsx +5 -2
  79. package/src/scss/main.scss +6 -21
  80. package/src/scss/map.scss +20 -0
  81. package/src/store/map.actions.ts +5 -2
  82. package/src/store/map.reducer.ts +12 -3
  83. package/src/test/CdcMap.test.jsx +24 -0
  84. package/src/types/MapConfig.ts +11 -0
  85. package/src/types/MapContext.ts +6 -1
  86. package/topojson-updater/README.txt +1 -1
  87. package/dist/cdcmap-vr9HZwRt.es.js +0 -6
  88. package/examples/__data__/city-state-data.json +0 -668
  89. package/examples/city-state.json +0 -434
  90. package/examples/default-world-data.json +0 -1450
  91. package/examples/new-cities.json +0 -656
  92. package/src/_stories/CdcMap.Editor.stories.tsx +0 -3648
  93. package/topojson-updater/package-lock.json +0 -223
  94. /package/src/_stories/{CdcMap.ColumnWrap.stories.tsx → CdcMap.ColumnWrap.smoke.stories.tsx} +0 -0
  95. /package/src/_stories/{CdcMap.Defaults.stories.tsx → CdcMap.Defaults.smoke.stories.tsx} +0 -0
  96. /package/src/_stories/{CdcMap.DistrictOfColumbia.stories.tsx → CdcMap.DistrictOfColumbia.smoke.stories.tsx} +0 -0
  97. /package/src/_stories/{CdcMap.Filters.stories.tsx → CdcMap.Filters.smoke.stories.tsx} +0 -0
  98. /package/src/_stories/{CdcMap.Legend.Gradient.stories.tsx → CdcMap.Legend.Gradient.smoke.stories.tsx} +0 -0
  99. /package/src/_stories/{CdcMap.Legend.stories.tsx → CdcMap.Legend.smoke.stories.tsx} +0 -0
  100. /package/src/_stories/{CdcMap.Patterns.stories.tsx → CdcMap.Patterns.smoke.stories.tsx} +0 -0
  101. /package/src/_stories/{CdcMap.SmallMultiples.stories.tsx → CdcMap.SmallMultiples.smoke.stories.tsx} +0 -0
  102. /package/src/_stories/{CdcMap.Table.stories.tsx → CdcMap.Table.smoke.stories.tsx} +0 -0
  103. /package/src/_stories/{CdcMap.ZeroColor.stories.tsx → CdcMap.ZeroColor.smoke.stories.tsx} +0 -0
  104. /package/src/_stories/{GoogleMap.stories.tsx → GoogleMap.smoke.stories.tsx} +0 -0
  105. /package/src/_stories/{UsaMap.NoData.stories.tsx → UsaMap.NoData.smoke.stories.tsx} +0 -0
@@ -1,656 +0,0 @@
1
- [
2
- {
3
- "STATE": "AL",
4
- "Rate": 1000,
5
- "Location": "Home",
6
- "URL": "https://www.cdc.gov/"
7
- },
8
- {
9
- "STATE": "AK",
10
- "Rate": 1200,
11
- "Location": "Vehicle",
12
- "URL": "https://www.cdc.gov/"
13
- },
14
- {
15
- "STATE": "AS",
16
- "Rate": 14,
17
- "Location": "Work",
18
- "URL": "https://www.cdc.gov/"
19
- },
20
- {
21
- "STATE": "EAU CLAIRE",
22
- "Rate": 140,
23
- "Location": "Work",
24
- "URL": "https://www.cdc.gov/"
25
- },
26
- {
27
- "STATE": "AZ",
28
- "Rate": 9,
29
- "Location": "School",
30
- "URL": "https://www.cdc.gov/"
31
- },
32
- {
33
- "STATE": "AR",
34
- "Rate": 17,
35
- "Location": "School",
36
- "URL": "https://www.cdc.gov/"
37
- },
38
- {
39
- "STATE": "CA",
40
- "Rate": "*",
41
- "Location": "Work",
42
- "URL": "https://www.cdc.gov/"
43
- },
44
- {
45
- "STATE": "CO",
46
- "Rate": 22,
47
- "Location": "Vehicle",
48
- "URL": "https://www.cdc.gov/"
49
- },
50
- {
51
- "STATE": "CT",
52
- "Rate": 10,
53
- "Location": "Home",
54
- "URL": "https://www.cdc.gov/"
55
- },
56
- {
57
- "STATE": "DE",
58
- "Rate": 12,
59
- "Location": "Home",
60
- "URL": "https://www.cdc.gov/"
61
- },
62
- {
63
- "STATE": "DC",
64
- "Rate": 14,
65
- "Location": "Home",
66
- "URL": "https://www.cdc.gov/"
67
- },
68
- {
69
- "STATE": "FL",
70
- "Rate": 9,
71
- "Location": "Vehicle",
72
- "URL": "https://www.cdc.gov/"
73
- },
74
- {
75
- "STATE": "GA",
76
- "Rate": 17,
77
- "Location": "Work",
78
- "URL": "https://www.cdc.gov/"
79
- },
80
- {
81
- "STATE": "GU",
82
- "Rate": 20,
83
- "Location": "School",
84
- "URL": "https://www.cdc.gov/"
85
- },
86
- {
87
- "STATE": "HI",
88
- "Rate": 22,
89
- "Location": "School",
90
- "URL": "https://www.cdc.gov/"
91
- },
92
- {
93
- "STATE": "GAINESVILLE",
94
- "Rate": 22,
95
- "Location": "School",
96
- "URL": "https://www.cdc.gov/"
97
- },
98
- {
99
- "STATE": "ID",
100
- "Rate": "*",
101
- "Location": "Work",
102
- "URL": "https://www.cdc.gov/"
103
- },
104
- {
105
- "STATE": "IL",
106
- "Rate": 12,
107
- "Location": "Vehicle",
108
- "URL": "https://www.cdc.gov/"
109
- },
110
- {
111
- "STATE": "IN",
112
- "Rate": 14,
113
- "Location": "Home",
114
- "URL": "https://www.cdc.gov/"
115
- },
116
- {
117
- "STATE": "IA",
118
- "Rate": 9,
119
- "Location": "Home",
120
- "URL": "https://www.cdc.gov/"
121
- },
122
- {
123
- "STATE": "KS",
124
- "Rate": "NA",
125
- "Location": "Home",
126
- "URL": "https://www.cdc.gov/"
127
- },
128
- {
129
- "STATE": "KY",
130
- "Rate": 20,
131
- "Location": "Vehicle",
132
- "URL": "https://www.cdc.gov/"
133
- },
134
- {
135
- "STATE": "LA",
136
- "Rate": 22,
137
- "Location": "Work",
138
- "URL": "https://www.cdc.gov/"
139
- },
140
- {
141
- "STATE": "ME",
142
- "Rate": 10,
143
- "Location": "School",
144
- "URL": "https://www.cdc.gov/"
145
- },
146
- {
147
- "STATE": "MH",
148
- "Rate": 12,
149
- "Location": "School",
150
- "URL": "https://www.cdc.gov/"
151
- },
152
- {
153
- "STATE": "MD",
154
- "Rate": "*",
155
- "Location": "Work",
156
- "URL": "https://www.cdc.gov/"
157
- },
158
- {
159
- "STATE": "MA",
160
- "Rate": 9,
161
- "Location": "Vehicle",
162
- "URL": "https://www.cdc.gov/"
163
- },
164
- {
165
- "STATE": "MI",
166
- "Rate": 17,
167
- "Location": "Home",
168
- "URL": "https://www.cdc.gov/"
169
- },
170
- {
171
- "STATE": "FM",
172
- "Rate": 20,
173
- "Location": "Home",
174
- "URL": "https://www.cdc.gov/"
175
- },
176
- {
177
- "STATE": "MN",
178
- "Rate": 22,
179
- "Location": "Home",
180
- "URL": "https://www.cdc.gov/"
181
- },
182
- {
183
- "STATE": "MS",
184
- "Rate": 10,
185
- "Location": "Vehicle",
186
- "URL": "https://www.cdc.gov/"
187
- },
188
- {
189
- "STATE": "MO",
190
- "Rate": 11,
191
- "Location": "Work",
192
- "URL": "https://www.cdc.gov/"
193
- },
194
- {
195
- "STATE": "MT",
196
- "Rate": 14,
197
- "Location": "School",
198
- "URL": "https://www.cdc.gov/"
199
- },
200
- {
201
- "STATE": "NE",
202
- "Rate": 9,
203
- "Location": "School",
204
- "URL": "https://www.cdc.gov/"
205
- },
206
- {
207
- "STATE": "NV",
208
- "Rate": 17,
209
- "Location": "Work",
210
- "URL": "https://www.cdc.gov/"
211
- },
212
- {
213
- "STATE": "NH",
214
- "Rate": 20,
215
- "Location": "Vehicle",
216
- "URL": "https://www.cdc.gov/"
217
- },
218
- {
219
- "STATE": "NJ",
220
- "Rate": 28,
221
- "Location": "Home",
222
- "URL": "https://www.cdc.gov/"
223
- },
224
- {
225
- "STATE": "NM",
226
- "Rate": 10,
227
- "Location": "Home",
228
- "URL": "https://www.cdc.gov/"
229
- },
230
- {
231
- "STATE": "NY",
232
- "Rate": 12,
233
- "Location": "Home",
234
- "URL": "https://www.cdc.gov/"
235
- },
236
- {
237
- "STATE": "NC",
238
- "Rate": 14,
239
- "Location": "Vehicle",
240
- "URL": "https://www.cdc.gov/"
241
- },
242
- {
243
- "STATE": "ND",
244
- "Rate": 9,
245
- "Location": "Work",
246
- "URL": "https://www.cdc.gov/"
247
- },
248
- {
249
- "STATE": "MP",
250
- "Rate": 17,
251
- "Location": "School",
252
- "URL": "https://www.cdc.gov/"
253
- },
254
- {
255
- "STATE": "OH",
256
- "Rate": "NA",
257
- "Location": "School",
258
- "URL": "https://www.cdc.gov/"
259
- },
260
- {
261
- "STATE": "OK",
262
- "Rate": 22,
263
- "Location": "Work",
264
- "URL": "https://www.cdc.gov/"
265
- },
266
- {
267
- "STATE": "OR",
268
- "Rate": 10,
269
- "Location": "Vehicle",
270
- "URL": "https://www.cdc.gov/"
271
- },
272
- {
273
- "STATE": "PW",
274
- "Rate": 12,
275
- "Location": "Home",
276
- "URL": "https://www.cdc.gov/"
277
- },
278
- {
279
- "STATE": "PA",
280
- "Rate": 14,
281
- "Location": "Home",
282
- "URL": "https://www.cdc.gov/"
283
- },
284
- {
285
- "STATE": "PR",
286
- "Rate": 6,
287
- "Location": "Home",
288
- "URL": "https://www.cdc.gov/"
289
- },
290
- {
291
- "STATE": "RI",
292
- "Rate": 17,
293
- "Location": "Vehicle",
294
- "URL": "https://www.cdc.gov/"
295
- },
296
- {
297
- "STATE": "SC",
298
- "Rate": 20,
299
- "Location": "Work",
300
- "URL": "https://www.cdc.gov/"
301
- },
302
- {
303
- "STATE": "SD",
304
- "Rate": 22,
305
- "Location": "School",
306
- "URL": "https://www.cdc.gov/"
307
- },
308
- {
309
- "STATE": "TN",
310
- "Rate": 10,
311
- "Location": "School",
312
- "URL": "https://www.cdc.gov/"
313
- },
314
- {
315
- "STATE": "TX",
316
- "Rate": 12,
317
- "Location": "Work",
318
- "URL": "https://www.cdc.gov/"
319
- },
320
- {
321
- "STATE": "VT",
322
- "Rate": 9,
323
- "Location": "Home",
324
- "URL": "https://www.cdc.gov/"
325
- },
326
- {
327
- "STATE": "VI",
328
- "Rate": 17,
329
- "Location": "Vehicle",
330
- "URL": "https://www.cdc.gov/"
331
- },
332
- {
333
- "STATE": "VA",
334
- "Rate": 20,
335
- "Location": "Work",
336
- "URL": "https://www.cdc.gov/"
337
- },
338
- {
339
- "STATE": "WA",
340
- "Rate": 22,
341
- "Location": "School",
342
- "URL": "https://www.cdc.gov/"
343
- },
344
- {
345
- "STATE": "WV",
346
- "Rate": 10,
347
- "Location": "School",
348
- "URL": "https://www.cdc.gov/"
349
- },
350
- {
351
- "STATE": "WI",
352
- "Rate": 12,
353
- "Location": "Work",
354
- "URL": "https://www.cdc.gov/"
355
- },
356
- {
357
- "STATE": "WY",
358
- "Rate": 14,
359
- "Location": "Home",
360
- "URL": "https://www.cdc.gov/"
361
- },
362
- {
363
- "STATE": "Los Angeles",
364
- "Rate": 14,
365
- "Location": "Vehicle",
366
- "URL": "https://www.cdc.gov/"
367
- },
368
- {
369
- "STATE": "Grand Rapids, MICHIGAN",
370
- "Rate": 14,
371
- "Location": "Vehicle",
372
- "URL": "https://www.cdc.gov/"
373
- },
374
- {
375
- "STATE": "Salem, OReGON",
376
- "Rate": 14,
377
- "Location": "Vehicle",
378
- "URL": "https://www.cdc.gov/"
379
- },
380
- {
381
- "STATE": "Round Rock, TEXAS",
382
- "Rate": 14,
383
- "Location": "Vehicle",
384
- "URL": "https://www.cdc.gov/"
385
- },
386
- {
387
- "STATE": "PROVO, UT",
388
- "Rate": 14,
389
- "Location": "Vehicle",
390
- "URL": "https://www.cdc.gov/"
391
- },
392
- {
393
- "STATE": "SALUDA, VIRGINIA",
394
- "Rate": 14,
395
- "Location": "Vehicle",
396
- "URL": "https://www.cdc.gov/"
397
- },
398
- {
399
- "STATE": "ELLENSBURG, WA",
400
- "Rate": 14,
401
- "Location": "Vehicle",
402
- "URL": "https://www.cdc.gov/"
403
- },
404
- {
405
- "STATE": "Atlanta",
406
- "Rate": 12,
407
- "Location": "Work",
408
- "URL": "https://www.cdc.gov/"
409
- },
410
- {
411
- "STATE": "Boston",
412
- "Rate": 20,
413
- "Location": "School",
414
- "URL": "https://www.cdc.gov/"
415
- },
416
- {
417
- "STATE": "New York City",
418
- "Rate": 22,
419
- "Location": "School",
420
- "URL": "https://www.cdc.gov/"
421
- },
422
- {
423
- "STATE": "Dallas",
424
- "Rate": 18,
425
- "Location": "Work",
426
- "URL": "https://www.cdc.gov/"
427
- },
428
- {
429
- "STATE": "Seattle",
430
- "Rate": 17,
431
- "Location": "Home",
432
- "URL": "https://www.cdc.gov/"
433
- },
434
- {
435
- "STATE": "New Orleans",
436
- "Rate": 14,
437
- "Location": "Vehicle",
438
- "URL": "https://www.cdc.gov/"
439
- },
440
- {
441
- "STATE": "Birmingham",
442
- "Rate": 14,
443
- "Location": "Vehicle",
444
- "URL": "https://www.cdc.gov/"
445
- },
446
- {
447
- "STATE": "St Paul",
448
- "Rate": 14,
449
- "Location": "Vehicle",
450
- "URL": "https://www.cdc.gov/"
451
- },
452
- {
453
- "STATE": "Hershey",
454
- "Rate": 14,
455
- "Location": "Vehicle",
456
- "URL": "https://www.cdc.gov/"
457
- },
458
- {
459
- "STATE": "Salt Lake City",
460
- "Rate": 14,
461
- "Location": "Vehicle",
462
- "URL": "https://www.cdc.gov/"
463
- },
464
- {
465
- "STATE": "Syracuse",
466
- "Rate": 14,
467
- "Location": "Vehicle",
468
- "URL": "https://www.cdc.gov/"
469
- },
470
- {
471
- "STATE": "Philadelphia",
472
- "Rate": 14,
473
- "Location": "Vehicle",
474
- "URL": "https://www.cdc.gov/"
475
- },
476
- {
477
- "STATE": "Alaska Native Tribal Health Consortium",
478
- "Rate": 24,
479
- "Location": "Work",
480
- "URL": "https://www.cdc.gov/"
481
- },
482
- {
483
- "STATE": "American Indian Cancer Foundation",
484
- "Rate": 14,
485
- "Location": "Vehicle",
486
- "URL": "https://www.cdc.gov/"
487
- },
488
- {
489
- "STATE": "Arctic Slope Native Association Limited",
490
- "Rate": 14,
491
- "Location": "Vehicle",
492
- "URL": "https://www.cdc.gov/"
493
- },
494
- {
495
- "STATE": "California Rural Indian Health Board Inc.",
496
- "Rate": 19,
497
- "Location": "Work",
498
- "URL": "https://www.cdc.gov/"
499
- },
500
- {
501
- "STATE": "Cherokee Nation",
502
- "Rate": 12,
503
- "Location": "Vehicle",
504
- "URL": "https://www.cdc.gov/"
505
- },
506
- {
507
- "STATE": "Cheyenne River Sioux Tribe",
508
- "Rate": 11,
509
- "Location": "Vehicle",
510
- "URL": "https://www.cdc.gov/"
511
- },
512
- {
513
- "STATE": "Fond du Lac Reservation",
514
- "Rate": 22,
515
- "Location": "Vehicle",
516
- "URL": "https://www.cdc.gov/"
517
- },
518
- {
519
- "STATE": "Great Plains Tribal Chairmen's Health Board",
520
- "Rate": 18,
521
- "Location": "Vehicle",
522
- "URL": "https://www.cdc.gov/"
523
- },
524
- {
525
- "STATE": "Hopi Tribe",
526
- "Rate": 19,
527
- "Location": "Vehicle",
528
- "URL": "https://www.cdc.gov/"
529
- },
530
- {
531
- "STATE": "Inter-Tribal Council of Michigan, Inc.",
532
- "Rate": 14,
533
- "Location": "Vehicle",
534
- "URL": "https://www.cdc.gov/"
535
- },
536
- {
537
- "STATE": "Kaw Nation of Oklahoma",
538
- "Rate": 16,
539
- "Location": "Vehicle",
540
- "URL": "https://www.cdc.gov/"
541
- },
542
- {
543
- "STATE": "Native American Rehabilitation Association of the Northwest, Inc.",
544
- "Rate": 22,
545
- "Location": "School",
546
- "URL": "https://www.cdc.gov/"
547
- },
548
- {
549
- "STATE": "Navajo Nation",
550
- "Rate": 24,
551
- "Location": "Vehicle",
552
- "URL": "https://www.cdc.gov/"
553
- },
554
- {
555
- "STATE": "Northwest Portland Area Indian Health Board",
556
- "Rate": 24,
557
- "Location": "Vehicle",
558
- "URL": "https://www.cdc.gov/"
559
- },
560
- {
561
- "STATE": "South Puget Intertribal Planning Agency",
562
- "Rate": 9,
563
- "Location": "Vehicle",
564
- "URL": "https://www.cdc.gov/"
565
- },
566
- {
567
- "STATE": "Southcentral Foundation",
568
- "Rate": 29,
569
- "Location": "Vehicle",
570
- "URL": "https://www.cdc.gov/"
571
- },
572
- {
573
- "STATE": "Southeast Alaska Regional Health Consortium",
574
- "Rate": 8,
575
- "Location": "Vehicle",
576
- "URL": "https://www.cdc.gov/"
577
- },
578
- {
579
- "STATE": "Yukon-Kuskokwim Health Corporation",
580
- "Rate": 5,
581
- "Location": "Vehicle",
582
- "URL": "https://www.cdc.gov/"
583
- },
584
- {
585
- "STATE": "Modesto",
586
- "Rate": 5,
587
- "Location": "Vehicle",
588
- "URL": "https://www.cdc.gov/"
589
- },
590
- {
591
- "STATE": "Lakeview",
592
- "Rate": 5,
593
- "Location": "Vehicle",
594
- "URL": "https://www.cdc.gov/"
595
- },
596
- {
597
- "STATE": "Lockport",
598
- "Rate": 5,
599
- "Location": "Vehicle",
600
- "URL": "https://www.cdc.gov/"
601
- },
602
- {
603
- "STATE": "Warren",
604
- "Rate": 5,
605
- "Location": "Vehicle",
606
- "URL": "https://www.cdc.gov/"
607
- },
608
- {
609
- "STATE": "Salem, Oregon",
610
- "Rate": 5,
611
- "Location": "Vehicle",
612
- "URL": "https://www.cdc.gov/"
613
- },
614
- {
615
- "STATE": "Salem, Connecticut",
616
- "Rate": 5,
617
- "Location": "Vehicle",
618
- "URL": "https://www.cdc.gov/"
619
- },
620
- {
621
- "STATE": "Salem, Alabama",
622
- "Rate": 5,
623
- "Location": "Vehicle",
624
- "URL": "https://www.cdc.gov/"
625
- },
626
- {
627
- "STATE": "Salem, Florida",
628
- "Rate": 5,
629
- "Location": "Vehicle",
630
- "URL": "https://www.cdc.gov/"
631
- },
632
- {
633
- "STATE": "Salem, Massachusetts",
634
- "Rate": 5,
635
- "Location": "Vehicle",
636
- "URL": "https://www.cdc.gov/"
637
- },
638
- {
639
- "STATE": "San Benito",
640
- "Rate": 5,
641
- "Location": "Vehicle",
642
- "URL": "https://www.cdc.gov/"
643
- },
644
- {
645
- "STATE": "Alexandria",
646
- "Rate": 5,
647
- "Location": "Vehicle",
648
- "URL": "https://www.cdc.gov/"
649
- },
650
- {
651
- "STATE": "San Juan",
652
- "Rate": 5,
653
- "Location": "Vehicle",
654
- "URL": "https://www.cdc.gov/"
655
- }
656
- ]