@cdc/map 4.25.3 → 4.25.6

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 (119) hide show
  1. package/.idea/map.iml +12 -0
  2. package/.idea/modules.xml +8 -0
  3. package/.idea/vcs.xml +6 -0
  4. package/dist/cdcmap.js +31254 -32242
  5. package/examples/hex-colors.json +3 -3
  6. package/examples/m2.json +32904 -0
  7. package/examples/private/test.json +470 -1457
  8. package/examples/private/{mmr.json → wastewatermap.json} +86 -115
  9. package/index.html +36 -63
  10. package/package.json +7 -19
  11. package/src/CdcMap.tsx +56 -1552
  12. package/src/CdcMapComponent.tsx +608 -0
  13. package/src/_stories/CdcMap.Legend.Gradient.stories.tsx +10 -0
  14. package/src/_stories/CdcMap.Legend.stories.tsx +67 -0
  15. package/src/_stories/CdcMap.Table.stories.tsx +19 -0
  16. package/src/_stories/CdcMap.stories.tsx +12 -1
  17. package/src/_stories/UsaMap.NoData.stories.tsx +4 -4
  18. package/src/_stories/_mock/default-patterns.json +8 -5
  19. package/src/_stories/_mock/legend-bins.json +428 -0
  20. package/{examples/private/default-patterns.json → src/_stories/_mock/legends/legend-tests.json} +36 -131
  21. package/src/cdcMapComponent.styles.css +9 -0
  22. package/src/components/Annotation/Annotation.Draggable.tsx +27 -26
  23. package/src/components/Annotation/AnnotationDropdown.tsx +5 -6
  24. package/src/components/BubbleList.tsx +135 -49
  25. package/src/components/CityList.tsx +89 -87
  26. package/src/components/DataTable.tsx +8 -8
  27. package/src/components/EditorPanel/components/EditorPanel.tsx +823 -885
  28. package/src/components/EditorPanel/components/Error.tsx +9 -2
  29. package/src/components/EditorPanel/components/HexShapeSettings.tsx +127 -141
  30. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +55 -86
  31. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +89 -75
  32. package/src/components/EditorPanel/components/editorPanel.styles.css +95 -0
  33. package/src/components/Geo.tsx +9 -1
  34. package/src/components/GoogleMap/components/GoogleMap.tsx +1 -1
  35. package/src/components/Legend/components/Legend.tsx +92 -87
  36. package/src/components/Legend/components/LegendGroup/Legend.Group.tsx +128 -0
  37. package/src/components/Legend/components/LegendGroup/legend.group.css +27 -0
  38. package/src/components/Legend/components/LegendItem.Hex.tsx +4 -1
  39. package/src/components/Legend/components/index.scss +74 -17
  40. package/src/components/Modal.tsx +17 -7
  41. package/src/components/NavigationMenu.tsx +11 -9
  42. package/src/components/UsaMap/components/SingleState/SingleState.CountyOutput.tsx +12 -8
  43. package/src/components/UsaMap/components/SingleState/SingleState.StateOutput.tsx +4 -4
  44. package/src/components/UsaMap/components/TerritoriesSection.tsx +33 -10
  45. package/src/components/UsaMap/components/Territory/Territory.Hexagon.tsx +12 -10
  46. package/src/components/UsaMap/components/Territory/Territory.Rectangle.tsx +12 -14
  47. package/src/components/UsaMap/components/Territory/TerritoryShape.ts +2 -1
  48. package/src/components/UsaMap/components/UsaMap.County.tsx +138 -96
  49. package/src/components/UsaMap/components/UsaMap.Region.styles.css +72 -0
  50. package/src/components/UsaMap/components/UsaMap.Region.tsx +56 -103
  51. package/src/components/UsaMap/components/UsaMap.SingleState.styles.css +10 -0
  52. package/src/components/UsaMap/components/UsaMap.SingleState.tsx +65 -74
  53. package/src/components/UsaMap/components/UsaMap.State.tsx +112 -91
  54. package/src/components/UsaMap/helpers/map.ts +1 -1
  55. package/src/components/UsaMap/helpers/shapes.ts +20 -7
  56. package/src/components/WorldMap/WorldMap.tsx +64 -118
  57. package/src/components/WorldMap/worldMap.styles.css +28 -0
  58. package/src/components/ZoomControls.tsx +15 -13
  59. package/src/components/zoomControls.styles.css +53 -0
  60. package/src/context.ts +17 -9
  61. package/src/data/initial-state.js +5 -2
  62. package/src/helpers/addUIDs.ts +150 -0
  63. package/src/helpers/applyColorToLegend.ts +39 -64
  64. package/src/helpers/applyLegendToRow.ts +51 -0
  65. package/src/helpers/colorDistributions.ts +12 -0
  66. package/src/helpers/constants.ts +44 -0
  67. package/src/helpers/displayGeoName.ts +9 -2
  68. package/src/helpers/formatLegendLocation.ts +3 -2
  69. package/src/helpers/generateColorsArray.ts +2 -1
  70. package/src/helpers/generateRuntimeData.ts +78 -0
  71. package/src/helpers/generateRuntimeFilters.ts +63 -0
  72. package/src/helpers/generateRuntimeLegend.ts +566 -0
  73. package/src/helpers/generateRuntimeLegendHash.ts +16 -15
  74. package/src/helpers/getColumnNames.ts +19 -0
  75. package/src/helpers/getMapContainerClasses.ts +23 -0
  76. package/src/helpers/getStatePicked.ts +8 -0
  77. package/src/helpers/handleMapTabbing.ts +31 -0
  78. package/src/helpers/hashObj.ts +1 -1
  79. package/src/helpers/index.ts +22 -0
  80. package/src/helpers/navigationHandler.ts +3 -3
  81. package/src/helpers/resetLegendToggles.ts +13 -0
  82. package/src/helpers/setBinNumbers.ts +5 -0
  83. package/src/helpers/sortSpecialClassesLast.ts +7 -0
  84. package/src/helpers/tests/getColumnNames.test.ts +52 -0
  85. package/src/helpers/titleCase.ts +1 -1
  86. package/src/helpers/toggleLegendActive.ts +25 -0
  87. package/src/hooks/useApplyTooltipsToGeo.tsx +51 -0
  88. package/src/hooks/useColumnsRequiredChecker.ts +51 -0
  89. package/src/hooks/useGeoClickHandler.ts +45 -0
  90. package/src/hooks/useLegendSeparators.ts +26 -0
  91. package/src/hooks/useMapLayers.tsx +34 -60
  92. package/src/hooks/useModal.ts +22 -0
  93. package/src/hooks/useResizeObserver.ts +4 -5
  94. package/src/hooks/useStateZoom.tsx +52 -75
  95. package/src/hooks/useTooltip.ts +2 -3
  96. package/src/index.jsx +3 -9
  97. package/src/scss/editor-panel.scss +3 -99
  98. package/src/scss/main.scss +1 -19
  99. package/src/scss/map.scss +15 -220
  100. package/src/store/map.actions.ts +46 -0
  101. package/src/store/map.reducer.ts +96 -0
  102. package/src/types/Annotations.ts +24 -0
  103. package/src/types/MapConfig.ts +23 -3
  104. package/src/types/MapContext.ts +36 -35
  105. package/src/types/Modal.ts +1 -0
  106. package/src/types/RuntimeData.ts +3 -0
  107. package/examples/private/DEV-9644.json +0 -184
  108. package/examples/private/DEV-9989.json +0 -229
  109. package/examples/private/ardi.json +0 -180
  110. package/examples/private/colors 2.json +0 -416
  111. package/examples/private/colors.json +0 -416
  112. package/examples/private/colors.json.zip +0 -0
  113. package/examples/private/customColors.json +0 -45348
  114. package/examples/test.json +0 -183
  115. package/src/helpers/closeModal.ts +0 -9
  116. package/src/scss/btn.scss +0 -69
  117. package/src/scss/filters.scss +0 -27
  118. package/src/scss/variables.scss +0 -1
  119. /package/src/hooks/{useActiveElement.js → useActiveElement.ts} +0 -0
@@ -1,21 +1,20 @@
1
1
  {
2
2
  "annotations": [],
3
3
  "general": {
4
- "geoType": "us",
4
+ "navigationTarget": "_self",
5
5
  "noStateFoundMessage": "Map Unavailable",
6
6
  "annotationDropdownText": "Annotations",
7
7
  "geoBorderColor": "darkGray",
8
8
  "headerColor": "theme-blue",
9
- "title": "Explore by Topic Map",
10
- "showTitle": false,
9
+ "title": "<em>4.25.05</em> ",
10
+ "showTitle": true,
11
11
  "showSidebar": true,
12
- "showDownloadButton": true,
13
12
  "showDownloadMediaButton": false,
14
13
  "displayAsHex": false,
15
14
  "displayStateLabels": true,
16
- "territoriesLabel": "Territories",
17
- "territoriesAlwaysShow": false,
15
+ "territoriesAlwaysShow": true,
18
16
  "language": "en",
17
+ "geoType": "us",
19
18
  "geoLabelOverride": "",
20
19
  "hasRegions": false,
21
20
  "fullBorder": false,
@@ -32,12 +31,13 @@
32
31
  "stateName": "Alabama"
33
32
  },
34
33
  "expandDataTable": false,
35
- "subtext": "<strong>Data Source:</strong> <a>Behavioral Risk Factor Surveillance System (BRFSS)</a>",
36
- "footnotes": "<p>The legend quantiles in the map are based on the minimum and maximum data values for the selected search criteria. These quantiles may update with the change in search criteria.</p>\n\n<p class=\"mt-2\">MMSA data belonging to territories are not displayed on the map. Please visit the Chart or Table view for territories MMSA data.</p>",
37
- "showDownloadImgButton": true
34
+ "superTitle": "<sup>Super</sup> Title",
35
+ "introText": "Message: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
36
+ "subtext": "Sub: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
37
+ "footnotes": "Foot: Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>"
38
38
  },
39
39
  "type": "map",
40
- "color": "yelloworangebrown",
40
+ "color": "yellowpurple",
41
41
  "columns": {
42
42
  "geo": {
43
43
  "name": "State",
@@ -46,16 +46,16 @@
46
46
  "dataTable": true
47
47
  },
48
48
  "primary": {
49
- "dataTable": false,
49
+ "dataTable": true,
50
50
  "tooltip": true,
51
51
  "prefix": "",
52
- "suffix": "%",
53
- "name": "Percentage",
54
- "label": "Percentage",
55
- "roundToPlace": "1"
52
+ "suffix": "",
53
+ "name": "Activity Level",
54
+ "label": "Activity Level",
55
+ "roundToPlace": 0
56
56
  },
57
57
  "navigate": {
58
- "name": ""
58
+ "name": "URL"
59
59
  },
60
60
  "latitude": {
61
61
  "name": ""
@@ -64,21 +64,12 @@
64
64
  "name": ""
65
65
  },
66
66
  "additionalColumn1": {
67
- "label": "95% Confidence Interval",
68
- "dataTable": false,
69
- "tooltips": false,
70
- "prefix": "",
71
- "suffix": "",
72
- "name": "95%_CI",
73
- "tooltip": true
74
- },
75
- "additionalColumn2": {
76
- "label": "Response",
77
- "dataTable": false,
67
+ "label": "Funding Status",
68
+ "dataTable": true,
78
69
  "tooltips": false,
79
70
  "prefix": "",
80
71
  "suffix": "",
81
- "name": "Response",
72
+ "name": "Funding Status",
82
73
  "tooltip": true
83
74
  }
84
75
  },
@@ -86,1547 +77,569 @@
86
77
  "descriptions": {},
87
78
  "specialClasses": [
88
79
  {
89
- "key": "Percentage",
90
- "value": "N/A"
80
+ "key": "Funding Status",
81
+ "value": "*",
82
+ "label": "Not Funded"
83
+ },
84
+ {
85
+ "key": "Funding Status",
86
+ "value": "NA",
87
+ "label": "Not Applicable"
91
88
  }
92
89
  ],
93
90
  "unified": false,
94
91
  "singleColumn": false,
95
- "singleRow": true,
92
+ "singleRow": false,
96
93
  "verticalSorted": false,
97
- "showSpecialClassesLast": false,
94
+ "showSpecialClassesLast": true,
98
95
  "dynamicDescription": false,
99
- "type": "equalnumber",
100
- "numberOfItems": 4,
101
- "position": "bottom",
102
- "title": "",
103
- "style": "boxes",
96
+ "type": "category",
97
+ "numberOfItems": 3,
98
+ "position": "top",
99
+ "title": "Lorem <em>ipsum dolor</em> sit amet",
100
+ "style": "circles",
104
101
  "subStyle": "linear blocks",
105
102
  "tickRotation": "",
106
103
  "singleColumnLegend": false,
107
- "hideBorder": false,
104
+ "hideBorder": true,
105
+ "groupBy": "",
106
+ "description": "Lorem ipsum dolor sit amet, <em>consectetur adipiscing elit</em>, sed do eiusmod tempor incididunt ut labore et <strong>dolore magna aliqua</strong>. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <sup> 40</sup>",
108
107
  "categoryValuesOrder": [
109
- "40.7000-48.3000"
108
+ "Zero",
109
+ "Minimal",
110
+ "Very Low",
111
+ "Low",
112
+ "Moderate",
113
+ "High",
114
+ "Very High",
115
+ "Super Duper High"
110
116
  ]
111
117
  },
112
118
  "filters": [],
113
- "table": {
114
- "wrapColumns": false,
115
- "label": "Data Table",
116
- "expanded": false,
117
- "limitHeight": false,
118
- "height": "",
119
- "caption": "",
120
- "showDownloadUrl": false,
121
- "showDataTableLink": false,
122
- "showFullGeoNameInCSV": false,
123
- "forceDisplay": false,
124
- "download": true,
125
- "indexLabel": "",
126
- "showDownloadLinkBelow": false
127
- },
128
- "tooltips": {
129
- "appearanceType": "hover",
130
- "linkLabel": "Learn More",
131
- "capitalizeLabels": true,
132
- "opacity": 90
133
- },
134
- "runtime": {
135
- "editorErrorMessage": []
136
- },
137
- "visual": {
138
- "minBubbleSize": 1,
139
- "maxBubbleSize": 20,
140
- "extraBubbleBorder": false,
141
- "cityStyle": "circle",
142
- "cityStyleLabel": "",
143
- "showBubbleZeros": false,
144
- "additionalCityStyles": [],
145
- "geoCodeCircleSize": 8
146
- },
147
- "mapPosition": {
148
- "coordinates": [
149
- 0,
150
- 30
151
- ],
152
- "zoom": 1
153
- },
154
- "map": {
155
- "layers": [],
156
- "patterns": []
157
- },
158
- "hexMap": {
159
- "type": "",
160
- "shapeGroups": [
161
- {
162
- "legendTitle": "",
163
- "legendDescription": "",
164
- "items": [
165
- {
166
- "key": "",
167
- "shape": "Arrow Up",
168
- "column": "",
169
- "operator": "=",
170
- "value": ""
171
- }
172
- ]
173
- }
174
- ]
175
- },
176
- "filterBehavior": "Filter Change",
177
- "filterIntro": "",
178
- "openModal": true,
179
119
  "data": [
180
120
  {
181
- "95%_CI": "N/A",
182
- "Category": "Age Group",
183
- "Category_Order": "3",
184
- "Class": "Overweight and Obesity (BMI)",
185
- "DataSource": "BRFSS",
186
- "Data_Type": "Crude Prevalence",
187
- "Dataset": "Nationwide",
188
- "Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
189
- "GeoLocation_Lat": "N/A",
190
- "GeoLocation_Long": "N/A",
191
- "High_CI": "N/A",
192
- "LocationCategory": "States",
193
- "Low_CI": "N/A",
194
- "Percentage": "N/A",
195
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
196
- "Response": "Neither overweight nor obese (BMI le 24.9)",
197
- "Response_Filter": "Neither overweight nor obese (BMI le 24.9)",
198
- "State": "Alaska",
199
- "State_Abbr": "AK",
200
- "Subcategory": "18-24",
201
- "Subcategory_Filter": "18-24",
202
- "Subcategory_Order": "4",
203
- "Topic": "BMI Categories",
204
- "Visual_Type_Filter": "Chart_Table_Map",
205
- "Year": "1995",
206
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
207
- "n": "57"
121
+ "State": "AL",
122
+ "Activity Level": "Very High",
123
+ "Funding Status": "*",
124
+ "URL": "https://www.cdc.gov/flu/",
125
+ "uid": "US-AL"
126
+ },
127
+ {
128
+ "State": "AK",
129
+ "Activity Level": "High",
130
+ "Funding Status": "Current",
131
+ "URL": "https://www.cdc.gov/mmwr/",
132
+ "uid": "US-AK"
133
+ },
134
+ {
135
+ "State": "AS",
136
+ "Activity Level": "Moderate",
137
+ "Funding Status": "Current",
138
+ "URL": "https://www.cdc.gov/flu/",
139
+ "uid": null
140
+ },
141
+ {
142
+ "State": "AZ",
143
+ "Activity Level": "Low",
144
+ "Funding Status": "Current",
145
+ "URL": "https://www.cdc.gov/flu/",
146
+ "uid": "US-AZ"
147
+ },
148
+ {
149
+ "State": "AR",
150
+ "Activity Level": "Minimal",
151
+ "Funding Status": "Current",
152
+ "URL": "https://www.cdc.gov/mmwr/",
153
+ "uid": "US-AR"
208
154
  },
209
155
  {
210
- "95%_CI": "42.8-57.2",
211
- "Category": "Age Group",
212
- "Category_Order": "3",
213
- "Class": "Overweight and Obesity (BMI)",
214
- "DataSource": "BRFSS",
215
- "Data_Type": "Crude Prevalence",
216
- "Dataset": "Nationwide",
217
- "Footnotes": "N/A",
218
- "GeoLocation_Lat": "N/A",
219
- "GeoLocation_Long": "N/A",
220
- "High_CI": "57.2",
221
- "LocationCategory": "States",
222
- "Low_CI": "42.8",
223
- "Percentage": 50,
224
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
225
- "Response": "Neither overweight nor obese (BMI le 24.9)",
226
- "Response_Filter": "Neither overweight nor obese (BMI le 24.9)",
227
- "State": "Alaska",
228
- "State_Abbr": "AK",
229
- "Subcategory": "25-34",
230
- "Subcategory_Filter": "25-34",
231
- "Subcategory_Order": "7",
232
- "Topic": "BMI Categories",
233
- "Visual_Type_Filter": "Chart_Table_Map",
234
- "Year": "1995",
235
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
236
- "n": "164"
156
+ "State": "CA",
157
+ "Activity Level": "Very High",
158
+ "Funding Status": "NA",
159
+ "URL": "https://www.cdc.gov/flu/",
160
+ "uid": "US-CA"
237
161
  },
238
162
  {
239
- "95%_CI": "39.1-53.3",
240
- "Category": "Age Group",
241
- "Category_Order": "3",
242
- "Class": "Overweight and Obesity (BMI)",
243
- "DataSource": "BRFSS",
244
- "Data_Type": "Crude Prevalence",
245
- "Dataset": "Nationwide",
246
- "Footnotes": "N/A",
247
- "GeoLocation_Lat": "N/A",
248
- "GeoLocation_Long": "N/A",
249
- "High_CI": "53.3",
250
- "LocationCategory": "States",
251
- "Low_CI": "39.1",
252
- "Percentage": 46.2,
253
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
254
- "Response": "Neither overweight nor obese (BMI le 24.9)",
255
- "Response_Filter": "Neither overweight nor obese (BMI le 24.9)",
256
- "State": "Alaska",
257
- "State_Abbr": "AK",
258
- "Subcategory": "35-44",
259
- "Subcategory_Filter": "35-44",
260
- "Subcategory_Order": "10",
261
- "Topic": "BMI Categories",
262
- "Visual_Type_Filter": "Chart_Table_Map",
263
- "Year": "1995",
264
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
265
- "n": "207"
163
+ "State": "CO",
164
+ "Activity Level": "High",
165
+ "Funding Status": "Current",
166
+ "URL": "https://www.cdc.gov/flu/",
167
+ "uid": "US-CO"
266
168
  },
267
169
  {
268
- "95%_CI": "23.6-39.6",
269
- "Category": "Age Group",
270
- "Category_Order": "3",
271
- "Class": "Overweight and Obesity (BMI)",
272
- "DataSource": "BRFSS",
273
- "Data_Type": "Crude Prevalence",
274
- "Dataset": "Nationwide",
275
- "Footnotes": "N/A",
276
- "GeoLocation_Lat": "N/A",
277
- "GeoLocation_Long": "N/A",
278
- "High_CI": "39.6",
279
- "LocationCategory": "States",
280
- "Low_CI": "23.6",
281
- "Percentage": 31.6,
282
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
283
- "Response": "Neither overweight nor obese (BMI le 24.9)",
284
- "Response_Filter": "Neither overweight nor obese (BMI le 24.9)",
285
- "State": "Alaska",
286
- "State_Abbr": "AK",
287
- "Subcategory": "45-54",
288
- "Subcategory_Filter": "45-54",
289
- "Subcategory_Order": "14",
290
- "Topic": "BMI Categories",
291
- "Visual_Type_Filter": "Chart_Table_Map",
292
- "Year": "1995",
293
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
294
- "n": "98"
170
+ "State": "CT",
171
+ "Activity Level": "Moderate",
172
+ "Funding Status": "Current",
173
+ "URL": "https://www.cdc.gov/mmwr/",
174
+ "uid": "US-CT"
295
175
  },
296
176
  {
297
- "95%_CI": "N/A",
298
- "Category": "Age Group",
299
- "Category_Order": "3",
300
- "Class": "Overweight and Obesity (BMI)",
301
- "DataSource": "BRFSS",
302
- "Data_Type": "Crude Prevalence",
303
- "Dataset": "Nationwide",
304
- "Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
305
- "GeoLocation_Lat": "N/A",
306
- "GeoLocation_Long": "N/A",
307
- "High_CI": "N/A",
308
- "LocationCategory": "States",
309
- "Low_CI": "N/A",
310
- "Percentage": "N/A",
311
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
312
- "Response": "Neither overweight nor obese (BMI le 24.9)",
313
- "Response_Filter": "Neither overweight nor obese (BMI le 24.9)",
314
- "State": "Alaska",
315
- "State_Abbr": "AK",
316
- "Subcategory": "55-64",
317
- "Subcategory_Filter": "55-64",
318
- "Subcategory_Order": "18",
319
- "Topic": "BMI Categories",
320
- "Visual_Type_Filter": "Chart_Table_Map",
321
- "Year": "1995",
322
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
323
- "n": "55"
177
+ "State": "DE",
178
+ "Activity Level": "Very Low",
179
+ "Funding Status": "Current",
180
+ "URL": "https://www.cdc.gov/flu/",
181
+ "uid": "US-DE"
324
182
  },
325
183
  {
326
- "95%_CI": "N/A",
327
- "Category": "Age Group",
328
- "Category_Order": "3",
329
- "Class": "Overweight and Obesity (BMI)",
330
- "DataSource": "BRFSS",
331
- "Data_Type": "Crude Prevalence",
332
- "Dataset": "Nationwide",
333
- "Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
334
- "GeoLocation_Lat": "N/A",
335
- "GeoLocation_Long": "N/A",
336
- "High_CI": "N/A",
337
- "LocationCategory": "States",
338
- "Low_CI": "N/A",
339
- "Percentage": "N/A",
340
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
341
- "Response": "Neither overweight nor obese (BMI le 24.9)",
342
- "Response_Filter": "Neither overweight nor obese (BMI le 24.9)",
343
- "State": "Alaska",
344
- "State_Abbr": "AK",
345
- "Subcategory": "65+",
346
- "Subcategory_Filter": "65+",
347
- "Subcategory_Order": "23",
348
- "Topic": "BMI Categories",
349
- "Visual_Type_Filter": "Chart_Table_Map",
350
- "Year": "1995",
351
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
352
- "n": "35"
184
+ "State": "DC",
185
+ "Activity Level": "Minimal",
186
+ "Funding Status": "Current",
187
+ "URL": "https://www.cdc.gov/flu/",
188
+ "uid": "US-DC"
353
189
  },
354
190
  {
355
- "95%_CI": "17.8-37.4",
356
- "Category": "Age Group",
357
- "Category_Order": "3",
358
- "Class": "Overweight and Obesity (BMI)",
359
- "DataSource": "BRFSS",
360
- "Data_Type": "Crude Prevalence",
361
- "Dataset": "Nationwide",
362
- "Footnotes": "N/A",
363
- "GeoLocation_Lat": "N/A",
364
- "GeoLocation_Long": "N/A",
365
- "High_CI": "37.4",
366
- "LocationCategory": "States",
367
- "Low_CI": "17.8",
368
- "Percentage": 27.6,
369
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
370
- "Response": "Overweight (BMI 25.0-29.9)",
371
- "Response_Filter": "Overweight (BMI 25.0-29.9)",
372
- "State": "Alaska",
373
- "State_Abbr": "AK",
374
- "Subcategory": "18-24",
375
- "Subcategory_Filter": "18-24",
376
- "Subcategory_Order": "4",
377
- "Topic": "BMI Categories",
378
- "Visual_Type_Filter": "Chart_Table_Map",
379
- "Year": "1995",
380
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
381
- "n": "39"
191
+ "State": "FL",
192
+ "Activity Level": "Very High",
193
+ "Funding Status": "Current",
194
+ "URL": "https://www.cdc.gov/mmwr/",
195
+ "uid": "US-FL"
382
196
  },
383
197
  {
384
- "95%_CI": "30.3-44.3",
385
- "Category": "Age Group",
386
- "Category_Order": "3",
387
- "Class": "Overweight and Obesity (BMI)",
388
- "DataSource": "BRFSS",
389
- "Data_Type": "Crude Prevalence",
390
- "Dataset": "Nationwide",
391
- "Footnotes": "N/A",
392
- "GeoLocation_Lat": "N/A",
393
- "GeoLocation_Long": "N/A",
394
- "High_CI": "44.3",
395
- "LocationCategory": "States",
396
- "Low_CI": "30.3",
397
- "Percentage": 37.3,
398
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
399
- "Response": "Overweight (BMI 25.0-29.9)",
400
- "Response_Filter": "Overweight (BMI 25.0-29.9)",
401
- "State": "Alaska",
402
- "State_Abbr": "AK",
403
- "Subcategory": "25-34",
404
- "Subcategory_Filter": "25-34",
405
- "Subcategory_Order": "7",
406
- "Topic": "BMI Categories",
407
- "Visual_Type_Filter": "Chart_Table_Map",
408
- "Year": "1995",
409
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
410
- "n": "123"
198
+ "State": "GA",
199
+ "Activity Level": "High",
200
+ "Funding Status": "Current",
201
+ "URL": "https://www.cdc.gov/flu/",
202
+ "uid": "US-GA"
411
203
  },
412
204
  {
413
- "95%_CI": "26.5-39.9",
414
- "Category": "Age Group",
415
- "Category_Order": "3",
416
- "Class": "Overweight and Obesity (BMI)",
417
- "DataSource": "BRFSS",
418
- "Data_Type": "Crude Prevalence",
419
- "Dataset": "Nationwide",
420
- "Footnotes": "N/A",
421
- "GeoLocation_Lat": "N/A",
422
- "GeoLocation_Long": "N/A",
423
- "High_CI": "39.9",
424
- "LocationCategory": "States",
425
- "Low_CI": "26.5",
426
- "Percentage": 33.2,
427
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
428
- "Response": "Overweight (BMI 25.0-29.9)",
429
- "Response_Filter": "Overweight (BMI 25.0-29.9)",
430
- "State": "Alaska",
431
- "State_Abbr": "AK",
432
- "Subcategory": "35-44",
433
- "Subcategory_Filter": "35-44",
434
- "Subcategory_Order": "10",
435
- "Topic": "BMI Categories",
436
- "Visual_Type_Filter": "Chart_Table_Map",
437
- "Year": "1995",
438
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
439
- "n": "148"
205
+ "State": "GU",
206
+ "Activity Level": "Moderate",
207
+ "Funding Status": "*",
208
+ "URL": "https://www.cdc.gov/flu/",
209
+ "uid": null
440
210
  },
441
211
  {
442
- "95%_CI": "32.2-49.2",
443
- "Category": "Age Group",
444
- "Category_Order": "3",
445
- "Class": "Overweight and Obesity (BMI)",
446
- "DataSource": "BRFSS",
447
- "Data_Type": "Crude Prevalence",
448
- "Dataset": "Nationwide",
449
- "Footnotes": "N/A",
450
- "GeoLocation_Lat": "N/A",
451
- "GeoLocation_Long": "N/A",
452
- "High_CI": "49.2",
453
- "LocationCategory": "States",
454
- "Low_CI": "32.2",
455
- "Percentage": 40.7,
456
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
457
- "Response": "Overweight (BMI 25.0-29.9)",
458
- "Response_Filter": "Overweight (BMI 25.0-29.9)",
459
- "State": "Alaska",
460
- "State_Abbr": "AK",
461
- "Subcategory": "45-54",
462
- "Subcategory_Filter": "45-54",
463
- "Subcategory_Order": "14",
464
- "Topic": "BMI Categories",
465
- "Visual_Type_Filter": "Chart_Table_Map",
466
- "Year": "1995",
467
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
468
- "n": "132"
212
+ "State": "HI",
213
+ "Activity Level": "Low",
214
+ "Funding Status": "Current",
215
+ "URL": "https://www.cdc.gov/mmwr/",
216
+ "uid": "US-HI"
469
217
  },
470
218
  {
471
- "95%_CI": "N/A",
472
- "Category": "Age Group",
473
- "Category_Order": "3",
474
- "Class": "Overweight and Obesity (BMI)",
475
- "DataSource": "BRFSS",
476
- "Data_Type": "Crude Prevalence",
477
- "Dataset": "Nationwide",
478
- "Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
479
- "GeoLocation_Lat": "N/A",
480
- "GeoLocation_Long": "N/A",
481
- "High_CI": "N/A",
482
- "LocationCategory": "States",
483
- "Low_CI": "N/A",
484
- "Percentage": "N/A",
485
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
486
- "Response": "Overweight (BMI 25.0-29.9)",
487
- "Response_Filter": "Overweight (BMI 25.0-29.9)",
488
- "State": "Alaska",
489
- "State_Abbr": "AK",
490
- "Subcategory": "55-64",
491
- "Subcategory_Filter": "55-64",
492
- "Subcategory_Order": "18",
493
- "Topic": "BMI Categories",
494
- "Visual_Type_Filter": "Chart_Table_Map",
495
- "Year": "1995",
496
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
497
- "n": "65"
219
+ "State": "ID",
220
+ "Activity Level": "Zero",
221
+ "Funding Status": "Current",
222
+ "URL": "https://www.cdc.gov/flu/",
223
+ "uid": "US-ID"
498
224
  },
499
225
  {
500
- "95%_CI": "N/A",
501
- "Category": "Age Group",
502
- "Category_Order": "3",
503
- "Class": "Overweight and Obesity (BMI)",
504
- "DataSource": "BRFSS",
505
- "Data_Type": "Crude Prevalence",
506
- "Dataset": "Nationwide",
507
- "Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
508
- "GeoLocation_Lat": "N/A",
509
- "GeoLocation_Long": "N/A",
510
- "High_CI": "N/A",
511
- "LocationCategory": "States",
512
- "Low_CI": "N/A",
513
- "Percentage": "N/A",
514
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
515
- "Response": "Overweight (BMI 25.0-29.9)",
516
- "Response_Filter": "Overweight (BMI 25.0-29.9)",
517
- "State": "Alaska",
518
- "State_Abbr": "AK",
519
- "Subcategory": "65+",
520
- "Subcategory_Filter": "65+",
521
- "Subcategory_Order": "23",
522
- "Topic": "BMI Categories",
523
- "Visual_Type_Filter": "Chart_Table_Map",
524
- "Year": "1995",
525
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
526
- "n": "53"
226
+ "State": "IL",
227
+ "Activity Level": "Very High",
228
+ "Funding Status": "Current",
229
+ "URL": "https://www.cdc.gov/flu/",
230
+ "uid": "US-IL"
527
231
  },
528
232
  {
529
- "95%_CI": "8.0-24.0",
530
- "Category": "Age Group",
531
- "Category_Order": "3",
532
- "Class": "Overweight and Obesity (BMI)",
533
- "DataSource": "BRFSS",
534
- "Data_Type": "Crude Prevalence",
535
- "Dataset": "Nationwide",
536
- "Footnotes": "N/A",
537
- "GeoLocation_Lat": "N/A",
538
- "GeoLocation_Long": "N/A",
539
- "High_CI": "24.0",
540
- "LocationCategory": "States",
541
- "Low_CI": "8.0",
542
- "Percentage": 16,
543
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
544
- "Response": "Obese (BMI 30.0 - 99.8)",
545
- "Response_Filter": "Obese (BMI 30.0 - 99.8)",
546
- "State": "Alaska",
547
- "State_Abbr": "AK",
548
- "Subcategory": "18-24",
549
- "Subcategory_Filter": "18-24",
550
- "Subcategory_Order": "4",
551
- "Topic": "BMI Categories",
552
- "Visual_Type_Filter": "Chart_Table_Map",
553
- "Year": "1995",
554
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
555
- "n": "20"
233
+ "State": "IN",
234
+ "Activity Level": "High",
235
+ "Funding Status": "Current",
236
+ "URL": "https://www.cdc.gov/mmwr/",
237
+ "uid": "US-IN"
556
238
  },
557
239
  {
558
- "95%_CI": "8.1-17.3",
559
- "Category": "Age Group",
560
- "Category_Order": "3",
561
- "Class": "Overweight and Obesity (BMI)",
562
- "DataSource": "BRFSS",
563
- "Data_Type": "Crude Prevalence",
564
- "Dataset": "Nationwide",
565
- "Footnotes": "N/A",
566
- "GeoLocation_Lat": "N/A",
567
- "GeoLocation_Long": "N/A",
568
- "High_CI": "17.3",
569
- "LocationCategory": "States",
570
- "Low_CI": "8.1",
571
- "Percentage": 12.7,
572
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
573
- "Response": "Obese (BMI 30.0 - 99.8)",
574
- "Response_Filter": "Obese (BMI 30.0 - 99.8)",
575
- "State": "Alaska",
576
- "State_Abbr": "AK",
577
- "Subcategory": "25-34",
578
- "Subcategory_Filter": "25-34",
579
- "Subcategory_Order": "7",
580
- "Topic": "BMI Categories",
581
- "Visual_Type_Filter": "Chart_Table_Map",
582
- "Year": "1995",
583
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
584
- "n": "47"
240
+ "State": "IA",
241
+ "Activity Level": "Moderate",
242
+ "Funding Status": "Current",
243
+ "URL": "https://www.cdc.gov/flu/",
244
+ "uid": "US-IA"
585
245
  },
586
246
  {
587
- "95%_CI": "14.7-26.5",
588
- "Category": "Age Group",
589
- "Category_Order": "3",
590
- "Class": "Overweight and Obesity (BMI)",
591
- "DataSource": "BRFSS",
592
- "Data_Type": "Crude Prevalence",
593
- "Dataset": "Nationwide",
594
- "Footnotes": "N/A",
595
- "GeoLocation_Lat": "N/A",
596
- "GeoLocation_Long": "N/A",
597
- "High_CI": "26.5",
598
- "LocationCategory": "States",
599
- "Low_CI": "14.7",
600
- "Percentage": 20.6,
601
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
602
- "Response": "Obese (BMI 30.0 - 99.8)",
603
- "Response_Filter": "Obese (BMI 30.0 - 99.8)",
604
- "State": "Alaska",
605
- "State_Abbr": "AK",
606
- "Subcategory": "35-44",
607
- "Subcategory_Filter": "35-44",
608
- "Subcategory_Order": "10",
609
- "Topic": "BMI Categories",
610
- "Visual_Type_Filter": "Chart_Table_Map",
611
- "Year": "1995",
612
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
613
- "n": "91"
247
+ "State": "KS",
248
+ "Activity Level": "Low",
249
+ "Funding Status": "Current",
250
+ "URL": "https://www.cdc.gov/flu/",
251
+ "uid": "US-KS"
614
252
  },
615
253
  {
616
- "95%_CI": "19.7-35.7",
617
- "Category": "Age Group",
618
- "Category_Order": "3",
619
- "Class": "Overweight and Obesity (BMI)",
620
- "DataSource": "BRFSS",
621
- "Data_Type": "Crude Prevalence",
622
- "Dataset": "Nationwide",
623
- "Footnotes": "N/A",
624
- "GeoLocation_Lat": "N/A",
625
- "GeoLocation_Long": "N/A",
626
- "High_CI": "35.7",
627
- "LocationCategory": "States",
628
- "Low_CI": "19.7",
629
- "Percentage": 27.7,
630
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
631
- "Response": "Obese (BMI 30.0 - 99.8)",
632
- "Response_Filter": "Obese (BMI 30.0 - 99.8)",
633
- "State": "Alaska",
634
- "State_Abbr": "AK",
635
- "Subcategory": "45-54",
636
- "Subcategory_Filter": "45-54",
637
- "Subcategory_Order": "14",
638
- "Topic": "BMI Categories",
639
- "Visual_Type_Filter": "Chart_Table_Map",
640
- "Year": "1995",
641
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
642
- "n": "79"
254
+ "State": "KY",
255
+ "Activity Level": "Minimal",
256
+ "Funding Status": "Current",
257
+ "URL": "https://www.cdc.gov/mmwr/",
258
+ "uid": "US-KY"
643
259
  },
644
260
  {
645
- "95%_CI": "14.3-33.7",
646
- "Category": "Age Group",
647
- "Category_Order": "3",
648
- "Class": "Overweight and Obesity (BMI)",
649
- "DataSource": "BRFSS",
650
- "Data_Type": "Crude Prevalence",
651
- "Dataset": "Nationwide",
652
- "Footnotes": "N/A",
653
- "GeoLocation_Lat": "N/A",
654
- "GeoLocation_Long": "N/A",
655
- "High_CI": "33.7",
656
- "LocationCategory": "States",
657
- "Low_CI": "14.3",
658
- "Percentage": 24,
659
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
660
- "Response": "Obese (BMI 30.0 - 99.8)",
661
- "Response_Filter": "Obese (BMI 30.0 - 99.8)",
662
- "State": "Alaska",
663
- "State_Abbr": "AK",
664
- "Subcategory": "55-64",
665
- "Subcategory_Filter": "55-64",
666
- "Subcategory_Order": "18",
667
- "Topic": "BMI Categories",
668
- "Visual_Type_Filter": "Chart_Table_Map",
669
- "Year": "1995",
670
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
671
- "n": "44"
261
+ "State": "LA",
262
+ "Activity Level": "Very High",
263
+ "Funding Status": "*",
264
+ "URL": "https://www.cdc.gov/flu/",
265
+ "uid": "US-LA"
672
266
  },
673
267
  {
674
- "95%_CI": "N/A",
675
- "Category": "Age Group",
676
- "Category_Order": "3",
677
- "Class": "Overweight and Obesity (BMI)",
678
- "DataSource": "BRFSS",
679
- "Data_Type": "Crude Prevalence",
680
- "Dataset": "Nationwide",
681
- "Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
682
- "GeoLocation_Lat": "N/A",
683
- "GeoLocation_Long": "N/A",
684
- "High_CI": "N/A",
685
- "LocationCategory": "States",
686
- "Low_CI": "N/A",
687
- "Percentage": "N/A",
688
- "Question": "Weight classification by Body Mass Index (BMI) (variable calculated from one or more BRFSS questions)",
689
- "Response": "Obese (BMI 30.0 - 99.8)",
690
- "Response_Filter": "Obese (BMI 30.0 - 99.8)",
691
- "State": "Alaska",
692
- "State_Abbr": "AK",
693
- "Subcategory": "65+",
694
- "Subcategory_Filter": "65+",
695
- "Subcategory_Order": "23",
696
- "Topic": "BMI Categories",
697
- "Visual_Type_Filter": "Chart_Table_Map",
698
- "Year": "1995",
699
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
700
- "n": "36"
268
+ "State": "ME",
269
+ "Activity Level": "High",
270
+ "Funding Status": "Current",
271
+ "URL": "https://www.cdc.gov/flu/",
272
+ "uid": "US-ME"
701
273
  },
702
274
  {
703
- "95%_CI": "N/A",
704
- "Category": "Age Group",
705
- "Category_Order": "3",
706
- "Class": "Demographics",
707
- "DataSource": "BRFSS",
708
- "Data_Type": "Crude Prevalence",
709
- "Dataset": "Nationwide",
710
- "Footnotes": "Prevalence estimate not available if the unweighted sample size for the denominator was < 50 or the CI half width was > 10 for any cell, or if the state did not collect data for that calendar year.",
711
- "GeoLocation_Lat": "N/A",
712
- "GeoLocation_Long": "N/A",
713
- "High_CI": "N/A",
714
- "LocationCategory": "States",
715
- "Low_CI": "N/A",
716
- "Percentage": "N/A",
717
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
718
- "Response": "None",
719
- "Response_Filter": "None",
720
- "State": "Alaska",
721
- "State_Abbr": "AK",
722
- "Subcategory": "18-24",
723
- "Subcategory_Filter": "18-24",
724
- "Subcategory_Order": "4",
725
- "Topic": "Number of Children",
726
- "Visual_Type_Filter": "Chart_Table_Map",
727
- "Year": "1995",
728
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
729
- "n": "63"
275
+ "State": "MH",
276
+ "Activity Level": "Moderate",
277
+ "Funding Status": "Current",
278
+ "URL": "https://www.cdc.gov/mmwr/",
279
+ "uid": null
730
280
  },
731
281
  {
732
- "95%_CI": "35.0-49.2",
733
- "Category": "Age Group",
734
- "Category_Order": "3",
735
- "Class": "Demographics",
736
- "DataSource": "BRFSS",
737
- "Data_Type": "Crude Prevalence",
738
- "Dataset": "Nationwide",
739
- "Footnotes": "N/A",
740
- "GeoLocation_Lat": "N/A",
741
- "GeoLocation_Long": "N/A",
742
- "High_CI": "49.2",
743
- "LocationCategory": "States",
744
- "Low_CI": "35.0",
745
- "Percentage": 42.1,
746
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
747
- "Response": "None",
748
- "Response_Filter": "None",
749
- "State": "Alaska",
750
- "State_Abbr": "AK",
751
- "Subcategory": "25-34",
752
- "Subcategory_Filter": "25-34",
753
- "Subcategory_Order": "7",
754
- "Topic": "Number of Children",
755
- "Visual_Type_Filter": "Chart_Table_Map",
756
- "Year": "1995",
757
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
758
- "n": "138"
282
+ "State": "MD",
283
+ "Activity Level": "Low",
284
+ "Funding Status": "Current",
285
+ "URL": "https://www.cdc.gov/flu/",
286
+ "uid": "US-MD"
759
287
  },
760
288
  {
761
- "95%_CI": "22.0-34.0",
762
- "Category": "Age Group",
763
- "Category_Order": "3",
764
- "Class": "Demographics",
765
- "DataSource": "BRFSS",
766
- "Data_Type": "Crude Prevalence",
767
- "Dataset": "Nationwide",
768
- "Footnotes": "N/A",
769
- "GeoLocation_Lat": "N/A",
770
- "GeoLocation_Long": "N/A",
771
- "High_CI": "34.0",
772
- "LocationCategory": "States",
773
- "Low_CI": "22.0",
774
- "Percentage": 28,
775
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
776
- "Response": "None",
777
- "Response_Filter": "None",
778
- "State": "Alaska",
779
- "State_Abbr": "AK",
780
- "Subcategory": "35-44",
781
- "Subcategory_Filter": "35-44",
782
- "Subcategory_Order": "10",
783
- "Topic": "Number of Children",
784
- "Visual_Type_Filter": "Chart_Table_Map",
785
- "Year": "1995",
786
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
787
- "n": "138"
289
+ "State": "MA",
290
+ "Activity Level": "Minimal",
291
+ "Funding Status": "Current",
292
+ "URL": "https://www.cdc.gov/flu/",
293
+ "uid": "US-MA"
788
294
  },
789
295
  {
790
- "95%_CI": "48.8-66.0",
791
- "Category": "Age Group",
792
- "Category_Order": "3",
793
- "Class": "Demographics",
794
- "DataSource": "BRFSS",
795
- "Data_Type": "Crude Prevalence",
796
- "Dataset": "Nationwide",
797
- "Footnotes": "N/A",
798
- "GeoLocation_Lat": "N/A",
799
- "GeoLocation_Long": "N/A",
800
- "High_CI": "66.0",
801
- "LocationCategory": "States",
802
- "Low_CI": "48.8",
803
- "Percentage": 57.4,
804
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
805
- "Response": "None",
806
- "Response_Filter": "None",
807
- "State": "Alaska",
808
- "State_Abbr": "AK",
809
- "Subcategory": "45-54",
810
- "Subcategory_Filter": "45-54",
811
- "Subcategory_Order": "14",
812
- "Topic": "Number of Children",
813
- "Visual_Type_Filter": "Chart_Table_Map",
814
- "Year": "1995",
815
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
816
- "n": "194"
296
+ "State": "MI",
297
+ "Activity Level": "Very High",
298
+ "Funding Status": "Current",
299
+ "URL": "https://www.cdc.gov/mmwr/",
300
+ "uid": "US-MI"
817
301
  },
818
302
  {
819
- "95%_CI": "76.1-94.9",
820
- "Category": "Age Group",
821
- "Category_Order": "3",
822
- "Class": "Demographics",
823
- "DataSource": "BRFSS",
824
- "Data_Type": "Crude Prevalence",
825
- "Dataset": "Nationwide",
826
- "Footnotes": "N/A",
827
- "GeoLocation_Lat": "N/A",
828
- "GeoLocation_Long": "N/A",
829
- "High_CI": "94.9",
830
- "LocationCategory": "States",
831
- "Low_CI": "76.1",
832
- "Percentage": 85.5,
833
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
834
- "Response": "None",
835
- "Response_Filter": "None",
836
- "State": "Alaska",
837
- "State_Abbr": "AK",
838
- "Subcategory": "55-64",
839
- "Subcategory_Filter": "55-64",
840
- "Subcategory_Order": "18",
841
- "Topic": "Number of Children",
842
- "Visual_Type_Filter": "Chart_Table_Map",
843
- "Year": "1995",
844
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
845
- "n": "139"
303
+ "State": "FM",
304
+ "Activity Level": "High",
305
+ "Funding Status": "Current",
306
+ "URL": "https://www.cdc.gov/flu/",
307
+ "uid": null
846
308
  },
847
309
  {
848
- "95%_CI": "N/A",
849
- "Category": "Age Group",
850
- "Category_Order": "3",
851
- "Class": "Demographics",
852
- "DataSource": "BRFSS",
853
- "Data_Type": "Crude Prevalence",
854
- "Dataset": "Nationwide",
855
- "Footnotes": "N/A",
856
- "GeoLocation_Lat": "N/A",
857
- "GeoLocation_Long": "N/A",
858
- "High_CI": "N/A",
859
- "LocationCategory": "States",
860
- "Low_CI": "83.8",
861
- "Percentage": 93.4,
862
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
863
- "Response": "None",
864
- "Response_Filter": "None",
865
- "State": "Alaska",
866
- "State_Abbr": "AK",
867
- "Subcategory": "65+",
868
- "Subcategory_Filter": "65+",
869
- "Subcategory_Order": "23",
870
- "Topic": "Number of Children",
871
- "Visual_Type_Filter": "Chart_Table_Map",
872
- "Year": "1995",
873
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
874
- "n": "126"
310
+ "State": "MN",
311
+ "Activity Level": "Moderate",
312
+ "Funding Status": "NA",
313
+ "URL": "https://www.cdc.gov/flu/",
314
+ "uid": "US-MN"
875
315
  },
876
316
  {
877
- "95%_CI": "11.3-30.1",
878
- "Category": "Age Group",
879
- "Category_Order": "3",
880
- "Class": "Demographics",
881
- "DataSource": "BRFSS",
882
- "Data_Type": "Crude Prevalence",
883
- "Dataset": "Nationwide",
884
- "Footnotes": "N/A",
885
- "GeoLocation_Lat": "N/A",
886
- "GeoLocation_Long": "N/A",
887
- "High_CI": "30.1",
888
- "LocationCategory": "States",
889
- "Low_CI": "11.3",
890
- "Percentage": 20.7,
891
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
892
- "Response": "One child",
893
- "Response_Filter": "One child",
894
- "State": "Alaska",
895
- "State_Abbr": "AK",
896
- "Subcategory": "18-24",
897
- "Subcategory_Filter": "18-24",
898
- "Subcategory_Order": "4",
899
- "Topic": "Number of Children",
900
- "Visual_Type_Filter": "Chart_Table_Map",
901
- "Year": "1995",
902
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
903
- "n": "25"
317
+ "State": "MS",
318
+ "Activity Level": "Very Low",
319
+ "Funding Status": "Current",
320
+ "URL": "https://www.cdc.gov/mmwr/",
321
+ "uid": "US-MS"
904
322
  },
905
323
  {
906
- "95%_CI": "12.0-22.2",
907
- "Category": "Age Group",
908
- "Category_Order": "3",
909
- "Class": "Demographics",
910
- "DataSource": "BRFSS",
911
- "Data_Type": "Crude Prevalence",
912
- "Dataset": "Nationwide",
913
- "Footnotes": "N/A",
914
- "GeoLocation_Lat": "N/A",
915
- "GeoLocation_Long": "N/A",
916
- "High_CI": "22.2",
917
- "LocationCategory": "States",
918
- "Low_CI": "12.0",
919
- "Percentage": 17.1,
920
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
921
- "Response": "One child",
922
- "Response_Filter": "One child",
923
- "State": "Alaska",
924
- "State_Abbr": "AK",
925
- "Subcategory": "25-34",
926
- "Subcategory_Filter": "25-34",
927
- "Subcategory_Order": "7",
928
- "Topic": "Number of Children",
929
- "Visual_Type_Filter": "Chart_Table_Map",
930
- "Year": "1995",
931
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
932
- "n": "62"
324
+ "State": "MO",
325
+ "Activity Level": "Zero",
326
+ "Funding Status": "Current",
327
+ "URL": "https://www.cdc.gov/flu/",
328
+ "uid": "US-MO"
933
329
  },
934
330
  {
935
- "95%_CI": "15.7-26.9",
936
- "Category": "Age Group",
937
- "Category_Order": "3",
938
- "Class": "Demographics",
939
- "DataSource": "BRFSS",
940
- "Data_Type": "Crude Prevalence",
941
- "Dataset": "Nationwide",
942
- "Footnotes": "N/A",
943
- "GeoLocation_Lat": "N/A",
944
- "GeoLocation_Long": "N/A",
945
- "High_CI": "26.9",
946
- "LocationCategory": "States",
947
- "Low_CI": "15.7",
948
- "Percentage": 21.3,
949
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
950
- "Response": "One child",
951
- "Response_Filter": "One child",
952
- "State": "Alaska",
953
- "State_Abbr": "AK",
954
- "Subcategory": "35-44",
955
- "Subcategory_Filter": "35-44",
956
- "Subcategory_Order": "10",
957
- "Topic": "Number of Children",
958
- "Visual_Type_Filter": "Chart_Table_Map",
959
- "Year": "1995",
960
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
961
- "n": "97"
331
+ "State": "MT",
332
+ "Activity Level": "Very High",
333
+ "Funding Status": "Current",
334
+ "URL": "https://www.cdc.gov/flu/",
335
+ "uid": "US-MT"
962
336
  },
963
337
  {
964
- "95%_CI": "16.0-31.6",
965
- "Category": "Age Group",
966
- "Category_Order": "3",
967
- "Class": "Demographics",
968
- "DataSource": "BRFSS",
969
- "Data_Type": "Crude Prevalence",
970
- "Dataset": "Nationwide",
971
- "Footnotes": "N/A",
972
- "GeoLocation_Lat": "N/A",
973
- "GeoLocation_Long": "N/A",
974
- "High_CI": "31.6",
975
- "LocationCategory": "States",
976
- "Low_CI": "16.0",
977
- "Percentage": 23.8,
978
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
979
- "Response": "One child",
980
- "Response_Filter": "One child",
981
- "State": "Alaska",
982
- "State_Abbr": "AK",
983
- "Subcategory": "45-54",
984
- "Subcategory_Filter": "45-54",
985
- "Subcategory_Order": "14",
986
- "Topic": "Number of Children",
987
- "Visual_Type_Filter": "Chart_Table_Map",
988
- "Year": "1995",
989
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
990
- "n": "68"
338
+ "State": "NE",
339
+ "Activity Level": "High",
340
+ "Funding Status": "Current",
341
+ "URL": "https://www.cdc.gov/mmwr/",
342
+ "uid": "US-NE"
991
343
  },
992
344
  {
993
- "95%_CI": "2.1-7.7",
994
- "Category": "Age Group",
995
- "Category_Order": "3",
996
- "Class": "Demographics",
997
- "DataSource": "BRFSS",
998
- "Data_Type": "Crude Prevalence",
999
- "Dataset": "Nationwide",
1000
- "Footnotes": "N/A",
1001
- "GeoLocation_Lat": "N/A",
1002
- "GeoLocation_Long": "N/A",
1003
- "High_CI": "7.7",
1004
- "LocationCategory": "States",
1005
- "Low_CI": "2.1",
1006
- "Percentage": 4.9,
1007
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1008
- "Response": "One child",
1009
- "Response_Filter": "One child",
1010
- "State": "Alaska",
1011
- "State_Abbr": "AK",
1012
- "Subcategory": "55-64",
1013
- "Subcategory_Filter": "55-64",
1014
- "Subcategory_Order": "18",
1015
- "Topic": "Number of Children",
1016
- "Visual_Type_Filter": "Chart_Table_Map",
1017
- "Year": "1995",
1018
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1019
- "n": "15"
345
+ "State": "NV",
346
+ "Activity Level": "Moderate",
347
+ "Funding Status": "Current",
348
+ "URL": "https://www.cdc.gov/flu/",
349
+ "uid": "US-NV"
1020
350
  },
1021
351
  {
1022
- "95%_CI": "0.0-2.2",
1023
- "Category": "Age Group",
1024
- "Category_Order": "3",
1025
- "Class": "Demographics",
1026
- "DataSource": "BRFSS",
1027
- "Data_Type": "Crude Prevalence",
1028
- "Dataset": "Nationwide",
1029
- "Footnotes": "N/A",
1030
- "GeoLocation_Lat": "N/A",
1031
- "GeoLocation_Long": "N/A",
1032
- "High_CI": "2.2",
1033
- "LocationCategory": "States",
1034
- "Low_CI": "0.0",
1035
- "Percentage": 1,
1036
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1037
- "Response": "One child",
1038
- "Response_Filter": "One child",
1039
- "State": "Alaska",
1040
- "State_Abbr": "AK",
1041
- "Subcategory": "65+",
1042
- "Subcategory_Filter": "65+",
1043
- "Subcategory_Order": "23",
1044
- "Topic": "Number of Children",
1045
- "Visual_Type_Filter": "Chart_Table_Map",
1046
- "Year": "1995",
1047
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1048
- "n": "3"
352
+ "State": "NH",
353
+ "Activity Level": "Low",
354
+ "Funding Status": "Current",
355
+ "URL": "https://www.cdc.gov/flu/",
356
+ "uid": "US-NH"
1049
357
  },
1050
358
  {
1051
- "95%_CI": "6.6-21.4",
1052
- "Category": "Age Group",
1053
- "Category_Order": "3",
1054
- "Class": "Demographics",
1055
- "DataSource": "BRFSS",
1056
- "Data_Type": "Crude Prevalence",
1057
- "Dataset": "Nationwide",
1058
- "Footnotes": "N/A",
1059
- "GeoLocation_Lat": "N/A",
1060
- "GeoLocation_Long": "N/A",
1061
- "High_CI": "21.4",
1062
- "LocationCategory": "States",
1063
- "Low_CI": "6.6",
1064
- "Percentage": 14,
1065
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1066
- "Response": "Two children",
1067
- "Response_Filter": "Two children",
1068
- "State": "Alaska",
1069
- "State_Abbr": "AK",
1070
- "Subcategory": "18-24",
1071
- "Subcategory_Filter": "18-24",
1072
- "Subcategory_Order": "4",
1073
- "Topic": "Number of Children",
1074
- "Visual_Type_Filter": "Chart_Table_Map",
1075
- "Year": "1995",
1076
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1077
- "n": "21"
359
+ "State": "NJ",
360
+ "Activity Level": "Minimal",
361
+ "Funding Status": "Current",
362
+ "URL": "https://www.cdc.gov/mmwr/",
363
+ "uid": "US-NJ"
1078
364
  },
1079
365
  {
1080
- "95%_CI": "18.6-30.8",
1081
- "Category": "Age Group",
1082
- "Category_Order": "3",
1083
- "Class": "Demographics",
1084
- "DataSource": "BRFSS",
1085
- "Data_Type": "Crude Prevalence",
1086
- "Dataset": "Nationwide",
1087
- "Footnotes": "N/A",
1088
- "GeoLocation_Lat": "N/A",
1089
- "GeoLocation_Long": "N/A",
1090
- "High_CI": "30.8",
1091
- "LocationCategory": "States",
1092
- "Low_CI": "18.6",
1093
- "Percentage": 24.7,
1094
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1095
- "Response": "Two children",
1096
- "Response_Filter": "Two children",
1097
- "State": "Alaska",
1098
- "State_Abbr": "AK",
1099
- "Subcategory": "25-34",
1100
- "Subcategory_Filter": "25-34",
1101
- "Subcategory_Order": "7",
1102
- "Topic": "Number of Children",
1103
- "Visual_Type_Filter": "Chart_Table_Map",
1104
- "Year": "1995",
1105
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1106
- "n": "82"
366
+ "State": "NM",
367
+ "Activity Level": "Very High",
368
+ "Funding Status": "NA",
369
+ "URL": "https://www.cdc.gov/flu/",
370
+ "uid": "US-NM"
1107
371
  },
1108
372
  {
1109
- "95%_CI": "24.1-38.1",
1110
- "Category": "Age Group",
1111
- "Category_Order": "3",
1112
- "Class": "Demographics",
1113
- "DataSource": "BRFSS",
1114
- "Data_Type": "Crude Prevalence",
1115
- "Dataset": "Nationwide",
1116
- "Footnotes": "N/A",
1117
- "GeoLocation_Lat": "N/A",
1118
- "GeoLocation_Long": "N/A",
1119
- "High_CI": "38.1",
1120
- "LocationCategory": "States",
1121
- "Low_CI": "24.1",
1122
- "Percentage": 31.1,
1123
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1124
- "Response": "Two children",
1125
- "Response_Filter": "Two children",
1126
- "State": "Alaska",
1127
- "State_Abbr": "AK",
1128
- "Subcategory": "35-44",
1129
- "Subcategory_Filter": "35-44",
1130
- "Subcategory_Order": "10",
1131
- "Topic": "Number of Children",
1132
- "Visual_Type_Filter": "Chart_Table_Map",
1133
- "Year": "1995",
1134
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1135
- "n": "128"
373
+ "State": "NY",
374
+ "Activity Level": "High",
375
+ "Funding Status": "Current",
376
+ "URL": "https://www.cdc.gov/flu/",
377
+ "uid": "US-NY"
1136
378
  },
1137
379
  {
1138
- "95%_CI": "7.4-19.2",
1139
- "Category": "Age Group",
1140
- "Category_Order": "3",
1141
- "Class": "Demographics",
1142
- "DataSource": "BRFSS",
1143
- "Data_Type": "Crude Prevalence",
1144
- "Dataset": "Nationwide",
1145
- "Footnotes": "N/A",
1146
- "GeoLocation_Lat": "N/A",
1147
- "GeoLocation_Long": "N/A",
1148
- "High_CI": "19.2",
1149
- "LocationCategory": "States",
1150
- "Low_CI": "7.4",
1151
- "Percentage": 13.3,
1152
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1153
- "Response": "Two children",
1154
- "Response_Filter": "Two children",
1155
- "State": "Alaska",
1156
- "State_Abbr": "AK",
1157
- "Subcategory": "45-54",
1158
- "Subcategory_Filter": "45-54",
1159
- "Subcategory_Order": "14",
1160
- "Topic": "Number of Children",
1161
- "Visual_Type_Filter": "Chart_Table_Map",
1162
- "Year": "1995",
1163
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1164
- "n": "37"
380
+ "State": "NC",
381
+ "Activity Level": "Zero",
382
+ "Funding Status": "Current",
383
+ "URL": "https://www.cdc.gov/mmwr/",
384
+ "uid": "US-NC"
1165
385
  },
1166
386
  {
1167
- "95%_CI": "0.0-15.7",
1168
- "Category": "Age Group",
1169
- "Category_Order": "3",
1170
- "Class": "Demographics",
1171
- "DataSource": "BRFSS",
1172
- "Data_Type": "Crude Prevalence",
1173
- "Dataset": "Nationwide",
1174
- "Footnotes": "N/A",
1175
- "GeoLocation_Lat": "N/A",
1176
- "GeoLocation_Long": "N/A",
1177
- "High_CI": "15.7",
1178
- "LocationCategory": "States",
1179
- "Low_CI": "0.0",
1180
- "Percentage": 6.6,
1181
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1182
- "Response": "Two children",
1183
- "Response_Filter": "Two children",
1184
- "State": "Alaska",
1185
- "State_Abbr": "AK",
1186
- "Subcategory": "55-64",
1187
- "Subcategory_Filter": "55-64",
1188
- "Subcategory_Order": "18",
1189
- "Topic": "Number of Children",
1190
- "Visual_Type_Filter": "Chart_Table_Map",
1191
- "Year": "1995",
1192
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1193
- "n": "4"
387
+ "State": "ND",
388
+ "Activity Level": "Low",
389
+ "Funding Status": "Current",
390
+ "URL": "https://www.cdc.gov/flu/",
391
+ "uid": "US-ND"
1194
392
  },
1195
393
  {
1196
- "95%_CI": "0.0-1.7",
1197
- "Category": "Age Group",
1198
- "Category_Order": "3",
1199
- "Class": "Demographics",
1200
- "DataSource": "BRFSS",
1201
- "Data_Type": "Crude Prevalence",
1202
- "Dataset": "Nationwide",
1203
- "Footnotes": "N/A",
1204
- "GeoLocation_Lat": "N/A",
1205
- "GeoLocation_Long": "N/A",
1206
- "High_CI": "1.7",
1207
- "LocationCategory": "States",
1208
- "Low_CI": "0.0",
1209
- "Percentage": 0.6,
1210
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1211
- "Response": "Two children",
1212
- "Response_Filter": "Two children",
1213
- "State": "Alaska",
1214
- "State_Abbr": "AK",
1215
- "Subcategory": "65+",
1216
- "Subcategory_Filter": "65+",
1217
- "Subcategory_Order": "23",
1218
- "Topic": "Number of Children",
1219
- "Visual_Type_Filter": "Chart_Table_Map",
1220
- "Year": "1995",
1221
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1222
- "n": "1"
394
+ "State": "MP",
395
+ "Activity Level": "Minimal",
396
+ "Funding Status": "Current",
397
+ "URL": "https://www.cdc.gov/flu/",
398
+ "uid": null
1223
399
  },
1224
400
  {
1225
- "95%_CI": "0.1-9.0",
1226
- "Category": "Age Group",
1227
- "Category_Order": "3",
1228
- "Class": "Demographics",
1229
- "DataSource": "BRFSS",
1230
- "Data_Type": "Crude Prevalence",
1231
- "Dataset": "Nationwide",
1232
- "Footnotes": "N/A",
1233
- "GeoLocation_Lat": "N/A",
1234
- "GeoLocation_Long": "N/A",
1235
- "High_CI": "9.0",
1236
- "LocationCategory": "States",
1237
- "Low_CI": "0.1",
1238
- "Percentage": 4.6,
1239
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1240
- "Response": "Three children",
1241
- "Response_Filter": "Three children",
1242
- "State": "Alaska",
1243
- "State_Abbr": "AK",
1244
- "Subcategory": "18-24",
1245
- "Subcategory_Filter": "18-24",
1246
- "Subcategory_Order": "4",
1247
- "Topic": "Number of Children",
1248
- "Visual_Type_Filter": "Chart_Table_Map",
1249
- "Year": "1995",
1250
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1251
- "n": "6"
401
+ "State": "OH",
402
+ "Activity Level": "Very High",
403
+ "Funding Status": "Current",
404
+ "URL": "https://www.cdc.gov/mmwr/",
405
+ "uid": "US-OH"
1252
406
  },
1253
407
  {
1254
- "95%_CI": "7.3-16.7",
1255
- "Category": "Age Group",
1256
- "Category_Order": "3",
1257
- "Class": "Demographics",
1258
- "DataSource": "BRFSS",
1259
- "Data_Type": "Crude Prevalence",
1260
- "Dataset": "Nationwide",
1261
- "Footnotes": "N/A",
1262
- "GeoLocation_Lat": "N/A",
1263
- "GeoLocation_Long": "N/A",
1264
- "High_CI": "16.7",
1265
- "LocationCategory": "States",
1266
- "Low_CI": "7.3",
1267
- "Percentage": 12,
1268
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1269
- "Response": "Three children",
1270
- "Response_Filter": "Three children",
1271
- "State": "Alaska",
1272
- "State_Abbr": "AK",
1273
- "Subcategory": "25-34",
1274
- "Subcategory_Filter": "25-34",
1275
- "Subcategory_Order": "7",
1276
- "Topic": "Number of Children",
1277
- "Visual_Type_Filter": "Chart_Table_Map",
1278
- "Year": "1995",
1279
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1280
- "n": "38"
408
+ "State": "OK",
409
+ "Activity Level": "High",
410
+ "Funding Status": "Current",
411
+ "URL": "https://www.cdc.gov/flu/",
412
+ "uid": "US-OK"
1281
413
  },
1282
414
  {
1283
- "95%_CI": "9.1-18.5",
1284
- "Category": "Age Group",
1285
- "Category_Order": "3",
1286
- "Class": "Demographics",
1287
- "DataSource": "BRFSS",
1288
- "Data_Type": "Crude Prevalence",
1289
- "Dataset": "Nationwide",
1290
- "Footnotes": "N/A",
1291
- "GeoLocation_Lat": "N/A",
1292
- "GeoLocation_Long": "N/A",
1293
- "High_CI": "18.5",
1294
- "LocationCategory": "States",
1295
- "Low_CI": "9.1",
1296
- "Percentage": 13.8,
1297
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1298
- "Response": "Three children",
1299
- "Response_Filter": "Three children",
1300
- "State": "Alaska",
1301
- "State_Abbr": "AK",
1302
- "Subcategory": "35-44",
1303
- "Subcategory_Filter": "35-44",
1304
- "Subcategory_Order": "10",
1305
- "Topic": "Number of Children",
1306
- "Visual_Type_Filter": "Chart_Table_Map",
1307
- "Year": "1995",
1308
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1309
- "n": "61"
415
+ "State": "OR",
416
+ "Activity Level": "Moderate",
417
+ "Funding Status": "Current",
418
+ "URL": "https://www.cdc.gov/flu/",
419
+ "uid": "US-OR"
1310
420
  },
1311
421
  {
1312
- "95%_CI": "0.7-5.9",
1313
- "Category": "Age Group",
1314
- "Category_Order": "3",
1315
- "Class": "Demographics",
1316
- "DataSource": "BRFSS",
1317
- "Data_Type": "Crude Prevalence",
1318
- "Dataset": "Nationwide",
1319
- "Footnotes": "N/A",
1320
- "GeoLocation_Lat": "N/A",
1321
- "GeoLocation_Long": "N/A",
1322
- "High_CI": "5.9",
1323
- "LocationCategory": "States",
1324
- "Low_CI": "0.7",
1325
- "Percentage": 3.3,
1326
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1327
- "Response": "Three children",
1328
- "Response_Filter": "Three children",
1329
- "State": "Alaska",
1330
- "State_Abbr": "AK",
1331
- "Subcategory": "45-54",
1332
- "Subcategory_Filter": "45-54",
1333
- "Subcategory_Order": "14",
1334
- "Topic": "Number of Children",
1335
- "Visual_Type_Filter": "Chart_Table_Map",
1336
- "Year": "1995",
1337
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1338
- "n": "13"
422
+ "State": "PW",
423
+ "Activity Level": "Low",
424
+ "Funding Status": "Current",
425
+ "URL": "https://www.cdc.gov/mmwr/",
426
+ "uid": null
1339
427
  },
1340
428
  {
1341
- "95%_CI": "0.0-2.6",
1342
- "Category": "Age Group",
1343
- "Category_Order": "3",
1344
- "Class": "Demographics",
1345
- "DataSource": "BRFSS",
1346
- "Data_Type": "Crude Prevalence",
1347
- "Dataset": "Nationwide",
1348
- "Footnotes": "N/A",
1349
- "GeoLocation_Lat": "N/A",
1350
- "GeoLocation_Long": "N/A",
1351
- "High_CI": "2.6",
1352
- "LocationCategory": "States",
1353
- "Low_CI": "0.0",
1354
- "Percentage": 1.2,
1355
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1356
- "Response": "Three children",
1357
- "Response_Filter": "Three children",
1358
- "State": "Alaska",
1359
- "State_Abbr": "AK",
1360
- "Subcategory": "55-64",
1361
- "Subcategory_Filter": "55-64",
1362
- "Subcategory_Order": "18",
1363
- "Topic": "Number of Children",
1364
- "Visual_Type_Filter": "Chart_Table_Map",
1365
- "Year": "1995",
1366
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1367
- "n": "3"
429
+ "State": "PA",
430
+ "Activity Level": "Minimal",
431
+ "Funding Status": "Current",
432
+ "URL": "https://www.cdc.gov/flu/",
433
+ "uid": "US-PA"
1368
434
  },
1369
435
  {
1370
- "95%_CI": "0.0-14.7",
1371
- "Category": "Age Group",
1372
- "Category_Order": "3",
1373
- "Class": "Demographics",
1374
- "DataSource": "BRFSS",
1375
- "Data_Type": "Crude Prevalence",
1376
- "Dataset": "Nationwide",
1377
- "Footnotes": "N/A",
1378
- "GeoLocation_Lat": "N/A",
1379
- "GeoLocation_Long": "N/A",
1380
- "High_CI": "14.7",
1381
- "LocationCategory": "States",
1382
- "Low_CI": "0.0",
1383
- "Percentage": 5.1,
1384
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1385
- "Response": "Three children",
1386
- "Response_Filter": "Three children",
1387
- "State": "Alaska",
1388
- "State_Abbr": "AK",
1389
- "Subcategory": "65+",
1390
- "Subcategory_Filter": "65+",
1391
- "Subcategory_Order": "23",
1392
- "Topic": "Number of Children",
1393
- "Visual_Type_Filter": "Chart_Table_Map",
1394
- "Year": "1995",
1395
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1396
- "n": "1"
436
+ "State": "PR",
437
+ "Activity Level": "Super Duper High",
438
+ "Funding Status": "Current",
439
+ "URL": "https://www.cdc.gov/flu/",
440
+ "uid": null
1397
441
  },
1398
442
  {
1399
- "95%_CI": "0.0-6.2",
1400
- "Category": "Age Group",
1401
- "Category_Order": "3",
1402
- "Class": "Demographics",
1403
- "DataSource": "BRFSS",
1404
- "Data_Type": "Crude Prevalence",
1405
- "Dataset": "Nationwide",
1406
- "Footnotes": "N/A",
1407
- "GeoLocation_Lat": "N/A",
1408
- "GeoLocation_Long": "N/A",
1409
- "High_CI": "6.2",
1410
- "LocationCategory": "States",
1411
- "Low_CI": "0.0",
1412
- "Percentage": 3,
1413
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1414
- "Response": "Four children",
1415
- "Response_Filter": "Four children",
1416
- "State": "Alaska",
1417
- "State_Abbr": "AK",
1418
- "Subcategory": "18-24",
1419
- "Subcategory_Filter": "18-24",
1420
- "Subcategory_Order": "4",
1421
- "Topic": "Number of Children",
1422
- "Visual_Type_Filter": "Chart_Table_Map",
1423
- "Year": "1995",
1424
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1425
- "n": "5"
443
+ "State": "RI",
444
+ "Activity Level": "High",
445
+ "Funding Status": "Current",
446
+ "URL": "https://www.cdc.gov/mmwr/",
447
+ "uid": "US-RI"
1426
448
  },
1427
449
  {
1428
- "95%_CI": "1.1-5.1",
1429
- "Category": "Age Group",
1430
- "Category_Order": "3",
1431
- "Class": "Demographics",
1432
- "DataSource": "BRFSS",
1433
- "Data_Type": "Crude Prevalence",
1434
- "Dataset": "Nationwide",
1435
- "Footnotes": "N/A",
1436
- "GeoLocation_Lat": "N/A",
1437
- "GeoLocation_Long": "N/A",
1438
- "High_CI": "5.1",
1439
- "LocationCategory": "States",
1440
- "Low_CI": "1.1",
1441
- "Percentage": 3.1,
1442
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1443
- "Response": "Four children",
1444
- "Response_Filter": "Four children",
1445
- "State": "Alaska",
1446
- "State_Abbr": "AK",
1447
- "Subcategory": "25-34",
1448
- "Subcategory_Filter": "25-34",
1449
- "Subcategory_Order": "7",
1450
- "Topic": "Number of Children",
1451
- "Visual_Type_Filter": "Chart_Table_Map",
1452
- "Year": "1995",
1453
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1454
- "n": "16"
450
+ "State": "SC",
451
+ "Activity Level": "Moderate",
452
+ "Funding Status": "Current",
453
+ "URL": "https://www.cdc.gov/flu/",
454
+ "uid": "US-SC"
1455
455
  },
1456
456
  {
1457
- "95%_CI": "1.5-5.9",
1458
- "Category": "Age Group",
1459
- "Category_Order": "3",
1460
- "Class": "Demographics",
1461
- "DataSource": "BRFSS",
1462
- "Data_Type": "Crude Prevalence",
1463
- "Dataset": "Nationwide",
1464
- "Footnotes": "N/A",
1465
- "GeoLocation_Lat": "N/A",
1466
- "GeoLocation_Long": "N/A",
1467
- "High_CI": "5.9",
1468
- "LocationCategory": "States",
1469
- "Low_CI": "1.5",
1470
- "Percentage": 3.7,
1471
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1472
- "Response": "Four children",
1473
- "Response_Filter": "Four children",
1474
- "State": "Alaska",
1475
- "State_Abbr": "AK",
1476
- "Subcategory": "35-44",
1477
- "Subcategory_Filter": "35-44",
1478
- "Subcategory_Order": "10",
1479
- "Topic": "Number of Children",
1480
- "Visual_Type_Filter": "Chart_Table_Map",
1481
- "Year": "1995",
1482
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1483
- "n": "23"
457
+ "State": "SD",
458
+ "Activity Level": "Low",
459
+ "Funding Status": "Current",
460
+ "URL": "https://www.cdc.gov/flu/",
461
+ "uid": "US-SD"
1484
462
  },
1485
463
  {
1486
- "95%_CI": "0.0-4.1",
1487
- "Category": "Age Group",
1488
- "Category_Order": "3",
1489
- "Class": "Demographics",
1490
- "DataSource": "BRFSS",
1491
- "Data_Type": "Crude Prevalence",
1492
- "Dataset": "Nationwide",
1493
- "Footnotes": "N/A",
1494
- "GeoLocation_Lat": "N/A",
1495
- "GeoLocation_Long": "N/A",
1496
- "High_CI": "4.1",
1497
- "LocationCategory": "States",
1498
- "Low_CI": "0.0",
1499
- "Percentage": 1.7,
1500
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1501
- "Response": "Four children",
1502
- "Response_Filter": "Four children",
1503
- "State": "Alaska",
1504
- "State_Abbr": "AK",
1505
- "Subcategory": "45-54",
1506
- "Subcategory_Filter": "45-54",
1507
- "Subcategory_Order": "14",
1508
- "Topic": "Number of Children",
1509
- "Visual_Type_Filter": "Chart_Table_Map",
1510
- "Year": "1995",
1511
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1512
- "n": "5"
464
+ "State": "TN",
465
+ "Activity Level": "Minimal",
466
+ "Funding Status": "Current",
467
+ "URL": "https://www.cdc.gov/mmwr/",
468
+ "uid": "US-TN"
1513
469
  },
1514
470
  {
1515
- "95%_CI": "0.0-4.1",
1516
- "Category": "Age Group",
1517
- "Category_Order": "3",
1518
- "Class": "Demographics",
1519
- "DataSource": "BRFSS",
1520
- "Data_Type": "Crude Prevalence",
1521
- "Dataset": "Nationwide",
1522
- "Footnotes": "N/A",
1523
- "GeoLocation_Lat": "N/A",
1524
- "GeoLocation_Long": "N/A",
1525
- "High_CI": "4.1",
1526
- "LocationCategory": "States",
1527
- "Low_CI": "0.0",
1528
- "Percentage": 1.9,
1529
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1530
- "Response": "Four children",
1531
- "Response_Filter": "Four children",
1532
- "State": "Alaska",
1533
- "State_Abbr": "AK",
1534
- "Subcategory": "55-64",
1535
- "Subcategory_Filter": "55-64",
1536
- "Subcategory_Order": "18",
1537
- "Topic": "Number of Children",
1538
- "Visual_Type_Filter": "Chart_Table_Map",
1539
- "Year": "1995",
1540
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1541
- "n": "3"
471
+ "State": "TX",
472
+ "Activity Level": "Very High",
473
+ "Funding Status": "Current",
474
+ "URL": "https://www.cdc.gov/flu/",
475
+ "uid": "US-TX"
1542
476
  },
1543
477
  {
1544
- "95%_CI": "0.0-1.1",
1545
- "Category": "Age Group",
1546
- "Category_Order": "3",
1547
- "Class": "Demographics",
1548
- "DataSource": "BRFSS",
1549
- "Data_Type": "Crude Prevalence",
1550
- "Dataset": "Nationwide",
1551
- "Footnotes": "N/A",
1552
- "GeoLocation_Lat": "N/A",
1553
- "GeoLocation_Long": "N/A",
1554
- "High_CI": "1.1",
1555
- "LocationCategory": "States",
1556
- "Low_CI": "0.0",
1557
- "Percentage": 0.4,
1558
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1559
- "Response": "Five or more children",
1560
- "Response_Filter": "Five or more children",
1561
- "State": "Alaska",
1562
- "State_Abbr": "AK",
1563
- "Subcategory": "18-24",
1564
- "Subcategory_Filter": "18-24",
1565
- "Subcategory_Order": "4",
1566
- "Topic": "Number of Children",
1567
- "Visual_Type_Filter": "Chart_Table_Map",
1568
- "Year": "1995",
1569
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1570
- "n": "1"
478
+ "State": "UT",
479
+ "Activity Level": "High",
480
+ "Funding Status": "Current",
481
+ "URL": "https://www.cdc.gov/flu/",
482
+ "uid": "US-UT"
1571
483
  },
1572
484
  {
1573
- "95%_CI": "0.2-1.6",
1574
- "Category": "Age Group",
1575
- "Category_Order": "3",
1576
- "Class": "Demographics",
1577
- "DataSource": "BRFSS",
1578
- "Data_Type": "Crude Prevalence",
1579
- "Dataset": "Nationwide",
1580
- "Footnotes": "N/A",
1581
- "GeoLocation_Lat": "N/A",
1582
- "GeoLocation_Long": "N/A",
1583
- "High_CI": "1.6",
1584
- "LocationCategory": "States",
1585
- "Low_CI": "0.2",
1586
- "Percentage": 0.9,
1587
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1588
- "Response": "Five or more children",
1589
- "Response_Filter": "Five or more children",
1590
- "State": "Alaska",
1591
- "State_Abbr": "AK",
1592
- "Subcategory": "25-34",
1593
- "Subcategory_Filter": "25-34",
1594
- "Subcategory_Order": "7",
1595
- "Topic": "Number of Children",
1596
- "Visual_Type_Filter": "Chart_Table_Map",
1597
- "Year": "1995",
1598
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1599
- "n": "6"
485
+ "State": "VT",
486
+ "Activity Level": "Moderate",
487
+ "Funding Status": "Current",
488
+ "URL": "https://www.cdc.gov/mmwr/",
489
+ "uid": "US-VT"
1600
490
  },
1601
491
  {
1602
- "95%_CI": "0.3-3.9",
1603
- "Category": "Age Group",
1604
- "Category_Order": "3",
1605
- "Class": "Demographics",
1606
- "DataSource": "BRFSS",
1607
- "Data_Type": "Crude Prevalence",
1608
- "Dataset": "Nationwide",
1609
- "Footnotes": "N/A",
1610
- "GeoLocation_Lat": "N/A",
1611
- "GeoLocation_Long": "N/A",
1612
- "High_CI": "3.9",
1613
- "LocationCategory": "States",
1614
- "Low_CI": "0.3",
1615
- "Percentage": 2.1,
1616
- "Question": "How many children live in your household? (variable calculated from one or more BRFSS questions)",
1617
- "Response": "Five or more children",
1618
- "Response_Filter": "Five or more children",
1619
- "State": "Alaska",
1620
- "State_Abbr": "AK",
1621
- "Subcategory": "35-44",
1622
- "Subcategory_Filter": "35-44",
1623
- "Subcategory_Order": "10",
1624
- "Topic": "Number of Children",
1625
- "Visual_Type_Filter": "Chart_Table_Map",
1626
- "Year": "1995",
1627
- "createdon": "Fri, 10 Jan 2025 17:40:16 GMT",
1628
- "n": "10"
492
+ "State": "VI",
493
+ "Activity Level": "Low",
494
+ "Funding Status": "Current",
495
+ "URL": "https://www.cdc.gov/flu/",
496
+ "uid": null
497
+ },
498
+ {
499
+ "State": "VA",
500
+ "Activity Level": "Minimal",
501
+ "Funding Status": "Current",
502
+ "URL": "https://www.cdc.gov/flu/",
503
+ "uid": "US-VA"
504
+ },
505
+ {
506
+ "State": "WA",
507
+ "Activity Level": "Very High",
508
+ "Funding Status": "Current",
509
+ "URL": "https://www.cdc.gov/mmwr/",
510
+ "uid": "US-WA"
511
+ },
512
+ {
513
+ "State": "WV",
514
+ "Activity Level": "Super Duper High",
515
+ "Funding Status": "Current",
516
+ "URL": "https://www.cdc.gov/flu/",
517
+ "uid": "US-WV"
518
+ },
519
+ {
520
+ "State": "WI",
521
+ "Activity Level": "Moderate",
522
+ "Funding Status": "Current",
523
+ "URL": "https://www.cdc.gov/flu/",
524
+ "uid": "US-WI"
525
+ },
526
+ {
527
+ "State": "WY",
528
+ "Activity Level": "Low",
529
+ "Funding Status": "Current",
530
+ "URL": "https://www.cdc.gov/mmwr/",
531
+ "uid": "US-WY"
1629
532
  }
1630
533
  ],
1631
- "version": "4.25.1"
1632
- }
534
+ "table": {
535
+ "wrapColumns": false,
536
+ "label": "Data Table",
537
+ "expanded": false,
538
+ "limitHeight": false,
539
+ "height": "",
540
+ "caption": "",
541
+ "showDownloadUrl": false,
542
+ "showDataTableLink": true,
543
+ "showDownloadLinkBelow": true,
544
+ "showFullGeoNameInCSV": false,
545
+ "forceDisplay": true,
546
+ "download": true,
547
+ "indexLabel": "",
548
+ "cellMinWidth": "0"
549
+ },
550
+ "tooltips": {
551
+ "appearanceType": "click",
552
+ "linkLabel": "Learn More",
553
+ "capitalizeLabels": true,
554
+ "opacity": 90
555
+ },
556
+ "runtime": {
557
+ "editorErrorMessage": []
558
+ },
559
+ "visual": {
560
+ "minBubbleSize": 1,
561
+ "maxBubbleSize": 20,
562
+ "extraBubbleBorder": false,
563
+ "cityStyle": "circle",
564
+ "cityStyleLabel": "",
565
+ "showBubbleZeros": false,
566
+ "additionalCityStyles": [],
567
+ "geoCodeCircleSize": 8
568
+ },
569
+ "mapPosition": {
570
+ "coordinates": [
571
+ 0,
572
+ 30
573
+ ],
574
+ "zoom": 1
575
+ },
576
+ "map": {
577
+ "layers": [
578
+ {
579
+ "name": "Oregon",
580
+ "url": "https://wcms-wp-test.cdc.gov/newtest/adam/custom_map_layers/oregon-topojson.json",
581
+ "namespace": "cove (1)",
582
+ "fill": "aqua",
583
+ "fillOpacity": 1,
584
+ "stroke": "black",
585
+ "strokeWidth": "3",
586
+ "tooltip": "Oregon"
587
+ }
588
+ ],
589
+ "patterns": [
590
+ {
591
+ "dataKey": "URL",
592
+ "pattern": "circles",
593
+ "contrastCheck": true,
594
+ "dataValue": "https://www.cdc.gov/mmwr/",
595
+ "color": "white"
596
+ }
597
+ ]
598
+ },
599
+ "hexMap": {
600
+ "type": "",
601
+ "shapeGroups": [
602
+ {
603
+ "legendTitle": "",
604
+ "legendDescription": "",
605
+ "items": [
606
+ {
607
+ "key": "",
608
+ "shape": "Arrow Up",
609
+ "column": "",
610
+ "operator": "=",
611
+ "value": ""
612
+ }
613
+ ]
614
+ }
615
+ ]
616
+ },
617
+ "filterBehavior": "Filter Change",
618
+ "filterIntro": "",
619
+ "errors": [],
620
+ "currentViewport": "lg",
621
+ "id": 19,
622
+ "category": "Maps",
623
+ "label": "United States (State- or County-Level)",
624
+ "subType": "us",
625
+ "icon": {
626
+ "key": null,
627
+ "ref": null,
628
+ "props": {},
629
+ "_owner": null
630
+ },
631
+ "content": "Present a U.S. choropleth map at state or county level.",
632
+ "position": "right",
633
+ "datasets": {},
634
+ "activeVizButtonID": 19,
635
+ "dataFileName": "https://wwwdev.cdc.gov/wcms/4.0/cdc-wp/data-presentation/data/indexed-data-files/09-map-US-categorical-with-lookup-column.csv",
636
+ "dataFileSourceType": "url",
637
+ "dataDescription": {
638
+ "horizontal": false,
639
+ "series": false
640
+ },
641
+ "version": "4.25.4",
642
+ "migrations": {
643
+ "addColorMigration": true
644
+ }
645
+ }