@cdc/map 4.25.10 → 4.26.1
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/.claude/agents/typescript-organizer.md +118 -0
- package/dist/{cdcmap-fce76882.es.js → cdcmap-BnB1QM5d.es.js} +6 -13
- package/dist/{cdcmap-c55ac1ea.es.js → cdcmap-D6CG2-Hb.es.js} +5 -12
- package/dist/{cdcmap-31a33da1.es.js → cdcmap-MXgURbdZ.es.js} +6 -13
- package/dist/{cdcmap-1a1724a1.es.js → cdcmap-dgT_1dIT.es.js} +136 -151
- package/dist/cdcmap.js +58397 -55987
- package/examples/example-city-state.json +9 -1
- package/examples/multi-country-centering.json +45 -0
- package/examples/private/city_styles_variable.json +877 -0
- package/examples/private/colors-2.json +221 -0
- package/examples/private/colors.json +221 -0
- package/examples/private/map-filter-issue.json +2260 -0
- package/examples/private/map-legend.json +5303 -0
- package/index.html +27 -36
- package/package.json +6 -5
- package/src/CdcMapComponent.tsx +86 -26
- package/src/_stories/CdcMap.ColumnWrap.stories.tsx +31 -0
- package/src/_stories/CdcMap.DistrictOfColumbia.stories.tsx +320 -0
- package/src/_stories/CdcMap.Editor.stories.tsx +3426 -0
- package/src/_stories/CdcMap.SmallMultiples.stories.tsx +35 -0
- package/src/_stories/CdcMap.stories.tsx +116 -4
- package/src/_stories/_mock/column-wrap-test.json +265 -0
- package/src/_stories/_mock/multi-country-hide.json +78 -0
- package/src/_stories/_mock/multi-country.json +95 -0
- package/src/_stories/_mock/multi-state.json +887 -20403
- package/src/_stories/_mock/small_multiples/multi-state-small-multiples.json +8399 -0
- package/src/_stories/_mock/small_multiples/region-small-multiples.json +657 -0
- package/src/_stories/_mock/small_multiples/wastewater-map-small-multiples.json +221 -0
- package/src/_stories/_mock/usa-state-gradient.json +3 -4
- package/src/components/BubbleList.tsx +1 -1
- package/src/components/CityList.tsx +24 -18
- package/src/components/EditorPanel/components/EditorPanel.tsx +2380 -2206
- package/src/components/EditorPanel/components/HexShapeSettings.tsx +55 -93
- package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +0 -19
- package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +27 -37
- package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +351 -0
- package/src/components/EditorPanel/components/Panels/index.tsx +3 -1
- package/src/components/Geo.tsx +20 -3
- package/src/components/Legend/components/Legend.tsx +58 -75
- package/src/components/Legend/components/LegendGroup/Legend.Group.tsx +1 -1
- package/src/components/Legend/components/index.scss +23 -6
- package/src/components/NavigationMenu.tsx +16 -13
- package/src/components/SmallMultiples/SmallMultipleTile.tsx +163 -0
- package/src/components/SmallMultiples/SmallMultiples.css +32 -0
- package/src/components/SmallMultiples/SmallMultiples.tsx +150 -0
- package/src/components/SmallMultiples/SynchronizedTooltip.tsx +105 -0
- package/src/components/SmallMultiples/index.tsx +3 -0
- package/src/components/UsaMap/components/SingleState/SingleState.CountyOutput.tsx +18 -3
- package/src/components/UsaMap/components/TerritoriesSection.tsx +26 -12
- package/src/components/UsaMap/components/Territory/Territory.Hexagon.tsx +30 -4
- package/src/components/UsaMap/components/Territory/Territory.Rectangle.tsx +29 -9
- package/src/components/UsaMap/components/Territory/TerritoryShape.ts +7 -0
- package/src/components/UsaMap/components/UsaMap.County.tsx +16 -4
- package/src/components/UsaMap/components/UsaMap.Region.tsx +14 -1
- package/src/components/UsaMap/components/UsaMap.SingleState.tsx +29 -12
- package/src/components/UsaMap/components/UsaMap.State.tsx +30 -5
- package/src/components/UsaMap/helpers/map.ts +2 -2
- package/src/components/UsaMap/helpers/shapes.ts +9 -6
- package/src/components/WorldMap/WorldMap.tsx +81 -11
- package/src/data/initial-state.js +11 -0
- package/src/data/supported-geos.js +8 -76
- package/src/helpers/addUIDs.ts +13 -2
- package/src/helpers/applyColorToLegend.ts +25 -1
- package/src/helpers/applyLegendToRow.ts +5 -3
- package/src/helpers/constants.ts +3 -15
- package/src/helpers/displayGeoName.ts +22 -4
- package/src/helpers/generateRuntimeFilters.ts +1 -1
- package/src/helpers/generateRuntimeLegend.ts +1 -3
- package/src/helpers/generateRuntimeLegendHash.ts +1 -1
- package/src/helpers/getCountriesPicked.ts +103 -0
- package/src/helpers/getMapContainerClasses.ts +7 -0
- package/src/helpers/getPatternForRow.ts +2 -5
- package/src/helpers/index.ts +2 -4
- package/src/helpers/isLegendItemDisabled.ts +2 -2
- package/src/helpers/resetLegendToggles.ts +1 -0
- package/src/helpers/smallMultiplesHelpers.ts +359 -0
- package/src/helpers/tests/hashObj.test.ts +1 -1
- package/src/helpers/tests/titleCase.test.ts +76 -0
- package/src/helpers/titleCase.ts +13 -13
- package/src/helpers/toggleLegendActive.ts +76 -8
- package/src/helpers/urlDataHelpers.ts +1 -1
- package/src/hooks/useCountryZoom.tsx +241 -0
- package/src/hooks/useGeoClickHandler.ts +1 -1
- package/src/hooks/useProgrammaticMapTooltip.ts +110 -0
- package/src/hooks/useResizeObserver.ts +8 -2
- package/src/hooks/useStateZoom.tsx +7 -4
- package/src/hooks/useSynchronizedGeographies.ts +56 -0
- package/src/index.jsx +1 -0
- package/src/scss/editor-panel.scss +4 -440
- package/src/scss/main.scss +1 -1
- package/src/scss/map.scss +12 -15
- package/src/store/map.actions.ts +7 -7
- package/src/test/CdcMap.test.jsx +1 -1
- package/src/types/MapConfig.ts +32 -11
- package/src/types/MapContext.ts +6 -0
- package/src/types/runtimeLegend.ts +2 -1
- package/LICENSE +0 -201
- package/src/components/DataTable.tsx +0 -413
- package/src/components/EditorPanel/components/Inputs.tsx +0 -59
- package/src/components/MapControls.tsx +0 -44
- package/src/helpers/getUniqueValues.ts +0 -19
- package/src/helpers/hashObj.ts +0 -25
- package/src/hooks/useActiveElement.ts +0 -19
- package/src/hooks/useLegendSeparators.ts +0 -26
- package/src/scss/mixins.scss +0 -47
- package/src/types/Annotations.ts +0 -24
- /package/dist/{cdcmap-548642e6.es.js → cdcmap-Ct2SB0vL.es.js} +0 -0
|
@@ -0,0 +1,877 @@
|
|
|
1
|
+
{
|
|
2
|
+
"annotations": [],
|
|
3
|
+
"general": {
|
|
4
|
+
"title": "Example Data Map with Cities",
|
|
5
|
+
"subtext": "*: Lorem ipsum; NA: Lorem ipsum.",
|
|
6
|
+
"type": "data",
|
|
7
|
+
"geoType": "us",
|
|
8
|
+
"headerColor": "theme-cyan",
|
|
9
|
+
"showSidebar": true,
|
|
10
|
+
"showTitle": true,
|
|
11
|
+
"showDownloadButton": true,
|
|
12
|
+
"expandDataTable": false,
|
|
13
|
+
"backgroundColor": "#f5f5f5",
|
|
14
|
+
"geoBorderColor": "darkGray",
|
|
15
|
+
"territoriesLabel": "Territories",
|
|
16
|
+
"language": "en",
|
|
17
|
+
"hasRegions": false,
|
|
18
|
+
"showDownloadMediaButton": false,
|
|
19
|
+
"displayAsHex": false,
|
|
20
|
+
"displayStateLabels": false,
|
|
21
|
+
"fullBorder": false,
|
|
22
|
+
"palette": {
|
|
23
|
+
"isReversed": false
|
|
24
|
+
},
|
|
25
|
+
"allowMapZoom": true,
|
|
26
|
+
"hideGeoColumnInTooltip": false,
|
|
27
|
+
"hidePrimaryColumnInTooltip": false,
|
|
28
|
+
"statePicked": {
|
|
29
|
+
"fipsCode": "01",
|
|
30
|
+
"stateName": "Alabama"
|
|
31
|
+
},
|
|
32
|
+
"showDownloadImgButton": false,
|
|
33
|
+
"showDownloadPdfButton": false,
|
|
34
|
+
"territoriesAlwaysShow": true,
|
|
35
|
+
"geoLabelOverride": "",
|
|
36
|
+
"convertFipsCodes": true,
|
|
37
|
+
"noStateFoundMessage": "Map Unavailable",
|
|
38
|
+
"annotationDropdownText": "Annotations"
|
|
39
|
+
},
|
|
40
|
+
"type": "map",
|
|
41
|
+
"color": "yelloworangered",
|
|
42
|
+
"columns": {
|
|
43
|
+
"geo": {
|
|
44
|
+
"dataTable": true,
|
|
45
|
+
"label": "",
|
|
46
|
+
"name": "STATE",
|
|
47
|
+
"tooltip": false
|
|
48
|
+
},
|
|
49
|
+
"primary": {
|
|
50
|
+
"dataTable": true,
|
|
51
|
+
"label": "Rate",
|
|
52
|
+
"name": "Rate",
|
|
53
|
+
"prefix": "",
|
|
54
|
+
"suffix": "",
|
|
55
|
+
"tooltip": false,
|
|
56
|
+
"roundToPlace": 0
|
|
57
|
+
},
|
|
58
|
+
"navigate": {
|
|
59
|
+
"dataTable": false,
|
|
60
|
+
"name": "",
|
|
61
|
+
"tooltip": false
|
|
62
|
+
},
|
|
63
|
+
"additionalColumn1": {
|
|
64
|
+
"label": "Location",
|
|
65
|
+
"dataTable": true,
|
|
66
|
+
"tooltips": false,
|
|
67
|
+
"prefix": "",
|
|
68
|
+
"suffix": "",
|
|
69
|
+
"name": "Location",
|
|
70
|
+
"tooltip": true
|
|
71
|
+
},
|
|
72
|
+
"geosInRegion": {
|
|
73
|
+
"name": ""
|
|
74
|
+
},
|
|
75
|
+
"latitude": {
|
|
76
|
+
"name": ""
|
|
77
|
+
},
|
|
78
|
+
"longitude": {
|
|
79
|
+
"name": ""
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"legend": {
|
|
83
|
+
"numberOfItems": 3,
|
|
84
|
+
"position": "side",
|
|
85
|
+
"title": "Legend Title",
|
|
86
|
+
"description": "Legend Text",
|
|
87
|
+
"type": "equalnumber",
|
|
88
|
+
"specialClasses": [
|
|
89
|
+
{
|
|
90
|
+
"key": "Rate",
|
|
91
|
+
"value": "*",
|
|
92
|
+
"label": "*"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"key": "Rate",
|
|
96
|
+
"value": "NA",
|
|
97
|
+
"label": "N/A"
|
|
98
|
+
}
|
|
99
|
+
],
|
|
100
|
+
"unified": false,
|
|
101
|
+
"singleColumn": false,
|
|
102
|
+
"dynamicDescription": false,
|
|
103
|
+
"descriptions": {},
|
|
104
|
+
"singleRow": false,
|
|
105
|
+
"showSpecialClassesLast": false,
|
|
106
|
+
"verticalSorted": false,
|
|
107
|
+
"style": "circles",
|
|
108
|
+
"subStyle": "linear blocks",
|
|
109
|
+
"tickRotation": "",
|
|
110
|
+
"singleColumnLegend": false,
|
|
111
|
+
"hideBorder": false
|
|
112
|
+
},
|
|
113
|
+
"filters": [],
|
|
114
|
+
"table": {
|
|
115
|
+
"showDownloadUrl": false,
|
|
116
|
+
"showDataTableLink": true,
|
|
117
|
+
"wrapColumns": false,
|
|
118
|
+
"label": "Data Table",
|
|
119
|
+
"expanded": true,
|
|
120
|
+
"limitHeight": false,
|
|
121
|
+
"height": "",
|
|
122
|
+
"caption": "",
|
|
123
|
+
"showFullGeoNameInCSV": false,
|
|
124
|
+
"forceDisplay": true,
|
|
125
|
+
"download": true,
|
|
126
|
+
"indexLabel": "",
|
|
127
|
+
"showDownloadLinkBelow": true
|
|
128
|
+
},
|
|
129
|
+
"tooltips": {
|
|
130
|
+
"appearanceType": "hover",
|
|
131
|
+
"linkLabel": "Learn More",
|
|
132
|
+
"capitalizeLabels": true,
|
|
133
|
+
"opacity": 90
|
|
134
|
+
},
|
|
135
|
+
"runtime": {
|
|
136
|
+
"editorErrorMessage": []
|
|
137
|
+
},
|
|
138
|
+
"visual": {
|
|
139
|
+
"cityStyle": "circle",
|
|
140
|
+
"minBubbleSize": 1,
|
|
141
|
+
"maxBubbleSize": 20,
|
|
142
|
+
"extraBubbleBorder": false,
|
|
143
|
+
"showBubbleZeros": false,
|
|
144
|
+
"geoCodeCircleSize": 2,
|
|
145
|
+
"cityStyleLabel": "",
|
|
146
|
+
"additionalCityStyles": [
|
|
147
|
+
{
|
|
148
|
+
"label": "High Risk (Rate > 20)",
|
|
149
|
+
"column": "Rate",
|
|
150
|
+
"value": "22",
|
|
151
|
+
"shape": "Star"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"label": "School Location",
|
|
155
|
+
"column": "Location",
|
|
156
|
+
"value": "School",
|
|
157
|
+
"shape": "Triangle"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"label": "Vehicle Location",
|
|
161
|
+
"column": "Location",
|
|
162
|
+
"value": "Vehicle",
|
|
163
|
+
"shape": "Diamond"
|
|
164
|
+
}
|
|
165
|
+
]
|
|
166
|
+
},
|
|
167
|
+
"mapPosition": {
|
|
168
|
+
"coordinates": [
|
|
169
|
+
0,
|
|
170
|
+
30
|
|
171
|
+
],
|
|
172
|
+
"zoom": 1
|
|
173
|
+
},
|
|
174
|
+
"map": {
|
|
175
|
+
"layers": [],
|
|
176
|
+
"patterns": []
|
|
177
|
+
},
|
|
178
|
+
"hexMap": {
|
|
179
|
+
"type": "",
|
|
180
|
+
"shapeGroups": [
|
|
181
|
+
{
|
|
182
|
+
"legendTitle": "",
|
|
183
|
+
"legendDescription": "",
|
|
184
|
+
"items": [
|
|
185
|
+
{
|
|
186
|
+
"key": "",
|
|
187
|
+
"shape": "Arrow Up",
|
|
188
|
+
"column": "",
|
|
189
|
+
"operator": "=",
|
|
190
|
+
"value": ""
|
|
191
|
+
}
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
]
|
|
195
|
+
},
|
|
196
|
+
"filterBehavior": "Filter Change",
|
|
197
|
+
"dataTable": {
|
|
198
|
+
"title": "Data Table",
|
|
199
|
+
"forceDisplay": true
|
|
200
|
+
},
|
|
201
|
+
"sharing": {
|
|
202
|
+
"enabled": false,
|
|
203
|
+
"dataHost": "wcms-wp.cdc.gov",
|
|
204
|
+
"configUrl": "/wcms/4.0/cdc-wp/data-presentation/examples/city-data-map-example.json"
|
|
205
|
+
},
|
|
206
|
+
"usingWidgetLoader": true,
|
|
207
|
+
"filterStyle": "Filter Changes",
|
|
208
|
+
"version": "4.24.11",
|
|
209
|
+
"data": [
|
|
210
|
+
{
|
|
211
|
+
"STATE": "AL",
|
|
212
|
+
"Rate": 1000,
|
|
213
|
+
"Location": "Home",
|
|
214
|
+
"URL": "https://www.cdc.gov/"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"STATE": "Great Plains Tribal Leaders Health Board",
|
|
218
|
+
"Rate": 1000,
|
|
219
|
+
"Location": "Home",
|
|
220
|
+
"URL": "https://www.cdc.gov/"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"STATE": "Montana American Indian Women’s Health Coalition",
|
|
224
|
+
"Rate": 1000,
|
|
225
|
+
"Location": "Home",
|
|
226
|
+
"URL": "https://www.cdc.gov/"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"STATE": "AK",
|
|
230
|
+
"Rate": 1200,
|
|
231
|
+
"Location": "Vehicle",
|
|
232
|
+
"URL": "https://www.cdc.gov/"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"STATE": "AS",
|
|
236
|
+
"Rate": 14,
|
|
237
|
+
"Location": "Work",
|
|
238
|
+
"URL": "https://www.cdc.gov/"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"STATE": "EAU CLAIRE",
|
|
242
|
+
"Rate": 140,
|
|
243
|
+
"Location": "Work",
|
|
244
|
+
"URL": "https://www.cdc.gov/"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"STATE": "AZ",
|
|
248
|
+
"Rate": 9,
|
|
249
|
+
"Location": "School",
|
|
250
|
+
"URL": "https://www.cdc.gov/"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"STATE": "AR",
|
|
254
|
+
"Rate": 17,
|
|
255
|
+
"Location": "School",
|
|
256
|
+
"URL": "https://www.cdc.gov/"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"STATE": "CA",
|
|
260
|
+
"Rate": "*",
|
|
261
|
+
"Location": "Work",
|
|
262
|
+
"URL": "https://www.cdc.gov/"
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"STATE": "CO",
|
|
266
|
+
"Rate": 22,
|
|
267
|
+
"Location": "Vehicle",
|
|
268
|
+
"URL": "https://www.cdc.gov/"
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"STATE": "CT",
|
|
272
|
+
"Rate": 10,
|
|
273
|
+
"Location": "Home",
|
|
274
|
+
"URL": "https://www.cdc.gov/"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"STATE": "DE",
|
|
278
|
+
"Rate": 12,
|
|
279
|
+
"Location": "Home",
|
|
280
|
+
"URL": "https://www.cdc.gov/"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"STATE": "DC",
|
|
284
|
+
"Rate": 14,
|
|
285
|
+
"Location": "Home",
|
|
286
|
+
"URL": "https://www.cdc.gov/"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"STATE": "FL",
|
|
290
|
+
"Rate": 9,
|
|
291
|
+
"Location": "Vehicle",
|
|
292
|
+
"URL": "https://www.cdc.gov/"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"STATE": "GA",
|
|
296
|
+
"Rate": 17,
|
|
297
|
+
"Location": "Work",
|
|
298
|
+
"URL": "https://www.cdc.gov/"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"STATE": "GU",
|
|
302
|
+
"Rate": 20,
|
|
303
|
+
"Location": "School",
|
|
304
|
+
"URL": "https://www.cdc.gov/"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"STATE": "HI",
|
|
308
|
+
"Rate": 22,
|
|
309
|
+
"Location": "School",
|
|
310
|
+
"URL": "https://www.cdc.gov/"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"STATE": "GAINESVILLE",
|
|
314
|
+
"Rate": 22,
|
|
315
|
+
"Location": "School",
|
|
316
|
+
"URL": "https://www.cdc.gov/"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"STATE": "ID",
|
|
320
|
+
"Rate": "*",
|
|
321
|
+
"Location": "Work",
|
|
322
|
+
"URL": "https://www.cdc.gov/"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"STATE": "IL",
|
|
326
|
+
"Rate": 12,
|
|
327
|
+
"Location": "Vehicle",
|
|
328
|
+
"URL": "https://www.cdc.gov/"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"STATE": "IN",
|
|
332
|
+
"Rate": 14,
|
|
333
|
+
"Location": "Home",
|
|
334
|
+
"URL": "https://www.cdc.gov/"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"STATE": "IA",
|
|
338
|
+
"Rate": 9,
|
|
339
|
+
"Location": "Home",
|
|
340
|
+
"URL": "https://www.cdc.gov/"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"STATE": "KS",
|
|
344
|
+
"Rate": "NA",
|
|
345
|
+
"Location": "Home",
|
|
346
|
+
"URL": "https://www.cdc.gov/"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"STATE": "KY",
|
|
350
|
+
"Rate": 20,
|
|
351
|
+
"Location": "Vehicle",
|
|
352
|
+
"URL": "https://www.cdc.gov/"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"STATE": "LA",
|
|
356
|
+
"Rate": 22,
|
|
357
|
+
"Location": "Work",
|
|
358
|
+
"URL": "https://www.cdc.gov/"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"STATE": "ME",
|
|
362
|
+
"Rate": 10,
|
|
363
|
+
"Location": "School",
|
|
364
|
+
"URL": "https://www.cdc.gov/"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"STATE": "MH",
|
|
368
|
+
"Rate": 12,
|
|
369
|
+
"Location": "School",
|
|
370
|
+
"URL": "https://www.cdc.gov/"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"STATE": "MD",
|
|
374
|
+
"Rate": "*",
|
|
375
|
+
"Location": "Work",
|
|
376
|
+
"URL": "https://www.cdc.gov/"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"STATE": "MA",
|
|
380
|
+
"Rate": 9,
|
|
381
|
+
"Location": "Vehicle",
|
|
382
|
+
"URL": "https://www.cdc.gov/"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"STATE": "MI",
|
|
386
|
+
"Rate": 17,
|
|
387
|
+
"Location": "Home",
|
|
388
|
+
"URL": "https://www.cdc.gov/"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"STATE": "FM",
|
|
392
|
+
"Rate": 20,
|
|
393
|
+
"Location": "Home",
|
|
394
|
+
"URL": "https://www.cdc.gov/"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"STATE": "MN",
|
|
398
|
+
"Rate": 22,
|
|
399
|
+
"Location": "Home",
|
|
400
|
+
"URL": "https://www.cdc.gov/"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"STATE": "MS",
|
|
404
|
+
"Rate": 10,
|
|
405
|
+
"Location": "Vehicle",
|
|
406
|
+
"URL": "https://www.cdc.gov/"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"STATE": "MO",
|
|
410
|
+
"Rate": 11,
|
|
411
|
+
"Location": "Work",
|
|
412
|
+
"URL": "https://www.cdc.gov/"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"STATE": "MT",
|
|
416
|
+
"Rate": 14,
|
|
417
|
+
"Location": "School",
|
|
418
|
+
"URL": "https://www.cdc.gov/"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"STATE": "NE",
|
|
422
|
+
"Rate": 9,
|
|
423
|
+
"Location": "School",
|
|
424
|
+
"URL": "https://www.cdc.gov/"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"STATE": "NV",
|
|
428
|
+
"Rate": 17,
|
|
429
|
+
"Location": "Work",
|
|
430
|
+
"URL": "https://www.cdc.gov/"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"STATE": "NH",
|
|
434
|
+
"Rate": 20,
|
|
435
|
+
"Location": "Vehicle",
|
|
436
|
+
"URL": "https://www.cdc.gov/"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"STATE": "NJ",
|
|
440
|
+
"Rate": 28,
|
|
441
|
+
"Location": "Home",
|
|
442
|
+
"URL": "https://www.cdc.gov/"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"STATE": "NM",
|
|
446
|
+
"Rate": 10,
|
|
447
|
+
"Location": "Home",
|
|
448
|
+
"URL": "https://www.cdc.gov/"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"STATE": "NY",
|
|
452
|
+
"Rate": 12,
|
|
453
|
+
"Location": "Home",
|
|
454
|
+
"URL": "https://www.cdc.gov/"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"STATE": "NC",
|
|
458
|
+
"Rate": 14,
|
|
459
|
+
"Location": "Vehicle",
|
|
460
|
+
"URL": "https://www.cdc.gov/"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"STATE": "ND",
|
|
464
|
+
"Rate": 9,
|
|
465
|
+
"Location": "Work",
|
|
466
|
+
"URL": "https://www.cdc.gov/"
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"STATE": "MP",
|
|
470
|
+
"Rate": 17,
|
|
471
|
+
"Location": "School",
|
|
472
|
+
"URL": "https://www.cdc.gov/"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"STATE": "OH",
|
|
476
|
+
"Rate": "NA",
|
|
477
|
+
"Location": "School",
|
|
478
|
+
"URL": "https://www.cdc.gov/"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"STATE": "OK",
|
|
482
|
+
"Rate": 22,
|
|
483
|
+
"Location": "Work",
|
|
484
|
+
"URL": "https://www.cdc.gov/"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"STATE": "OR",
|
|
488
|
+
"Rate": 10,
|
|
489
|
+
"Location": "Vehicle",
|
|
490
|
+
"URL": "https://www.cdc.gov/"
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"STATE": "PW",
|
|
494
|
+
"Rate": 12,
|
|
495
|
+
"Location": "Home",
|
|
496
|
+
"URL": "https://www.cdc.gov/"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"STATE": "PA",
|
|
500
|
+
"Rate": 14,
|
|
501
|
+
"Location": "Home",
|
|
502
|
+
"URL": "https://www.cdc.gov/"
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"STATE": "PR",
|
|
506
|
+
"Rate": 6,
|
|
507
|
+
"Location": "Home",
|
|
508
|
+
"URL": "https://www.cdc.gov/"
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"STATE": "RI",
|
|
512
|
+
"Rate": 17,
|
|
513
|
+
"Location": "Vehicle",
|
|
514
|
+
"URL": "https://www.cdc.gov/"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"STATE": "SC",
|
|
518
|
+
"Rate": 20,
|
|
519
|
+
"Location": "Work",
|
|
520
|
+
"URL": "https://www.cdc.gov/"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"STATE": "SD",
|
|
524
|
+
"Rate": 22,
|
|
525
|
+
"Location": "School",
|
|
526
|
+
"URL": "https://www.cdc.gov/"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"STATE": "TN",
|
|
530
|
+
"Rate": 10,
|
|
531
|
+
"Location": "School",
|
|
532
|
+
"URL": "https://www.cdc.gov/"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"STATE": "TX",
|
|
536
|
+
"Rate": 12,
|
|
537
|
+
"Location": "Work",
|
|
538
|
+
"URL": "https://www.cdc.gov/"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"STATE": "VT",
|
|
542
|
+
"Rate": 9,
|
|
543
|
+
"Location": "Home",
|
|
544
|
+
"URL": "https://www.cdc.gov/"
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"STATE": "VI",
|
|
548
|
+
"Rate": 17,
|
|
549
|
+
"Location": "Vehicle",
|
|
550
|
+
"URL": "https://www.cdc.gov/"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"STATE": "VA",
|
|
554
|
+
"Rate": 20,
|
|
555
|
+
"Location": "Work",
|
|
556
|
+
"URL": "https://www.cdc.gov/"
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"STATE": "WA",
|
|
560
|
+
"Rate": 22,
|
|
561
|
+
"Location": "School",
|
|
562
|
+
"URL": "https://www.cdc.gov/"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"STATE": "WV",
|
|
566
|
+
"Rate": 10,
|
|
567
|
+
"Location": "School",
|
|
568
|
+
"URL": "https://www.cdc.gov/"
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"STATE": "WI",
|
|
572
|
+
"Rate": 12,
|
|
573
|
+
"Location": "Work",
|
|
574
|
+
"URL": "https://www.cdc.gov/"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"STATE": "WY",
|
|
578
|
+
"Rate": 14,
|
|
579
|
+
"Location": "Home",
|
|
580
|
+
"URL": "https://www.cdc.gov/"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"STATE": "Los Angeles",
|
|
584
|
+
"Rate": 14,
|
|
585
|
+
"Location": "Vehicle",
|
|
586
|
+
"URL": "https://www.cdc.gov/"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"STATE": "Grand Rapids, MICHIGAN",
|
|
590
|
+
"Rate": 14,
|
|
591
|
+
"Location": "Vehicle",
|
|
592
|
+
"URL": "https://www.cdc.gov/"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"STATE": "Salem, OReGON",
|
|
596
|
+
"Rate": 14,
|
|
597
|
+
"Location": "Vehicle",
|
|
598
|
+
"URL": "https://www.cdc.gov/"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"STATE": "Round Rock, TEXAS",
|
|
602
|
+
"Rate": 14,
|
|
603
|
+
"Location": "Vehicle",
|
|
604
|
+
"URL": "https://www.cdc.gov/"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"STATE": "PROVO, UT",
|
|
608
|
+
"Rate": 14,
|
|
609
|
+
"Location": "Vehicle",
|
|
610
|
+
"URL": "https://www.cdc.gov/"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"STATE": "SALUDA, VIRGINIA",
|
|
614
|
+
"Rate": 14,
|
|
615
|
+
"Location": "Vehicle",
|
|
616
|
+
"URL": "https://www.cdc.gov/"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"STATE": "ELLENSBURG, WA",
|
|
620
|
+
"Rate": 14,
|
|
621
|
+
"Location": "Vehicle",
|
|
622
|
+
"URL": "https://www.cdc.gov/"
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"STATE": "Atlanta",
|
|
626
|
+
"Rate": 12,
|
|
627
|
+
"Location": "Work",
|
|
628
|
+
"URL": "https://www.cdc.gov/"
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"STATE": "Boston",
|
|
632
|
+
"Rate": 20,
|
|
633
|
+
"Location": "School",
|
|
634
|
+
"URL": "https://www.cdc.gov/"
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"STATE": "New York City",
|
|
638
|
+
"Rate": 22,
|
|
639
|
+
"Location": "School",
|
|
640
|
+
"URL": "https://www.cdc.gov/"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"STATE": "Dallas",
|
|
644
|
+
"Rate": 18,
|
|
645
|
+
"Location": "Work",
|
|
646
|
+
"URL": "https://www.cdc.gov/"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"STATE": "Seattle",
|
|
650
|
+
"Rate": 17,
|
|
651
|
+
"Location": "Home",
|
|
652
|
+
"URL": "https://www.cdc.gov/"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"STATE": "New Orleans",
|
|
656
|
+
"Rate": 14,
|
|
657
|
+
"Location": "Vehicle",
|
|
658
|
+
"URL": "https://www.cdc.gov/"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"STATE": "Birmingham",
|
|
662
|
+
"Rate": 14,
|
|
663
|
+
"Location": "Vehicle",
|
|
664
|
+
"URL": "https://www.cdc.gov/"
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
"STATE": "St Paul",
|
|
668
|
+
"Rate": 14,
|
|
669
|
+
"Location": "Vehicle",
|
|
670
|
+
"URL": "https://www.cdc.gov/"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"STATE": "Hershey",
|
|
674
|
+
"Rate": 14,
|
|
675
|
+
"Location": "Vehicle",
|
|
676
|
+
"URL": "https://www.cdc.gov/"
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"STATE": "Salt Lake City",
|
|
680
|
+
"Rate": 14,
|
|
681
|
+
"Location": "Vehicle",
|
|
682
|
+
"URL": "https://www.cdc.gov/"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"STATE": "Syracuse",
|
|
686
|
+
"Rate": 14,
|
|
687
|
+
"Location": "Vehicle",
|
|
688
|
+
"URL": "https://www.cdc.gov/"
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
"STATE": "Philadelphia",
|
|
692
|
+
"Rate": 14,
|
|
693
|
+
"Location": "Vehicle",
|
|
694
|
+
"URL": "https://www.cdc.gov/"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"STATE": "Alaska Native Tribal Health Consortium",
|
|
698
|
+
"Rate": 24,
|
|
699
|
+
"Location": "Work",
|
|
700
|
+
"URL": "https://www.cdc.gov/"
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"STATE": "American Indian Cancer Foundation",
|
|
704
|
+
"Rate": 14,
|
|
705
|
+
"Location": "Vehicle",
|
|
706
|
+
"URL": "https://www.cdc.gov/"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"STATE": "Arctic Slope Native Association Limited",
|
|
710
|
+
"Rate": 14,
|
|
711
|
+
"Location": "Vehicle",
|
|
712
|
+
"URL": "https://www.cdc.gov/"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"STATE": "California Rural Indian Health Board Inc.",
|
|
716
|
+
"Rate": 19,
|
|
717
|
+
"Location": "Work",
|
|
718
|
+
"URL": "https://www.cdc.gov/"
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
"STATE": "Cherokee Nation",
|
|
722
|
+
"Rate": 12,
|
|
723
|
+
"Location": "Vehicle",
|
|
724
|
+
"URL": "https://www.cdc.gov/"
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"STATE": "Cheyenne River Sioux Tribe",
|
|
728
|
+
"Rate": 11,
|
|
729
|
+
"Location": "Vehicle",
|
|
730
|
+
"URL": "https://www.cdc.gov/"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"STATE": "Fond du Lac Reservation",
|
|
734
|
+
"Rate": 22,
|
|
735
|
+
"Location": "Vehicle",
|
|
736
|
+
"URL": "https://www.cdc.gov/"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"STATE": "Great Plains Tribal Leaders Health Board",
|
|
740
|
+
"Rate": 18,
|
|
741
|
+
"Location": "Vehicle",
|
|
742
|
+
"URL": "https://www.cdc.gov/"
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"STATE": "Hopi Tribe",
|
|
746
|
+
"Rate": 19,
|
|
747
|
+
"Location": "Vehicle",
|
|
748
|
+
"URL": "https://www.cdc.gov/"
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"STATE": "Inter-Tribal Council of Michigan, Inc.",
|
|
752
|
+
"Rate": 14,
|
|
753
|
+
"Location": "Vehicle",
|
|
754
|
+
"URL": "https://www.cdc.gov/"
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
"STATE": "Kaw Nation of Oklahoma",
|
|
758
|
+
"Rate": 16,
|
|
759
|
+
"Location": "Vehicle",
|
|
760
|
+
"URL": "https://www.cdc.gov/"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"STATE": "Native American Rehabilitation Association of the Northwest, Inc.",
|
|
764
|
+
"Rate": 22,
|
|
765
|
+
"Location": "School",
|
|
766
|
+
"URL": "https://www.cdc.gov/"
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"STATE": "Navajo Nation",
|
|
770
|
+
"Rate": 24,
|
|
771
|
+
"Location": "Vehicle",
|
|
772
|
+
"URL": "https://www.cdc.gov/"
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
"STATE": "Northwest Portland Area Indian Health Board",
|
|
776
|
+
"Rate": 24,
|
|
777
|
+
"Location": "Vehicle",
|
|
778
|
+
"URL": "https://www.cdc.gov/"
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"STATE": "South Puget Intertribal Planning Agency",
|
|
782
|
+
"Rate": 9,
|
|
783
|
+
"Location": "Vehicle",
|
|
784
|
+
"URL": "https://www.cdc.gov/"
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"STATE": "Southcentral Foundation",
|
|
788
|
+
"Rate": 29,
|
|
789
|
+
"Location": "Vehicle",
|
|
790
|
+
"URL": "https://www.cdc.gov/"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"STATE": "Southeast Alaska Regional Health Consortium",
|
|
794
|
+
"Rate": 8,
|
|
795
|
+
"Location": "Vehicle",
|
|
796
|
+
"URL": "https://www.cdc.gov/"
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
"STATE": "Yukon-Kuskokwim Health Corporation",
|
|
800
|
+
"Rate": 5,
|
|
801
|
+
"Location": "Vehicle",
|
|
802
|
+
"URL": "https://www.cdc.gov/"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"STATE": "Modesto",
|
|
806
|
+
"Rate": 5,
|
|
807
|
+
"Location": "Vehicle",
|
|
808
|
+
"URL": "https://www.cdc.gov/"
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"STATE": "Lakeview",
|
|
812
|
+
"Rate": 5,
|
|
813
|
+
"Location": "Vehicle",
|
|
814
|
+
"URL": "https://www.cdc.gov/"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"STATE": "Lockport",
|
|
818
|
+
"Rate": 5,
|
|
819
|
+
"Location": "Vehicle",
|
|
820
|
+
"URL": "https://www.cdc.gov/"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"STATE": "Warren",
|
|
824
|
+
"Rate": 5,
|
|
825
|
+
"Location": "Vehicle",
|
|
826
|
+
"URL": "https://www.cdc.gov/"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"STATE": "Salem, Oregon",
|
|
830
|
+
"Rate": 5,
|
|
831
|
+
"Location": "Vehicle",
|
|
832
|
+
"URL": "https://www.cdc.gov/"
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
"STATE": "Salem, Connecticut",
|
|
836
|
+
"Rate": 5,
|
|
837
|
+
"Location": "Vehicle",
|
|
838
|
+
"URL": "https://www.cdc.gov/"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"STATE": "Salem, Alabama",
|
|
842
|
+
"Rate": 5,
|
|
843
|
+
"Location": "Vehicle",
|
|
844
|
+
"URL": "https://www.cdc.gov/"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"STATE": "Salem, Florida",
|
|
848
|
+
"Rate": 5,
|
|
849
|
+
"Location": "Vehicle",
|
|
850
|
+
"URL": "https://www.cdc.gov/"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"STATE": "Salem, Massachusetts",
|
|
854
|
+
"Rate": 5,
|
|
855
|
+
"Location": "Vehicle",
|
|
856
|
+
"URL": "https://www.cdc.gov/"
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"STATE": "San Benito",
|
|
860
|
+
"Rate": 5,
|
|
861
|
+
"Location": "Vehicle",
|
|
862
|
+
"URL": "https://www.cdc.gov/"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"STATE": "Alexandria",
|
|
866
|
+
"Rate": 5,
|
|
867
|
+
"Location": "Vehicle",
|
|
868
|
+
"URL": "https://www.cdc.gov/"
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"STATE": "San Juan",
|
|
872
|
+
"Rate": 5,
|
|
873
|
+
"Location": "Vehicle",
|
|
874
|
+
"URL": "https://www.cdc.gov/"
|
|
875
|
+
}
|
|
876
|
+
]
|
|
877
|
+
}
|