@cdc/dashboard 4.26.3 → 4.26.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (151) hide show
  1. package/CONFIG.md +219 -0
  2. package/README.md +60 -20
  3. package/dist/cdcdashboard-CY9IcPSi.es.js +6 -0
  4. package/dist/cdcdashboard-DlpiY3fQ.es.js +4 -0
  5. package/dist/cdcdashboard.js +61559 -58048
  6. package/examples/__data__/data-2.json +6 -0
  7. package/examples/__data__/data.json +6 -0
  8. package/examples/dashboard-conditions-filters-incomplete.json +221 -0
  9. package/examples/dashboard-missing-datasets-multi.json +174 -0
  10. package/examples/dashboard-missing-datasets-single.json +121 -0
  11. package/examples/dashboard-multi-dashboard-version-regression.json +146 -0
  12. package/examples/dashboard-shared-filter-row-delete-cleanup.json +186 -0
  13. package/examples/dashboard-stale-dataset-keys.json +181 -0
  14. package/examples/dashboard-tiered-filter-regression.json +190 -0
  15. package/examples/legend-issue.json +1 -1
  16. package/examples/minimal-example.json +34 -0
  17. package/examples/private/cfa-dashboard.json +651 -0
  18. package/examples/private/data-bite-wrap.json +6936 -0
  19. package/examples/private/dengue.json +4640 -0
  20. package/examples/private/link_to_file.json +16662 -0
  21. package/examples/private/multi-dash-fix.json +16963 -0
  22. package/examples/private/versions.json +41612 -0
  23. package/examples/sankey.json +3 -3
  24. package/examples/test-api-filter-reset.json +4 -4
  25. package/examples/tp5-test.json +86 -4
  26. package/examples/us-map-filter-example.json +1074 -0
  27. package/package.json +9 -9
  28. package/src/CdcDashboard.tsx +6 -2
  29. package/src/CdcDashboardComponent.tsx +179 -88
  30. package/src/DashboardCopyPasteContext.test.tsx +33 -0
  31. package/src/DashboardCopyPasteContext.tsx +48 -0
  32. package/src/_stories/Dashboard.EditorRegression.stories.tsx +72 -0
  33. package/src/_stories/Dashboard.Regression.stories.tsx +196 -0
  34. package/src/_stories/Dashboard.Zoom.stories.tsx +88 -0
  35. package/src/_stories/Dashboard.smoke.stories.tsx +33 -0
  36. package/src/_stories/Dashboard.stories.tsx +337 -2
  37. package/src/_stories/FilteredTextMigrationComparison.stories.tsx +87 -0
  38. package/src/_stories/_mock/dashboard-data-driven-colors.json +171 -0
  39. package/src/_stories/_mock/tp5-test.json +86 -5
  40. package/src/components/Column.test.tsx +176 -0
  41. package/src/components/Column.tsx +214 -13
  42. package/src/components/DashboardConditionModal.test.tsx +420 -0
  43. package/src/components/DashboardConditionModal.tsx +367 -0
  44. package/src/components/DashboardConditionSummary.tsx +59 -0
  45. package/src/components/DashboardEditors.tsx +23 -0
  46. package/src/components/DashboardFilters/DashboardFilters.test.tsx +267 -0
  47. package/src/components/DashboardFilters/DashboardFilters.tsx +193 -172
  48. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.test.tsx +164 -0
  49. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +46 -6
  50. package/src/components/DashboardFilters/DashboardFiltersEditor/components/APIModal.tsx +5 -3
  51. package/src/components/DashboardFilters/DashboardFiltersEditor/components/DeleteFilterModal.tsx +59 -58
  52. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.test.tsx +304 -0
  53. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +43 -36
  54. package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +2 -2
  55. package/src/components/DashboardFilters/DashboardFiltersWrapper.test.tsx +142 -0
  56. package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +32 -27
  57. package/src/components/DashboardFilters/dashboardfilter.styles.css +42 -27
  58. package/src/components/DataDesignerModal.tsx +2 -1
  59. package/src/components/ExpandCollapseButtons.tsx +6 -4
  60. package/src/components/Grid.tsx +12 -7
  61. package/src/components/Header/Header.tsx +36 -17
  62. package/src/components/MultiConfigTabs/MultiConfigTabs.tsx +141 -140
  63. package/src/components/Row.test.tsx +228 -0
  64. package/src/components/Row.tsx +104 -28
  65. package/src/components/VisualizationRow.test.tsx +396 -0
  66. package/src/components/VisualizationRow.tsx +177 -51
  67. package/src/components/VisualizationsPanel/VisualizationsPanel.test.tsx +49 -0
  68. package/src/components/VisualizationsPanel/VisualizationsPanel.tsx +14 -13
  69. package/src/components/Widget/Widget.test.tsx +218 -0
  70. package/src/components/Widget/Widget.tsx +123 -20
  71. package/src/components/Widget/widget.styles.css +58 -14
  72. package/src/components/dashboard-condition-modal.css +76 -0
  73. package/src/components/dashboard-condition-summary.css +87 -0
  74. package/src/data/initial-state.js +1 -0
  75. package/src/helpers/addValuesToDashboardFilters.ts +3 -5
  76. package/src/helpers/addVisualization.ts +17 -4
  77. package/src/helpers/cloneDashboardWidget.ts +127 -0
  78. package/src/helpers/dashboardColumnWidgets.ts +99 -0
  79. package/src/helpers/dashboardConditionUi.ts +47 -0
  80. package/src/helpers/dashboardConditions.ts +200 -0
  81. package/src/helpers/dashboardFilterTargets.ts +156 -0
  82. package/src/helpers/filterData.ts +4 -9
  83. package/src/helpers/filterVisibility.ts +20 -0
  84. package/src/helpers/formatConfigBeforeSave.ts +2 -2
  85. package/src/helpers/getFilteredData.ts +18 -5
  86. package/src/helpers/getUpdateConfig.ts +43 -12
  87. package/src/helpers/getVizRowColumnLocator.ts +11 -1
  88. package/src/helpers/iconHash.tsx +9 -3
  89. package/src/helpers/mapDataToConfig.ts +31 -29
  90. package/src/helpers/reloadURLHelpers.ts +25 -5
  91. package/src/helpers/removeDashboardFilter.ts +33 -33
  92. package/src/helpers/tests/addVisualization.test.ts +53 -9
  93. package/src/helpers/tests/cloneDashboardWidget.test.ts +136 -0
  94. package/src/helpers/tests/dashboardColumnWidgets.test.ts +99 -0
  95. package/src/helpers/tests/dashboardConditionUi.test.ts +41 -0
  96. package/src/helpers/tests/dashboardConditions.test.ts +428 -0
  97. package/src/helpers/tests/formatConfigBeforeSave.test.ts +51 -0
  98. package/src/helpers/tests/getFilteredData.test.ts +265 -86
  99. package/src/helpers/tests/getUpdateConfig.test.ts +338 -0
  100. package/src/helpers/tests/reloadURLHelpers.test.ts +394 -238
  101. package/src/index.tsx +6 -3
  102. package/src/scss/grid.scss +281 -22
  103. package/src/scss/main.scss +215 -64
  104. package/src/store/dashboard.actions.ts +17 -4
  105. package/src/store/dashboard.reducer.test.ts +538 -0
  106. package/src/store/dashboard.reducer.ts +136 -22
  107. package/src/test/CdcDashboard.test.jsx +24 -0
  108. package/src/test/CdcDashboard.test.tsx +148 -0
  109. package/src/test/CdcDashboardComponent.test.tsx +935 -2
  110. package/src/types/ConfigRow.ts +15 -0
  111. package/src/types/DashboardFilters.ts +4 -0
  112. package/src/types/SharedFilter.ts +2 -0
  113. package/tests/fixtures/dashboard-config-with-metadata.json +1 -1
  114. package/dist/cdcdashboard-vr9HZwRt.es.js +0 -6
  115. package/examples/DEV-6574.json +0 -2224
  116. package/examples/api-dashboard-data.json +0 -272
  117. package/examples/api-dashboard-years.json +0 -11
  118. package/examples/api-geographies-data.json +0 -11
  119. package/examples/chart-data.json +0 -5409
  120. package/examples/custom/css/respiratory.css +0 -236
  121. package/examples/custom/js/respiratory.js +0 -242
  122. package/examples/default-data.json +0 -368
  123. package/examples/default-filter-control.json +0 -209
  124. package/examples/default-multi-dataset-shared-filter.json +0 -1729
  125. package/examples/default-multi-dataset.json +0 -506
  126. package/examples/ed-visits-county-file.json +0 -402
  127. package/examples/filters/Alabama.json +0 -72
  128. package/examples/filters/Alaska.json +0 -1737
  129. package/examples/filters/Arkansas.json +0 -4713
  130. package/examples/filters/California.json +0 -212
  131. package/examples/filters/Colorado.json +0 -1500
  132. package/examples/filters/Connecticut.json +0 -559
  133. package/examples/filters/Delaware.json +0 -63
  134. package/examples/filters/DistrictofColumbia.json +0 -63
  135. package/examples/filters/Florida.json +0 -4217
  136. package/examples/filters/States.json +0 -146
  137. package/examples/state-level.json +0 -90136
  138. package/examples/state-points.json +0 -10474
  139. package/examples/temp-example-data.json +0 -130
  140. package/examples/test-dashboard-simple.json +0 -503
  141. package/examples/test-example.json +0 -752
  142. package/examples/test-file.json +0 -147
  143. package/examples/test.json +0 -752
  144. package/examples/testing.json +0 -94456
  145. /package/examples/{data → __data__}/data-with-metadata.json +0 -0
  146. /package/examples/{legend-issue-data.json → __data__/legend-issue-data.json} +0 -0
  147. /package/examples/api-test/{categories.json → __data__/categories.json} +0 -0
  148. /package/examples/api-test/{chart-data.json → __data__/chart-data.json} +0 -0
  149. /package/examples/api-test/{topics.json → __data__/topics.json} +0 -0
  150. /package/examples/api-test/{years.json → __data__/years.json} +0 -0
  151. /package/src/_stories/{Dashboard.Pages.stories.tsx → Dashboard.Pages.smoke.stories.tsx} +0 -0
@@ -1,1500 +0,0 @@
1
- [
2
- {
3
- "county": "Adams",
4
- "ed_trends_covid": "No Change",
5
- "ed_trends_influenza": "No Change",
6
- "ed_trends_rsv": "Increasing",
7
- "geography": "Colorado",
8
- "hsa": "Denver (Denver), CO - Jefferson, CO",
9
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
10
- "percent_visits_combined": "1.67",
11
- "percent_visits_covid": "1.4",
12
- "percent_visits_influenza": "0.11",
13
- "percent_visits_rsv": "0.17",
14
- "week_end": "2022-10-01"
15
- },
16
- {
17
- "county": "Adams",
18
- "ed_trends_covid": "Increasing",
19
- "ed_trends_influenza": "Increasing",
20
- "ed_trends_rsv": "Increasing",
21
- "geography": "Colorado",
22
- "hsa": "Denver (Denver), CO - Jefferson, CO",
23
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
24
- "percent_visits_combined": "1.78",
25
- "percent_visits_covid": "1.43",
26
- "percent_visits_influenza": "0.12",
27
- "percent_visits_rsv": "0.23",
28
- "week_end": "2022-10-08"
29
- },
30
- {
31
- "county": "Adams",
32
- "ed_trends_covid": "Increasing",
33
- "ed_trends_influenza": "Increasing",
34
- "ed_trends_rsv": "Increasing",
35
- "geography": "Colorado",
36
- "hsa": "Denver (Denver), CO - Jefferson, CO",
37
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
38
- "percent_visits_combined": "1.97",
39
- "percent_visits_covid": "1.45",
40
- "percent_visits_influenza": "0.15",
41
- "percent_visits_rsv": "0.38",
42
- "week_end": "2022-10-15"
43
- },
44
- {
45
- "county": "Adams",
46
- "ed_trends_covid": "Increasing",
47
- "ed_trends_influenza": "Increasing",
48
- "ed_trends_rsv": "Increasing",
49
- "geography": "Colorado",
50
- "hsa": "Denver (Denver), CO - Jefferson, CO",
51
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
52
- "percent_visits_combined": "2.58",
53
- "percent_visits_covid": "1.77",
54
- "percent_visits_influenza": "0.19",
55
- "percent_visits_rsv": "0.65",
56
- "week_end": "2022-10-22"
57
- },
58
- {
59
- "county": "Adams",
60
- "ed_trends_covid": "Increasing",
61
- "ed_trends_influenza": "Increasing",
62
- "ed_trends_rsv": "Increasing",
63
- "geography": "Colorado",
64
- "hsa": "Denver (Denver), CO - Jefferson, CO",
65
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
66
- "percent_visits_combined": "3.47",
67
- "percent_visits_covid": "2.04",
68
- "percent_visits_influenza": "0.51",
69
- "percent_visits_rsv": "0.94",
70
- "week_end": "2022-10-29"
71
- },
72
- {
73
- "county": "Adams",
74
- "ed_trends_covid": "Increasing",
75
- "ed_trends_influenza": "Increasing",
76
- "ed_trends_rsv": "Increasing",
77
- "geography": "Colorado",
78
- "hsa": "Denver (Denver), CO - Jefferson, CO",
79
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
80
- "percent_visits_combined": "5.04",
81
- "percent_visits_covid": "2.65",
82
- "percent_visits_influenza": "1.02",
83
- "percent_visits_rsv": "1.42",
84
- "week_end": "2022-11-05"
85
- },
86
- {
87
- "county": "Adams",
88
- "ed_trends_covid": "Increasing",
89
- "ed_trends_influenza": "Increasing",
90
- "ed_trends_rsv": "Increasing",
91
- "geography": "Colorado",
92
- "hsa": "Denver (Denver), CO - Jefferson, CO",
93
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
94
- "percent_visits_combined": "7.16",
95
- "percent_visits_covid": "3.03",
96
- "percent_visits_influenza": "1.95",
97
- "percent_visits_rsv": "2.29",
98
- "week_end": "2022-11-12"
99
- },
100
- {
101
- "county": "Adams",
102
- "ed_trends_covid": "Increasing",
103
- "ed_trends_influenza": "Increasing",
104
- "ed_trends_rsv": "Increasing",
105
- "geography": "Colorado",
106
- "hsa": "Denver (Denver), CO - Jefferson, CO",
107
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
108
- "percent_visits_combined": "9.35",
109
- "percent_visits_covid": "3.35",
110
- "percent_visits_influenza": "3.54",
111
- "percent_visits_rsv": "2.63",
112
- "week_end": "2022-11-19"
113
- },
114
- {
115
- "county": "Adams",
116
- "ed_trends_covid": "Decreasing",
117
- "ed_trends_influenza": "Increasing",
118
- "ed_trends_rsv": "Decreasing",
119
- "geography": "Colorado",
120
- "hsa": "Denver (Denver), CO - Jefferson, CO",
121
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
122
- "percent_visits_combined": "11.13",
123
- "percent_visits_covid": "3.68",
124
- "percent_visits_influenza": "5.32",
125
- "percent_visits_rsv": "2.39",
126
- "week_end": "2022-11-26"
127
- },
128
- {
129
- "county": "Adams",
130
- "ed_trends_covid": "Decreasing",
131
- "ed_trends_influenza": "Increasing",
132
- "ed_trends_rsv": "Decreasing",
133
- "geography": "Colorado",
134
- "hsa": "Denver (Denver), CO - Jefferson, CO",
135
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
136
- "percent_visits_combined": "10.71",
137
- "percent_visits_covid": "3.44",
138
- "percent_visits_influenza": "5.7",
139
- "percent_visits_rsv": "1.86",
140
- "week_end": "2022-12-03"
141
- },
142
- {
143
- "county": "Adams",
144
- "ed_trends_covid": "Decreasing",
145
- "ed_trends_influenza": "Decreasing",
146
- "ed_trends_rsv": "Decreasing",
147
- "geography": "Colorado",
148
- "hsa": "Denver (Denver), CO - Jefferson, CO",
149
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
150
- "percent_visits_combined": "9.27",
151
- "percent_visits_covid": "2.79",
152
- "percent_visits_influenza": "5.4",
153
- "percent_visits_rsv": "1.26",
154
- "week_end": "2022-12-10"
155
- },
156
- {
157
- "county": "Adams",
158
- "ed_trends_covid": "Decreasing",
159
- "ed_trends_influenza": "Decreasing",
160
- "ed_trends_rsv": "Decreasing",
161
- "geography": "Colorado",
162
- "hsa": "Denver (Denver), CO - Jefferson, CO",
163
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
164
- "percent_visits_combined": "8.66",
165
- "percent_visits_covid": "2.43",
166
- "percent_visits_influenza": "5.43",
167
- "percent_visits_rsv": "0.99",
168
- "week_end": "2022-12-17"
169
- },
170
- {
171
- "county": "Adams",
172
- "ed_trends_covid": "Decreasing",
173
- "ed_trends_influenza": "Decreasing",
174
- "ed_trends_rsv": "Decreasing",
175
- "geography": "Colorado",
176
- "hsa": "Denver (Denver), CO - Jefferson, CO",
177
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
178
- "percent_visits_combined": "8.05",
179
- "percent_visits_covid": "2.11",
180
- "percent_visits_influenza": "5.43",
181
- "percent_visits_rsv": "0.64",
182
- "week_end": "2022-12-24"
183
- },
184
- {
185
- "county": "Adams",
186
- "ed_trends_covid": "Decreasing",
187
- "ed_trends_influenza": "Decreasing",
188
- "ed_trends_rsv": "Decreasing",
189
- "geography": "Colorado",
190
- "hsa": "Denver (Denver), CO - Jefferson, CO",
191
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
192
- "percent_visits_combined": "6.66",
193
- "percent_visits_covid": "2.06",
194
- "percent_visits_influenza": "4.01",
195
- "percent_visits_rsv": "0.71",
196
- "week_end": "2022-12-31"
197
- },
198
- {
199
- "county": "Adams",
200
- "ed_trends_covid": "Decreasing",
201
- "ed_trends_influenza": "Decreasing",
202
- "ed_trends_rsv": "Decreasing",
203
- "geography": "Colorado",
204
- "hsa": "Denver (Denver), CO - Jefferson, CO",
205
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
206
- "percent_visits_combined": "4.4",
207
- "percent_visits_covid": "1.69",
208
- "percent_visits_influenza": "2.29",
209
- "percent_visits_rsv": "0.5",
210
- "week_end": "2023-01-07"
211
- },
212
- {
213
- "county": "Adams",
214
- "ed_trends_covid": "Decreasing",
215
- "ed_trends_influenza": "Decreasing",
216
- "ed_trends_rsv": "Decreasing",
217
- "geography": "Colorado",
218
- "hsa": "Denver (Denver), CO - Jefferson, CO",
219
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
220
- "percent_visits_combined": "2.48",
221
- "percent_visits_covid": "1.22",
222
- "percent_visits_influenza": "1.03",
223
- "percent_visits_rsv": "0.25",
224
- "week_end": "2023-01-14"
225
- },
226
- {
227
- "county": "Adams",
228
- "ed_trends_covid": "Decreasing",
229
- "ed_trends_influenza": "Decreasing",
230
- "ed_trends_rsv": "Decreasing",
231
- "geography": "Colorado",
232
- "hsa": "Denver (Denver), CO - Jefferson, CO",
233
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
234
- "percent_visits_combined": "2.32",
235
- "percent_visits_covid": "1.41",
236
- "percent_visits_influenza": "0.68",
237
- "percent_visits_rsv": "0.25",
238
- "week_end": "2023-01-21"
239
- },
240
- {
241
- "county": "Adams",
242
- "ed_trends_covid": "Increasing",
243
- "ed_trends_influenza": "Decreasing",
244
- "ed_trends_rsv": "Decreasing",
245
- "geography": "Colorado",
246
- "hsa": "Denver (Denver), CO - Jefferson, CO",
247
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
248
- "percent_visits_combined": "2.01",
249
- "percent_visits_covid": "1.27",
250
- "percent_visits_influenza": "0.49",
251
- "percent_visits_rsv": "0.26",
252
- "week_end": "2023-01-28"
253
- },
254
- {
255
- "county": "Adams",
256
- "ed_trends_covid": "Increasing",
257
- "ed_trends_influenza": "Decreasing",
258
- "ed_trends_rsv": "Decreasing",
259
- "geography": "Colorado",
260
- "hsa": "Denver (Denver), CO - Jefferson, CO",
261
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
262
- "percent_visits_combined": "2.21",
263
- "percent_visits_covid": "1.57",
264
- "percent_visits_influenza": "0.47",
265
- "percent_visits_rsv": "0.19",
266
- "week_end": "2023-02-04"
267
- },
268
- {
269
- "county": "Adams",
270
- "ed_trends_covid": "Increasing",
271
- "ed_trends_influenza": "No Change",
272
- "ed_trends_rsv": "Decreasing",
273
- "geography": "Colorado",
274
- "hsa": "Denver (Denver), CO - Jefferson, CO",
275
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
276
- "percent_visits_combined": "2.29",
277
- "percent_visits_covid": "1.84",
278
- "percent_visits_influenza": "0.29",
279
- "percent_visits_rsv": "0.18",
280
- "week_end": "2023-02-11"
281
- },
282
- {
283
- "county": "Adams",
284
- "ed_trends_covid": "Increasing",
285
- "ed_trends_influenza": "No Change",
286
- "ed_trends_rsv": "Decreasing",
287
- "geography": "Colorado",
288
- "hsa": "Denver (Denver), CO - Jefferson, CO",
289
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
290
- "percent_visits_combined": "2.31",
291
- "percent_visits_covid": "1.94",
292
- "percent_visits_influenza": "0.25",
293
- "percent_visits_rsv": "0.13",
294
- "week_end": "2023-02-18"
295
- },
296
- {
297
- "county": "Adams",
298
- "ed_trends_covid": "Decreasing",
299
- "ed_trends_influenza": "Decreasing",
300
- "ed_trends_rsv": "Decreasing",
301
- "geography": "Colorado",
302
- "hsa": "Denver (Denver), CO - Jefferson, CO",
303
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
304
- "percent_visits_combined": "2.39",
305
- "percent_visits_covid": "2.05",
306
- "percent_visits_influenza": "0.28",
307
- "percent_visits_rsv": "0.08",
308
- "week_end": "2023-02-25"
309
- },
310
- {
311
- "county": "Adams",
312
- "ed_trends_covid": "Decreasing",
313
- "ed_trends_influenza": "Decreasing",
314
- "ed_trends_rsv": "Decreasing",
315
- "geography": "Colorado",
316
- "hsa": "Denver (Denver), CO - Jefferson, CO",
317
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
318
- "percent_visits_combined": "2.09",
319
- "percent_visits_covid": "1.77",
320
- "percent_visits_influenza": "0.26",
321
- "percent_visits_rsv": "0.07",
322
- "week_end": "2023-03-04"
323
- },
324
- {
325
- "county": "Adams",
326
- "ed_trends_covid": "Decreasing",
327
- "ed_trends_influenza": "Decreasing",
328
- "ed_trends_rsv": "Decreasing",
329
- "geography": "Colorado",
330
- "hsa": "Denver (Denver), CO - Jefferson, CO",
331
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
332
- "percent_visits_combined": "1.81",
333
- "percent_visits_covid": "1.54",
334
- "percent_visits_influenza": "0.2",
335
- "percent_visits_rsv": "0.07",
336
- "week_end": "2023-03-11"
337
- },
338
- {
339
- "county": "Adams",
340
- "ed_trends_covid": "Decreasing",
341
- "ed_trends_influenza": "No Change",
342
- "ed_trends_rsv": "Decreasing",
343
- "geography": "Colorado",
344
- "hsa": "Denver (Denver), CO - Jefferson, CO",
345
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
346
- "percent_visits_combined": "1.53",
347
- "percent_visits_covid": "1.28",
348
- "percent_visits_influenza": "0.22",
349
- "percent_visits_rsv": "0.04",
350
- "week_end": "2023-03-18"
351
- },
352
- {
353
- "county": "Adams",
354
- "ed_trends_covid": "Decreasing",
355
- "ed_trends_influenza": "No Change",
356
- "ed_trends_rsv": "No Change",
357
- "geography": "Colorado",
358
- "hsa": "Denver (Denver), CO - Jefferson, CO",
359
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
360
- "percent_visits_combined": "1.55",
361
- "percent_visits_covid": "1.33",
362
- "percent_visits_influenza": "0.16",
363
- "percent_visits_rsv": "0.06",
364
- "week_end": "2023-03-25"
365
- },
366
- {
367
- "county": "Adams",
368
- "ed_trends_covid": "Decreasing",
369
- "ed_trends_influenza": "No Change",
370
- "ed_trends_rsv": "Decreasing",
371
- "geography": "Colorado",
372
- "hsa": "Denver (Denver), CO - Jefferson, CO",
373
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
374
- "percent_visits_combined": "1.5",
375
- "percent_visits_covid": "1.29",
376
- "percent_visits_influenza": "0.18",
377
- "percent_visits_rsv": "0.04",
378
- "week_end": "2023-04-01"
379
- },
380
- {
381
- "county": "Adams",
382
- "ed_trends_covid": "Decreasing",
383
- "ed_trends_influenza": "No Change",
384
- "ed_trends_rsv": "Decreasing",
385
- "geography": "Colorado",
386
- "hsa": "Denver (Denver), CO - Jefferson, CO",
387
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
388
- "percent_visits_combined": "1.31",
389
- "percent_visits_covid": "1.12",
390
- "percent_visits_influenza": "0.15",
391
- "percent_visits_rsv": "0.04",
392
- "week_end": "2023-04-08"
393
- },
394
- {
395
- "county": "Adams",
396
- "ed_trends_covid": "Decreasing",
397
- "ed_trends_influenza": "No Change",
398
- "ed_trends_rsv": "Decreasing",
399
- "geography": "Colorado",
400
- "hsa": "Denver (Denver), CO - Jefferson, CO",
401
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
402
- "percent_visits_combined": "1.21",
403
- "percent_visits_covid": "0.95",
404
- "percent_visits_influenza": "0.23",
405
- "percent_visits_rsv": "0.03",
406
- "week_end": "2023-04-15"
407
- },
408
- {
409
- "county": "Adams",
410
- "ed_trends_covid": "Decreasing",
411
- "ed_trends_influenza": "No Change",
412
- "ed_trends_rsv": "Decreasing",
413
- "geography": "Colorado",
414
- "hsa": "Denver (Denver), CO - Jefferson, CO",
415
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
416
- "percent_visits_combined": "0.97",
417
- "percent_visits_covid": "0.77",
418
- "percent_visits_influenza": "0.19",
419
- "percent_visits_rsv": "0.02",
420
- "week_end": "2023-04-22"
421
- },
422
- {
423
- "county": "Adams",
424
- "ed_trends_covid": "Decreasing",
425
- "ed_trends_influenza": "No Change",
426
- "ed_trends_rsv": "No Change",
427
- "geography": "Colorado",
428
- "hsa": "Denver (Denver), CO - Jefferson, CO",
429
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
430
- "percent_visits_combined": "0.83",
431
- "percent_visits_covid": "0.67",
432
- "percent_visits_influenza": "0.15",
433
- "percent_visits_rsv": "0.02",
434
- "week_end": "2023-04-29"
435
- },
436
- {
437
- "county": "Adams",
438
- "ed_trends_covid": "Decreasing",
439
- "ed_trends_influenza": "No Change",
440
- "ed_trends_rsv": "No Change",
441
- "geography": "Colorado",
442
- "hsa": "Denver (Denver), CO - Jefferson, CO",
443
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
444
- "percent_visits_combined": "0.84",
445
- "percent_visits_covid": "0.68",
446
- "percent_visits_influenza": "0.15",
447
- "percent_visits_rsv": "0.02",
448
- "week_end": "2023-05-06"
449
- },
450
- {
451
- "county": "Adams",
452
- "ed_trends_covid": "Decreasing",
453
- "ed_trends_influenza": "No Change",
454
- "ed_trends_rsv": "No Change",
455
- "geography": "Colorado",
456
- "hsa": "Denver (Denver), CO - Jefferson, CO",
457
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
458
- "percent_visits_combined": "0.84",
459
- "percent_visits_covid": "0.59",
460
- "percent_visits_influenza": "0.23",
461
- "percent_visits_rsv": "0.03",
462
- "week_end": "2023-05-13"
463
- },
464
- {
465
- "county": "Adams",
466
- "ed_trends_covid": "Decreasing",
467
- "ed_trends_influenza": "Decreasing",
468
- "ed_trends_rsv": "Decreasing",
469
- "geography": "Colorado",
470
- "hsa": "Denver (Denver), CO - Jefferson, CO",
471
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
472
- "percent_visits_combined": "0.79",
473
- "percent_visits_covid": "0.58",
474
- "percent_visits_influenza": "0.2",
475
- "percent_visits_rsv": "0.01",
476
- "week_end": "2023-05-20"
477
- },
478
- {
479
- "county": "Adams",
480
- "ed_trends_covid": "Decreasing",
481
- "ed_trends_influenza": "Decreasing",
482
- "ed_trends_rsv": "Decreasing",
483
- "geography": "Colorado",
484
- "hsa": "Denver (Denver), CO - Jefferson, CO",
485
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
486
- "percent_visits_combined": "0.73",
487
- "percent_visits_covid": "0.63",
488
- "percent_visits_influenza": "0.09",
489
- "percent_visits_rsv": "0.02",
490
- "week_end": "2023-05-27"
491
- },
492
- {
493
- "county": "Adams",
494
- "ed_trends_covid": "Decreasing",
495
- "ed_trends_influenza": "Decreasing",
496
- "ed_trends_rsv": "Decreasing",
497
- "geography": "Colorado",
498
- "hsa": "Denver (Denver), CO - Jefferson, CO",
499
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
500
- "percent_visits_combined": "0.47",
501
- "percent_visits_covid": "0.35",
502
- "percent_visits_influenza": "0.12",
503
- "percent_visits_rsv": "0.0",
504
- "week_end": "2023-06-03"
505
- },
506
- {
507
- "county": "Adams",
508
- "ed_trends_covid": "Decreasing",
509
- "ed_trends_influenza": "Decreasing",
510
- "ed_trends_rsv": "Decreasing",
511
- "geography": "Colorado",
512
- "hsa": "Denver (Denver), CO - Jefferson, CO",
513
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
514
- "percent_visits_combined": "0.5",
515
- "percent_visits_covid": "0.37",
516
- "percent_visits_influenza": "0.12",
517
- "percent_visits_rsv": "0.0",
518
- "week_end": "2023-06-10"
519
- },
520
- {
521
- "county": "Adams",
522
- "ed_trends_covid": "No Change",
523
- "ed_trends_influenza": "No Change",
524
- "ed_trends_rsv": "No Change",
525
- "geography": "Colorado",
526
- "hsa": "Denver (Denver), CO - Jefferson, CO",
527
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
528
- "percent_visits_combined": "0.5",
529
- "percent_visits_covid": "0.42",
530
- "percent_visits_influenza": "0.07",
531
- "percent_visits_rsv": "0.0",
532
- "week_end": "2023-06-17"
533
- },
534
- {
535
- "county": "Adams",
536
- "ed_trends_covid": "No Change",
537
- "ed_trends_influenza": "No Change",
538
- "ed_trends_rsv": "No Change",
539
- "geography": "Colorado",
540
- "hsa": "Denver (Denver), CO - Jefferson, CO",
541
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
542
- "percent_visits_combined": "0.48",
543
- "percent_visits_covid": "0.4",
544
- "percent_visits_influenza": "0.08",
545
- "percent_visits_rsv": "0.0",
546
- "week_end": "2023-06-24"
547
- },
548
- {
549
- "county": "Adams",
550
- "ed_trends_covid": "No Change",
551
- "ed_trends_influenza": "No Change",
552
- "ed_trends_rsv": "No Change",
553
- "geography": "Colorado",
554
- "hsa": "Denver (Denver), CO - Jefferson, CO",
555
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
556
- "percent_visits_combined": "0.49",
557
- "percent_visits_covid": "0.45",
558
- "percent_visits_influenza": "0.05",
559
- "percent_visits_rsv": "0.0",
560
- "week_end": "2023-07-01"
561
- },
562
- {
563
- "county": "Adams",
564
- "ed_trends_covid": "No Change",
565
- "ed_trends_influenza": "No Change",
566
- "ed_trends_rsv": "No Change",
567
- "geography": "Colorado",
568
- "hsa": "Denver (Denver), CO - Jefferson, CO",
569
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
570
- "percent_visits_combined": "0.53",
571
- "percent_visits_covid": "0.43",
572
- "percent_visits_influenza": "0.09",
573
- "percent_visits_rsv": "0.01",
574
- "week_end": "2023-07-08"
575
- },
576
- {
577
- "county": "Adams",
578
- "ed_trends_covid": "Increasing",
579
- "ed_trends_influenza": "No Change",
580
- "ed_trends_rsv": "No Change",
581
- "geography": "Colorado",
582
- "hsa": "Denver (Denver), CO - Jefferson, CO",
583
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
584
- "percent_visits_combined": "0.54",
585
- "percent_visits_covid": "0.47",
586
- "percent_visits_influenza": "0.07",
587
- "percent_visits_rsv": "0.0",
588
- "week_end": "2023-07-15"
589
- },
590
- {
591
- "county": "Adams",
592
- "ed_trends_covid": "Increasing",
593
- "ed_trends_influenza": "No Change",
594
- "ed_trends_rsv": "No Change",
595
- "geography": "Colorado",
596
- "hsa": "Denver (Denver), CO - Jefferson, CO",
597
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
598
- "percent_visits_combined": "0.53",
599
- "percent_visits_covid": "0.46",
600
- "percent_visits_influenza": "0.07",
601
- "percent_visits_rsv": "0.0",
602
- "week_end": "2023-07-22"
603
- },
604
- {
605
- "county": "Adams",
606
- "ed_trends_covid": "Increasing",
607
- "ed_trends_influenza": "No Change",
608
- "ed_trends_rsv": "No Change",
609
- "geography": "Colorado",
610
- "hsa": "Denver (Denver), CO - Jefferson, CO",
611
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
612
- "percent_visits_combined": "0.66",
613
- "percent_visits_covid": "0.59",
614
- "percent_visits_influenza": "0.04",
615
- "percent_visits_rsv": "0.03",
616
- "week_end": "2023-07-29"
617
- },
618
- {
619
- "county": "Adams",
620
- "ed_trends_covid": "Increasing",
621
- "ed_trends_influenza": "No Change",
622
- "ed_trends_rsv": "No Change",
623
- "geography": "Colorado",
624
- "hsa": "Denver (Denver), CO - Jefferson, CO",
625
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
626
- "percent_visits_combined": "0.82",
627
- "percent_visits_covid": "0.74",
628
- "percent_visits_influenza": "0.09",
629
- "percent_visits_rsv": "0.01",
630
- "week_end": "2023-08-05"
631
- },
632
- {
633
- "county": "Adams",
634
- "ed_trends_covid": "Increasing",
635
- "ed_trends_influenza": "Increasing",
636
- "ed_trends_rsv": "No Change",
637
- "geography": "Colorado",
638
- "hsa": "Denver (Denver), CO - Jefferson, CO",
639
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
640
- "percent_visits_combined": "1.03",
641
- "percent_visits_covid": "0.96",
642
- "percent_visits_influenza": "0.06",
643
- "percent_visits_rsv": "0.02",
644
- "week_end": "2023-08-12"
645
- },
646
- {
647
- "county": "Adams",
648
- "ed_trends_covid": "Increasing",
649
- "ed_trends_influenza": "No Change",
650
- "ed_trends_rsv": "No Change",
651
- "geography": "Colorado",
652
- "hsa": "Denver (Denver), CO - Jefferson, CO",
653
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
654
- "percent_visits_combined": "1.2",
655
- "percent_visits_covid": "1.1",
656
- "percent_visits_influenza": "0.1",
657
- "percent_visits_rsv": "0.01",
658
- "week_end": "2023-08-19"
659
- },
660
- {
661
- "county": "Adams",
662
- "ed_trends_covid": "Increasing",
663
- "ed_trends_influenza": "No Change",
664
- "ed_trends_rsv": "No Change",
665
- "geography": "Colorado",
666
- "hsa": "Denver (Denver), CO - Jefferson, CO",
667
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
668
- "percent_visits_combined": "1.55",
669
- "percent_visits_covid": "1.43",
670
- "percent_visits_influenza": "0.12",
671
- "percent_visits_rsv": "0.0",
672
- "week_end": "2023-08-26"
673
- },
674
- {
675
- "county": "Adams",
676
- "ed_trends_covid": "Increasing",
677
- "ed_trends_influenza": "No Change",
678
- "ed_trends_rsv": "No Change",
679
- "geography": "Colorado",
680
- "hsa": "Denver (Denver), CO - Jefferson, CO",
681
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
682
- "percent_visits_combined": "1.74",
683
- "percent_visits_covid": "1.65",
684
- "percent_visits_influenza": "0.1",
685
- "percent_visits_rsv": "0.01",
686
- "week_end": "2023-09-02"
687
- },
688
- {
689
- "county": "Adams",
690
- "ed_trends_covid": "Increasing",
691
- "ed_trends_influenza": "No Change",
692
- "ed_trends_rsv": "Increasing",
693
- "geography": "Colorado",
694
- "hsa": "Denver (Denver), CO - Jefferson, CO",
695
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
696
- "percent_visits_combined": "1.88",
697
- "percent_visits_covid": "1.75",
698
- "percent_visits_influenza": "0.13",
699
- "percent_visits_rsv": "0.01",
700
- "week_end": "2023-09-09"
701
- },
702
- {
703
- "county": "Adams",
704
- "ed_trends_covid": "No Change",
705
- "ed_trends_influenza": "No Change",
706
- "ed_trends_rsv": "Increasing",
707
- "geography": "Colorado",
708
- "hsa": "Denver (Denver), CO - Jefferson, CO",
709
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
710
- "percent_visits_combined": "1.75",
711
- "percent_visits_covid": "1.62",
712
- "percent_visits_influenza": "0.09",
713
- "percent_visits_rsv": "0.03",
714
- "week_end": "2023-09-16"
715
- },
716
- {
717
- "county": "Adams",
718
- "ed_trends_covid": "Increasing",
719
- "ed_trends_influenza": "Increasing",
720
- "ed_trends_rsv": "Increasing",
721
- "geography": "Colorado",
722
- "hsa": "Denver (Denver), CO - Jefferson, CO",
723
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
724
- "percent_visits_combined": "1.96",
725
- "percent_visits_covid": "1.83",
726
- "percent_visits_influenza": "0.11",
727
- "percent_visits_rsv": "0.02",
728
- "week_end": "2023-09-23"
729
- },
730
- {
731
- "county": "Adams",
732
- "ed_trends_covid": "Increasing",
733
- "ed_trends_influenza": "Increasing",
734
- "ed_trends_rsv": "Increasing",
735
- "geography": "Colorado",
736
- "hsa": "Denver (Denver), CO - Jefferson, CO",
737
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
738
- "percent_visits_combined": "2.09",
739
- "percent_visits_covid": "1.91",
740
- "percent_visits_influenza": "0.16",
741
- "percent_visits_rsv": "0.03",
742
- "week_end": "2023-09-30"
743
- },
744
- {
745
- "county": "Adams",
746
- "ed_trends_covid": "Increasing",
747
- "ed_trends_influenza": "Increasing",
748
- "ed_trends_rsv": "Increasing",
749
- "geography": "Colorado",
750
- "hsa": "Denver (Denver), CO - Jefferson, CO",
751
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
752
- "percent_visits_combined": "2.26",
753
- "percent_visits_covid": "1.98",
754
- "percent_visits_influenza": "0.23",
755
- "percent_visits_rsv": "0.06",
756
- "week_end": "2023-10-07"
757
- },
758
- {
759
- "county": "Adams",
760
- "ed_trends_covid": "Increasing",
761
- "ed_trends_influenza": "Increasing",
762
- "ed_trends_rsv": "Increasing",
763
- "geography": "Colorado",
764
- "hsa": "Denver (Denver), CO - Jefferson, CO",
765
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
766
- "percent_visits_combined": "2.65",
767
- "percent_visits_covid": "2.27",
768
- "percent_visits_influenza": "0.33",
769
- "percent_visits_rsv": "0.06",
770
- "week_end": "2023-10-14"
771
- },
772
- {
773
- "county": "Adams",
774
- "ed_trends_covid": "Increasing",
775
- "ed_trends_influenza": "Increasing",
776
- "ed_trends_rsv": "Increasing",
777
- "geography": "Colorado",
778
- "hsa": "Denver (Denver), CO - Jefferson, CO",
779
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
780
- "percent_visits_combined": "3.02",
781
- "percent_visits_covid": "2.44",
782
- "percent_visits_influenza": "0.5",
783
- "percent_visits_rsv": "0.09",
784
- "week_end": "2023-10-21"
785
- },
786
- {
787
- "county": "Adams",
788
- "ed_trends_covid": "No Change",
789
- "ed_trends_influenza": "Increasing",
790
- "ed_trends_rsv": "Increasing",
791
- "geography": "Colorado",
792
- "hsa": "Denver (Denver), CO - Jefferson, CO",
793
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
794
- "percent_visits_combined": "2.95",
795
- "percent_visits_covid": "2.3",
796
- "percent_visits_influenza": "0.58",
797
- "percent_visits_rsv": "0.09",
798
- "week_end": "2023-10-28"
799
- },
800
- {
801
- "county": "Adams",
802
- "ed_trends_covid": "No Change",
803
- "ed_trends_influenza": "Increasing",
804
- "ed_trends_rsv": "Increasing",
805
- "geography": "Colorado",
806
- "hsa": "Denver (Denver), CO - Jefferson, CO",
807
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
808
- "percent_visits_combined": "3.33",
809
- "percent_visits_covid": "2.38",
810
- "percent_visits_influenza": "0.9",
811
- "percent_visits_rsv": "0.07",
812
- "week_end": "2023-11-04"
813
- },
814
- {
815
- "county": "Adams",
816
- "ed_trends_covid": "No Change",
817
- "ed_trends_influenza": "Increasing",
818
- "ed_trends_rsv": "Increasing",
819
- "geography": "Colorado",
820
- "hsa": "Denver (Denver), CO - Jefferson, CO",
821
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
822
- "percent_visits_combined": "3.88",
823
- "percent_visits_covid": "2.25",
824
- "percent_visits_influenza": "1.41",
825
- "percent_visits_rsv": "0.26",
826
- "week_end": "2023-11-11"
827
- },
828
- {
829
- "county": "Adams",
830
- "ed_trends_covid": "No Change",
831
- "ed_trends_influenza": "Increasing",
832
- "ed_trends_rsv": "Increasing",
833
- "geography": "Colorado",
834
- "hsa": "Denver (Denver), CO - Jefferson, CO",
835
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
836
- "percent_visits_combined": "4.52",
837
- "percent_visits_covid": "2.35",
838
- "percent_visits_influenza": "1.92",
839
- "percent_visits_rsv": "0.29",
840
- "week_end": "2023-11-18"
841
- },
842
- {
843
- "county": "Adams",
844
- "ed_trends_covid": "No Change",
845
- "ed_trends_influenza": "Increasing",
846
- "ed_trends_rsv": "Increasing",
847
- "geography": "Colorado",
848
- "hsa": "Denver (Denver), CO - Jefferson, CO",
849
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
850
- "percent_visits_combined": "5.36",
851
- "percent_visits_covid": "2.36",
852
- "percent_visits_influenza": "2.53",
853
- "percent_visits_rsv": "0.56",
854
- "week_end": "2023-11-25"
855
- },
856
- {
857
- "county": "Adams",
858
- "ed_trends_covid": "No Change",
859
- "ed_trends_influenza": "Increasing",
860
- "ed_trends_rsv": "Increasing",
861
- "geography": "Colorado",
862
- "hsa": "Denver (Denver), CO - Jefferson, CO",
863
- "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit",
864
- "percent_visits_combined": "5.59",
865
- "percent_visits_covid": "2.46",
866
- "percent_visits_influenza": "2.69",
867
- "percent_visits_rsv": "0.51",
868
- "week_end": "2023-12-02"
869
- },
870
- {
871
- "county": "Alamosa",
872
- "ed_trends_covid": "No Data",
873
- "ed_trends_influenza": "No Data",
874
- "ed_trends_rsv": "No Data",
875
- "geography": "Colorado",
876
- "hsa": "Alamosa, CO - Rio Grande, CO",
877
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
878
- "percent_visits_combined": "0.0",
879
- "percent_visits_covid": "0.0",
880
- "percent_visits_influenza": "0.0",
881
- "percent_visits_rsv": "0.0",
882
- "week_end": "2022-10-01"
883
- },
884
- {
885
- "county": "Alamosa",
886
- "ed_trends_covid": "No Data",
887
- "ed_trends_influenza": "No Data",
888
- "ed_trends_rsv": "No Data",
889
- "geography": "Colorado",
890
- "hsa": "Alamosa, CO - Rio Grande, CO",
891
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
892
- "percent_visits_combined": "0.0",
893
- "percent_visits_covid": "0.0",
894
- "percent_visits_influenza": "0.0",
895
- "percent_visits_rsv": "0.0",
896
- "week_end": "2022-10-08"
897
- },
898
- {
899
- "county": "Alamosa",
900
- "ed_trends_covid": "No Data",
901
- "ed_trends_influenza": "No Data",
902
- "ed_trends_rsv": "No Data",
903
- "geography": "Colorado",
904
- "hsa": "Alamosa, CO - Rio Grande, CO",
905
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
906
- "percent_visits_combined": "0.0",
907
- "percent_visits_covid": "0.0",
908
- "percent_visits_influenza": "0.0",
909
- "percent_visits_rsv": "0.0",
910
- "week_end": "2022-10-15"
911
- },
912
- {
913
- "county": "Alamosa",
914
- "ed_trends_covid": "No Data",
915
- "ed_trends_influenza": "No Data",
916
- "ed_trends_rsv": "No Data",
917
- "geography": "Colorado",
918
- "hsa": "Alamosa, CO - Rio Grande, CO",
919
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
920
- "percent_visits_combined": "0.0",
921
- "percent_visits_covid": "0.0",
922
- "percent_visits_influenza": "0.0",
923
- "percent_visits_rsv": "0.0",
924
- "week_end": "2022-10-22"
925
- },
926
- {
927
- "county": "Alamosa",
928
- "ed_trends_covid": "No Data",
929
- "ed_trends_influenza": "No Data",
930
- "ed_trends_rsv": "No Data",
931
- "geography": "Colorado",
932
- "hsa": "Alamosa, CO - Rio Grande, CO",
933
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
934
- "percent_visits_combined": "0.0",
935
- "percent_visits_covid": "0.0",
936
- "percent_visits_influenza": "0.0",
937
- "percent_visits_rsv": "0.0",
938
- "week_end": "2022-10-29"
939
- },
940
- {
941
- "county": "Alamosa",
942
- "ed_trends_covid": "No Data",
943
- "ed_trends_influenza": "No Data",
944
- "ed_trends_rsv": "No Data",
945
- "geography": "Colorado",
946
- "hsa": "Alamosa, CO - Rio Grande, CO",
947
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
948
- "percent_visits_combined": "0.0",
949
- "percent_visits_covid": "0.0",
950
- "percent_visits_influenza": "0.0",
951
- "percent_visits_rsv": "0.0",
952
- "week_end": "2022-11-05"
953
- },
954
- {
955
- "county": "Alamosa",
956
- "ed_trends_covid": "No Data",
957
- "ed_trends_influenza": "No Data",
958
- "ed_trends_rsv": "No Data",
959
- "geography": "Colorado",
960
- "hsa": "Alamosa, CO - Rio Grande, CO",
961
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
962
- "percent_visits_combined": "0.0",
963
- "percent_visits_covid": "0.0",
964
- "percent_visits_influenza": "0.0",
965
- "percent_visits_rsv": "0.0",
966
- "week_end": "2022-11-12"
967
- },
968
- {
969
- "county": "Alamosa",
970
- "ed_trends_covid": "No Data",
971
- "ed_trends_influenza": "No Data",
972
- "ed_trends_rsv": "No Data",
973
- "geography": "Colorado",
974
- "hsa": "Alamosa, CO - Rio Grande, CO",
975
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
976
- "percent_visits_combined": "0.0",
977
- "percent_visits_covid": "0.0",
978
- "percent_visits_influenza": "0.0",
979
- "percent_visits_rsv": "0.0",
980
- "week_end": "2022-11-19"
981
- },
982
- {
983
- "county": "Alamosa",
984
- "ed_trends_covid": "No Data",
985
- "ed_trends_influenza": "No Data",
986
- "ed_trends_rsv": "No Data",
987
- "geography": "Colorado",
988
- "hsa": "Alamosa, CO - Rio Grande, CO",
989
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
990
- "percent_visits_combined": "0.0",
991
- "percent_visits_covid": "0.0",
992
- "percent_visits_influenza": "0.0",
993
- "percent_visits_rsv": "0.0",
994
- "week_end": "2022-11-26"
995
- },
996
- {
997
- "county": "Alamosa",
998
- "ed_trends_covid": "No Data",
999
- "ed_trends_influenza": "No Data",
1000
- "ed_trends_rsv": "No Data",
1001
- "geography": "Colorado",
1002
- "hsa": "Alamosa, CO - Rio Grande, CO",
1003
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1004
- "percent_visits_combined": "0.0",
1005
- "percent_visits_covid": "0.0",
1006
- "percent_visits_influenza": "0.0",
1007
- "percent_visits_rsv": "0.0",
1008
- "week_end": "2022-12-03"
1009
- },
1010
- {
1011
- "county": "Alamosa",
1012
- "ed_trends_covid": "No Data",
1013
- "ed_trends_influenza": "No Data",
1014
- "ed_trends_rsv": "No Data",
1015
- "geography": "Colorado",
1016
- "hsa": "Alamosa, CO - Rio Grande, CO",
1017
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1018
- "percent_visits_combined": "0.0",
1019
- "percent_visits_covid": "0.0",
1020
- "percent_visits_influenza": "0.0",
1021
- "percent_visits_rsv": "0.0",
1022
- "week_end": "2022-12-10"
1023
- },
1024
- {
1025
- "county": "Alamosa",
1026
- "ed_trends_covid": "No Data",
1027
- "ed_trends_influenza": "No Data",
1028
- "ed_trends_rsv": "No Data",
1029
- "geography": "Colorado",
1030
- "hsa": "Alamosa, CO - Rio Grande, CO",
1031
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1032
- "percent_visits_combined": "0.0",
1033
- "percent_visits_covid": "0.0",
1034
- "percent_visits_influenza": "0.0",
1035
- "percent_visits_rsv": "0.0",
1036
- "week_end": "2022-12-17"
1037
- },
1038
- {
1039
- "county": "Alamosa",
1040
- "ed_trends_covid": "No Data",
1041
- "ed_trends_influenza": "No Data",
1042
- "ed_trends_rsv": "No Data",
1043
- "geography": "Colorado",
1044
- "hsa": "Alamosa, CO - Rio Grande, CO",
1045
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1046
- "percent_visits_combined": "0.0",
1047
- "percent_visits_covid": "0.0",
1048
- "percent_visits_influenza": "0.0",
1049
- "percent_visits_rsv": "0.0",
1050
- "week_end": "2022-12-24"
1051
- },
1052
- {
1053
- "county": "Alamosa",
1054
- "ed_trends_covid": "No Data",
1055
- "ed_trends_influenza": "No Data",
1056
- "ed_trends_rsv": "No Data",
1057
- "geography": "Colorado",
1058
- "hsa": "Alamosa, CO - Rio Grande, CO",
1059
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1060
- "percent_visits_combined": "0.0",
1061
- "percent_visits_covid": "0.0",
1062
- "percent_visits_influenza": "0.0",
1063
- "percent_visits_rsv": "0.0",
1064
- "week_end": "2022-12-31"
1065
- },
1066
- {
1067
- "county": "Alamosa",
1068
- "ed_trends_covid": "No Data",
1069
- "ed_trends_influenza": "No Data",
1070
- "ed_trends_rsv": "No Data",
1071
- "geography": "Colorado",
1072
- "hsa": "Alamosa, CO - Rio Grande, CO",
1073
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1074
- "percent_visits_combined": "0.0",
1075
- "percent_visits_covid": "0.0",
1076
- "percent_visits_influenza": "0.0",
1077
- "percent_visits_rsv": "0.0",
1078
- "week_end": "2023-01-07"
1079
- },
1080
- {
1081
- "county": "Alamosa",
1082
- "ed_trends_covid": "No Data",
1083
- "ed_trends_influenza": "No Data",
1084
- "ed_trends_rsv": "No Data",
1085
- "geography": "Colorado",
1086
- "hsa": "Alamosa, CO - Rio Grande, CO",
1087
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1088
- "percent_visits_combined": "0.0",
1089
- "percent_visits_covid": "0.0",
1090
- "percent_visits_influenza": "0.0",
1091
- "percent_visits_rsv": "0.0",
1092
- "week_end": "2023-01-14"
1093
- },
1094
- {
1095
- "county": "Alamosa",
1096
- "ed_trends_covid": "No Data",
1097
- "ed_trends_influenza": "No Data",
1098
- "ed_trends_rsv": "No Data",
1099
- "geography": "Colorado",
1100
- "hsa": "Alamosa, CO - Rio Grande, CO",
1101
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1102
- "percent_visits_combined": "0.0",
1103
- "percent_visits_covid": "0.0",
1104
- "percent_visits_influenza": "0.0",
1105
- "percent_visits_rsv": "0.0",
1106
- "week_end": "2023-01-21"
1107
- },
1108
- {
1109
- "county": "Alamosa",
1110
- "ed_trends_covid": "No Data",
1111
- "ed_trends_influenza": "No Data",
1112
- "ed_trends_rsv": "No Data",
1113
- "geography": "Colorado",
1114
- "hsa": "Alamosa, CO - Rio Grande, CO",
1115
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1116
- "percent_visits_combined": "0.0",
1117
- "percent_visits_covid": "0.0",
1118
- "percent_visits_influenza": "0.0",
1119
- "percent_visits_rsv": "0.0",
1120
- "week_end": "2023-01-28"
1121
- },
1122
- {
1123
- "county": "Alamosa",
1124
- "ed_trends_covid": "No Data",
1125
- "ed_trends_influenza": "No Data",
1126
- "ed_trends_rsv": "No Data",
1127
- "geography": "Colorado",
1128
- "hsa": "Alamosa, CO - Rio Grande, CO",
1129
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1130
- "percent_visits_combined": "0.0",
1131
- "percent_visits_covid": "0.0",
1132
- "percent_visits_influenza": "0.0",
1133
- "percent_visits_rsv": "0.0",
1134
- "week_end": "2023-02-04"
1135
- },
1136
- {
1137
- "county": "Alamosa",
1138
- "ed_trends_covid": "No Data",
1139
- "ed_trends_influenza": "No Data",
1140
- "ed_trends_rsv": "No Data",
1141
- "geography": "Colorado",
1142
- "hsa": "Alamosa, CO - Rio Grande, CO",
1143
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1144
- "percent_visits_combined": "0.0",
1145
- "percent_visits_covid": "0.0",
1146
- "percent_visits_influenza": "0.0",
1147
- "percent_visits_rsv": "0.0",
1148
- "week_end": "2023-02-11"
1149
- },
1150
- {
1151
- "county": "Alamosa",
1152
- "ed_trends_covid": "No Data",
1153
- "ed_trends_influenza": "No Data",
1154
- "ed_trends_rsv": "No Data",
1155
- "geography": "Colorado",
1156
- "hsa": "Alamosa, CO - Rio Grande, CO",
1157
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1158
- "percent_visits_combined": "0.0",
1159
- "percent_visits_covid": "0.0",
1160
- "percent_visits_influenza": "0.0",
1161
- "percent_visits_rsv": "0.0",
1162
- "week_end": "2023-02-18"
1163
- },
1164
- {
1165
- "county": "Alamosa",
1166
- "ed_trends_covid": "No Data",
1167
- "ed_trends_influenza": "No Data",
1168
- "ed_trends_rsv": "No Data",
1169
- "geography": "Colorado",
1170
- "hsa": "Alamosa, CO - Rio Grande, CO",
1171
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1172
- "percent_visits_combined": "0.0",
1173
- "percent_visits_covid": "0.0",
1174
- "percent_visits_influenza": "0.0",
1175
- "percent_visits_rsv": "0.0",
1176
- "week_end": "2023-02-25"
1177
- },
1178
- {
1179
- "county": "Alamosa",
1180
- "ed_trends_covid": "No Data",
1181
- "ed_trends_influenza": "No Data",
1182
- "ed_trends_rsv": "No Data",
1183
- "geography": "Colorado",
1184
- "hsa": "Alamosa, CO - Rio Grande, CO",
1185
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1186
- "percent_visits_combined": "0.0",
1187
- "percent_visits_covid": "0.0",
1188
- "percent_visits_influenza": "0.0",
1189
- "percent_visits_rsv": "0.0",
1190
- "week_end": "2023-03-04"
1191
- },
1192
- {
1193
- "county": "Alamosa",
1194
- "ed_trends_covid": "No Data",
1195
- "ed_trends_influenza": "No Data",
1196
- "ed_trends_rsv": "No Data",
1197
- "geography": "Colorado",
1198
- "hsa": "Alamosa, CO - Rio Grande, CO",
1199
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1200
- "percent_visits_combined": "0.0",
1201
- "percent_visits_covid": "0.0",
1202
- "percent_visits_influenza": "0.0",
1203
- "percent_visits_rsv": "0.0",
1204
- "week_end": "2023-03-11"
1205
- },
1206
- {
1207
- "county": "Alamosa",
1208
- "ed_trends_covid": "No Data",
1209
- "ed_trends_influenza": "No Data",
1210
- "ed_trends_rsv": "No Data",
1211
- "geography": "Colorado",
1212
- "hsa": "Alamosa, CO - Rio Grande, CO",
1213
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1214
- "percent_visits_combined": "0.0",
1215
- "percent_visits_covid": "0.0",
1216
- "percent_visits_influenza": "0.0",
1217
- "percent_visits_rsv": "0.0",
1218
- "week_end": "2023-03-18"
1219
- },
1220
- {
1221
- "county": "Alamosa",
1222
- "ed_trends_covid": "No Data",
1223
- "ed_trends_influenza": "No Data",
1224
- "ed_trends_rsv": "No Data",
1225
- "geography": "Colorado",
1226
- "hsa": "Alamosa, CO - Rio Grande, CO",
1227
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1228
- "percent_visits_combined": "0.0",
1229
- "percent_visits_covid": "0.0",
1230
- "percent_visits_influenza": "0.0",
1231
- "percent_visits_rsv": "0.0",
1232
- "week_end": "2023-03-25"
1233
- },
1234
- {
1235
- "county": "Alamosa",
1236
- "ed_trends_covid": "No Data",
1237
- "ed_trends_influenza": "No Data",
1238
- "ed_trends_rsv": "No Data",
1239
- "geography": "Colorado",
1240
- "hsa": "Alamosa, CO - Rio Grande, CO",
1241
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1242
- "percent_visits_combined": "0.0",
1243
- "percent_visits_covid": "0.0",
1244
- "percent_visits_influenza": "0.0",
1245
- "percent_visits_rsv": "0.0",
1246
- "week_end": "2023-04-01"
1247
- },
1248
- {
1249
- "county": "Alamosa",
1250
- "ed_trends_covid": "No Data",
1251
- "ed_trends_influenza": "No Data",
1252
- "ed_trends_rsv": "No Data",
1253
- "geography": "Colorado",
1254
- "hsa": "Alamosa, CO - Rio Grande, CO",
1255
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1256
- "percent_visits_combined": "0.0",
1257
- "percent_visits_covid": "0.0",
1258
- "percent_visits_influenza": "0.0",
1259
- "percent_visits_rsv": "0.0",
1260
- "week_end": "2023-04-08"
1261
- },
1262
- {
1263
- "county": "Alamosa",
1264
- "ed_trends_covid": "No Data",
1265
- "ed_trends_influenza": "No Data",
1266
- "ed_trends_rsv": "No Data",
1267
- "geography": "Colorado",
1268
- "hsa": "Alamosa, CO - Rio Grande, CO",
1269
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1270
- "percent_visits_combined": "0.0",
1271
- "percent_visits_covid": "0.0",
1272
- "percent_visits_influenza": "0.0",
1273
- "percent_visits_rsv": "0.0",
1274
- "week_end": "2023-04-15"
1275
- },
1276
- {
1277
- "county": "Alamosa",
1278
- "ed_trends_covid": "No Data",
1279
- "ed_trends_influenza": "No Data",
1280
- "ed_trends_rsv": "No Data",
1281
- "geography": "Colorado",
1282
- "hsa": "Alamosa, CO - Rio Grande, CO",
1283
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1284
- "percent_visits_combined": "0.0",
1285
- "percent_visits_covid": "0.0",
1286
- "percent_visits_influenza": "0.0",
1287
- "percent_visits_rsv": "0.0",
1288
- "week_end": "2023-04-22"
1289
- },
1290
- {
1291
- "county": "Alamosa",
1292
- "ed_trends_covid": "No Data",
1293
- "ed_trends_influenza": "No Data",
1294
- "ed_trends_rsv": "No Data",
1295
- "geography": "Colorado",
1296
- "hsa": "Alamosa, CO - Rio Grande, CO",
1297
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1298
- "percent_visits_combined": "0.0",
1299
- "percent_visits_covid": "0.0",
1300
- "percent_visits_influenza": "0.0",
1301
- "percent_visits_rsv": "0.0",
1302
- "week_end": "2023-04-29"
1303
- },
1304
- {
1305
- "county": "Alamosa",
1306
- "ed_trends_covid": "No Data",
1307
- "ed_trends_influenza": "No Data",
1308
- "ed_trends_rsv": "No Data",
1309
- "geography": "Colorado",
1310
- "hsa": "Alamosa, CO - Rio Grande, CO",
1311
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1312
- "percent_visits_combined": "0.0",
1313
- "percent_visits_covid": "0.0",
1314
- "percent_visits_influenza": "0.0",
1315
- "percent_visits_rsv": "0.0",
1316
- "week_end": "2023-05-06"
1317
- },
1318
- {
1319
- "county": "Alamosa",
1320
- "ed_trends_covid": "No Data",
1321
- "ed_trends_influenza": "No Data",
1322
- "ed_trends_rsv": "No Data",
1323
- "geography": "Colorado",
1324
- "hsa": "Alamosa, CO - Rio Grande, CO",
1325
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1326
- "percent_visits_combined": "0.0",
1327
- "percent_visits_covid": "0.0",
1328
- "percent_visits_influenza": "0.0",
1329
- "percent_visits_rsv": "0.0",
1330
- "week_end": "2023-05-13"
1331
- },
1332
- {
1333
- "county": "Alamosa",
1334
- "ed_trends_covid": "No Data",
1335
- "ed_trends_influenza": "No Data",
1336
- "ed_trends_rsv": "No Data",
1337
- "geography": "Colorado",
1338
- "hsa": "Alamosa, CO - Rio Grande, CO",
1339
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1340
- "percent_visits_combined": "0.0",
1341
- "percent_visits_covid": "0.0",
1342
- "percent_visits_influenza": "0.0",
1343
- "percent_visits_rsv": "0.0",
1344
- "week_end": "2023-05-20"
1345
- },
1346
- {
1347
- "county": "All",
1348
- "ed_trends_covid": "Decreasing",
1349
- "ed_trends_influenza": "Decreasing",
1350
- "ed_trends_rsv": "Decreasing",
1351
- "geography": "Colorado",
1352
- "hsa": "All",
1353
- "hsa_counties": "All",
1354
- "percent_visits_combined": "2.63",
1355
- "percent_visits_covid": "1.2",
1356
- "percent_visits_influenza": "1.15",
1357
- "percent_visits_rsv": "0.32",
1358
- "week_end": "2023-01-14"
1359
- },
1360
- {
1361
- "county": "Alamosa",
1362
- "ed_trends_covid": "No Data",
1363
- "ed_trends_influenza": "No Data",
1364
- "ed_trends_rsv": "No Data",
1365
- "geography": "Colorado",
1366
- "hsa": "Alamosa, CO - Rio Grande, CO",
1367
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1368
- "percent_visits_combined": "0.0",
1369
- "percent_visits_covid": "0.0",
1370
- "percent_visits_influenza": "0.0",
1371
- "percent_visits_rsv": "0.0",
1372
- "week_end": "2023-05-27"
1373
- },
1374
- {
1375
- "county": "Alamosa",
1376
- "ed_trends_covid": "No Data",
1377
- "ed_trends_influenza": "No Data",
1378
- "ed_trends_rsv": "No Data",
1379
- "geography": "Colorado",
1380
- "hsa": "Alamosa, CO - Rio Grande, CO",
1381
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1382
- "percent_visits_combined": "0.0",
1383
- "percent_visits_covid": "0.0",
1384
- "percent_visits_influenza": "0.0",
1385
- "percent_visits_rsv": "0.0",
1386
- "week_end": "2023-06-03"
1387
- },
1388
- {
1389
- "county": "Alamosa",
1390
- "ed_trends_covid": "No Data",
1391
- "ed_trends_influenza": "No Data",
1392
- "ed_trends_rsv": "No Data",
1393
- "geography": "Colorado",
1394
- "hsa": "Alamosa, CO - Rio Grande, CO",
1395
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1396
- "percent_visits_combined": "0.0",
1397
- "percent_visits_covid": "0.0",
1398
- "percent_visits_influenza": "0.0",
1399
- "percent_visits_rsv": "0.0",
1400
- "week_end": "2023-06-10"
1401
- },
1402
- {
1403
- "county": "Alamosa",
1404
- "ed_trends_covid": "No Data",
1405
- "ed_trends_influenza": "No Data",
1406
- "ed_trends_rsv": "No Data",
1407
- "geography": "Colorado",
1408
- "hsa": "Alamosa, CO - Rio Grande, CO",
1409
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1410
- "percent_visits_combined": "0.0",
1411
- "percent_visits_covid": "0.0",
1412
- "percent_visits_influenza": "0.0",
1413
- "percent_visits_rsv": "0.0",
1414
- "week_end": "2023-06-17"
1415
- },
1416
- {
1417
- "county": "Alamosa",
1418
- "ed_trends_covid": "No Data",
1419
- "ed_trends_influenza": "No Data",
1420
- "ed_trends_rsv": "No Data",
1421
- "geography": "Colorado",
1422
- "hsa": "Alamosa, CO - Rio Grande, CO",
1423
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1424
- "percent_visits_combined": "0.0",
1425
- "percent_visits_covid": "0.0",
1426
- "percent_visits_influenza": "0.0",
1427
- "percent_visits_rsv": "0.0",
1428
- "week_end": "2023-06-24"
1429
- },
1430
- {
1431
- "county": "Alamosa",
1432
- "ed_trends_covid": "No Data",
1433
- "ed_trends_influenza": "No Data",
1434
- "ed_trends_rsv": "No Data",
1435
- "geography": "Colorado",
1436
- "hsa": "Alamosa, CO - Rio Grande, CO",
1437
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1438
- "percent_visits_combined": "0.0",
1439
- "percent_visits_covid": "0.0",
1440
- "percent_visits_influenza": "0.0",
1441
- "percent_visits_rsv": "0.0",
1442
- "week_end": "2023-07-01"
1443
- },
1444
- {
1445
- "county": "Alamosa",
1446
- "ed_trends_covid": "No Data",
1447
- "ed_trends_influenza": "No Data",
1448
- "ed_trends_rsv": "No Data",
1449
- "geography": "Colorado",
1450
- "hsa": "Alamosa, CO - Rio Grande, CO",
1451
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1452
- "percent_visits_combined": "0.0",
1453
- "percent_visits_covid": "0.0",
1454
- "percent_visits_influenza": "0.0",
1455
- "percent_visits_rsv": "0.0",
1456
- "week_end": "2023-07-08"
1457
- },
1458
- {
1459
- "county": "Alamosa",
1460
- "ed_trends_covid": "No Data",
1461
- "ed_trends_influenza": "No Data",
1462
- "ed_trends_rsv": "No Data",
1463
- "geography": "Colorado",
1464
- "hsa": "Alamosa, CO - Rio Grande, CO",
1465
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1466
- "percent_visits_combined": "0.0",
1467
- "percent_visits_covid": "0.0",
1468
- "percent_visits_influenza": "0.0",
1469
- "percent_visits_rsv": "0.0",
1470
- "week_end": "2023-07-15"
1471
- },
1472
- {
1473
- "county": "Alamosa",
1474
- "ed_trends_covid": "No Data",
1475
- "ed_trends_influenza": "No Data",
1476
- "ed_trends_rsv": "No Data",
1477
- "geography": "Colorado",
1478
- "hsa": "Alamosa, CO - Rio Grande, CO",
1479
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1480
- "percent_visits_combined": "0.0",
1481
- "percent_visits_covid": "0.0",
1482
- "percent_visits_influenza": "0.0",
1483
- "percent_visits_rsv": "0.0",
1484
- "week_end": "2023-07-22"
1485
- },
1486
- {
1487
- "county": "Alamosa",
1488
- "ed_trends_covid": "No Data",
1489
- "ed_trends_influenza": "No Data",
1490
- "ed_trends_rsv": "No Data",
1491
- "geography": "Colorado",
1492
- "hsa": "Alamosa, CO - Rio Grande, CO",
1493
- "hsa_counties": "Alamosa, Conejos, Costilla, Mineral, Rio Grande, Saguache",
1494
- "percent_visits_combined": "0.0",
1495
- "percent_visits_covid": "0.0",
1496
- "percent_visits_influenza": "0.0",
1497
- "percent_visits_rsv": "0.0",
1498
- "week_end": "2023-07-29"
1499
- }
1500
- ]