@cdc/chart 4.25.10 → 4.26.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (135) hide show
  1. package/dist/{cdcchart-1a1724a1.es.js → cdcchart-dgT_1dIT.es.js} +136 -151
  2. package/dist/cdcchart.js +44003 -43518
  3. package/examples/feature/__data__/planet-example-data.json +1 -1
  4. package/examples/feature/boxplot/valid-boxplot.csv +38 -17
  5. package/examples/feature/pie/planet-pie-example-config.json +48 -2
  6. package/examples/private/DEV-11825.json +573 -0
  7. package/examples/private/DEV-12100.json +1303 -0
  8. package/examples/private/cat-y.json +1235 -0
  9. package/examples/private/data-points.json +228 -0
  10. package/examples/private/height.json +3915 -0
  11. package/examples/private/links.json +569 -0
  12. package/examples/private/na.json +913 -0
  13. package/examples/private/quadrant.txt +30 -0
  14. package/examples/private/test-data.csv +28 -0
  15. package/examples/private/test-forecast.json +5510 -0
  16. package/examples/private/warming-stripe-test.json +2578 -0
  17. package/examples/private/warming-stripes.json +4763 -0
  18. package/examples/tech-adoption-with-links.json +560 -0
  19. package/index.html +16 -140
  20. package/package.json +6 -5
  21. package/preview.html +1616 -0
  22. package/src/CdcChart.tsx +8 -11
  23. package/src/CdcChartComponent.tsx +329 -124
  24. package/src/_stories/Chart.Combo.stories.tsx +18 -0
  25. package/src/_stories/Chart.Forecast.stories.tsx +36 -0
  26. package/src/_stories/Chart.HTMLInDataTable.stories.tsx +520 -0
  27. package/src/_stories/Chart.Patterns.stories.tsx +2 -1
  28. package/src/_stories/Chart.PreserveDecimals.stories.tsx +220 -0
  29. package/src/_stories/Chart.Regions.Categorical.stories.tsx +148 -0
  30. package/src/_stories/Chart.Regions.DateScale.stories.tsx +197 -0
  31. package/src/_stories/Chart.Regions.DateTimeScale.stories.tsx +297 -0
  32. package/src/_stories/Chart.SmallMultiples.stories.tsx +47 -0
  33. package/src/_stories/Chart.stories.tsx +8 -0
  34. package/src/_stories/ChartAnnotation.stories.tsx +6 -3
  35. package/src/_stories/ChartBar.Editor.stories.tsx +3585 -0
  36. package/src/_stories/ChartBrush.Editor.stories.tsx +295 -0
  37. package/src/_stories/ChartBrush.stories.tsx +50 -0
  38. package/src/_stories/ChartEditor.Editor.stories.tsx +656 -0
  39. package/src/_stories/ChartEditor.stories.tsx +1 -2
  40. package/src/_stories/TechAdoptionWithLinks.stories.tsx +27 -0
  41. package/src/_stories/_mock/brush_enabled.json +326 -0
  42. package/src/_stories/_mock/brush_mock.json +2 -69
  43. package/src/_stories/_mock/combo.json +451 -0
  44. package/src/_stories/_mock/editor-test-configs.json +376 -0
  45. package/src/_stories/_mock/editor-test-datasets.json +477 -0
  46. package/src/_stories/_mock/editor-tests/bar-chart-editor-test.json +255 -0
  47. package/src/_stories/_mock/editor-tests/bar-chart-general-test.json +267 -0
  48. package/src/_stories/_mock/editor-tests/bar-chart-test.json +237 -0
  49. package/src/_stories/_mock/forecast_combo_with_gaps.json +913 -0
  50. package/src/_stories/_mock/horizontal-bars-dynamic-y-axis.json +413 -0
  51. package/src/_stories/_mock/pie_config.json +257 -62
  52. package/src/_stories/_mock/small_multiples/small_multiples_bars.json +1944 -0
  53. package/src/_stories/_mock/small_multiples/small_multiples_big_data_bars.json +1114 -0
  54. package/src/_stories/_mock/small_multiples/small_multiples_lines.json +2646 -0
  55. package/src/_stories/_mock/small_multiples/small_multiples_lines_colors.json +1305 -0
  56. package/src/_stories/_mock/small_multiples/small_multiples_stacked_bars.json +1936 -0
  57. package/src/components/Annotations/components/findNearestDatum.ts +6 -41
  58. package/src/components/AreaChart/components/AreaChart.Stacked.jsx +10 -7
  59. package/src/components/AreaChart/index.tsx +1 -2
  60. package/src/components/Axis/Categorical.Axis.tsx +6 -7
  61. package/src/components/BarChart/components/BarChart.Horizontal.tsx +181 -27
  62. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +3 -1
  63. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +1 -0
  64. package/src/components/BarChart/components/BarChart.Vertical.tsx +8 -9
  65. package/src/components/BarChart/components/context.tsx +1 -0
  66. package/src/components/BarChart/helpers/useBarChart.ts +14 -2
  67. package/src/components/BoxPlot/helpers/index.ts +3 -3
  68. package/src/components/Brush/BrushSelector.tsx +1258 -0
  69. package/src/components/Brush/MiniChartPreview.tsx +283 -0
  70. package/src/components/DeviationBar.jsx +9 -7
  71. package/src/components/EditorPanel/EditorPanel.tsx +2720 -2586
  72. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +96 -111
  73. package/src/components/EditorPanel/components/Panels/Panel.ForestPlotSettings.tsx +56 -34
  74. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +76 -31
  75. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +104 -55
  76. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +54 -49
  77. package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +427 -0
  78. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +96 -48
  79. package/src/components/EditorPanel/components/Panels/index.tsx +3 -1
  80. package/src/components/EditorPanel/editor-panel.scss +0 -20
  81. package/src/components/EditorPanel/useEditorPermissions.ts +36 -31
  82. package/src/components/Forecasting/Forecasting.tsx +139 -21
  83. package/src/components/Legend/Legend.Component.tsx +16 -9
  84. package/src/components/Legend/Legend.tsx +3 -2
  85. package/src/components/Legend/helpers/createFormatLabels.tsx +325 -176
  86. package/src/components/Legend/helpers/getLegendClasses.ts +0 -1
  87. package/src/components/Legend/helpers/index.ts +10 -6
  88. package/src/components/LineChart/LineChartProps.ts +0 -3
  89. package/src/components/LineChart/helpers.ts +1 -1
  90. package/src/components/LineChart/index.tsx +36 -13
  91. package/src/components/LinearChart.tsx +559 -499
  92. package/src/components/PairedBarChart.jsx +20 -3
  93. package/src/components/Regions/components/Regions.tsx +366 -144
  94. package/src/components/Sankey/types/index.ts +1 -1
  95. package/src/components/ScatterPlot/ScatterPlot.jsx +2 -2
  96. package/src/components/SmallMultiples/SmallMultipleTile.tsx +202 -0
  97. package/src/components/SmallMultiples/SmallMultiples.css +32 -0
  98. package/src/components/SmallMultiples/SmallMultiples.tsx +271 -0
  99. package/src/components/SmallMultiples/index.ts +2 -0
  100. package/src/components/WarmingStripes/WarmingStripes.tsx +160 -0
  101. package/src/components/WarmingStripes/WarmingStripesGradientLegend.css +35 -0
  102. package/src/components/WarmingStripes/WarmingStripesGradientLegend.tsx +104 -0
  103. package/src/components/WarmingStripes/index.tsx +3 -0
  104. package/src/data/initial-state.js +16 -2
  105. package/src/helpers/buildForecastPaletteOptions.ts +0 -38
  106. package/src/helpers/calculateHorizontalBarCategoryLabelWidth.ts +57 -0
  107. package/src/helpers/getColorScale.ts +10 -0
  108. package/src/{hooks/useMinMax.ts → helpers/getMinMax.ts} +26 -14
  109. package/src/helpers/getYAxisAutoPadding.ts +53 -0
  110. package/src/helpers/sizeHelpers.ts +0 -20
  111. package/src/helpers/smallMultiplesHelpers.ts +529 -0
  112. package/src/hooks/useChartHoverAnalytics.tsx +10 -9
  113. package/src/hooks/useProgrammaticTooltip.ts +96 -0
  114. package/src/hooks/useScales.ts +98 -34
  115. package/src/hooks/useSmallMultipleSynchronization.ts +59 -0
  116. package/src/hooks/useTooltip.tsx +91 -25
  117. package/src/scss/DataTable.scss +0 -4
  118. package/src/scss/main.scss +18 -83
  119. package/src/store/chart.actions.ts +2 -0
  120. package/src/store/chart.reducer.ts +4 -0
  121. package/src/test/CdcChart.test.jsx +1 -1
  122. package/src/types/ChartConfig.ts +27 -6
  123. package/src/types/ChartContext.ts +3 -0
  124. package/src/types/Label.ts +1 -0
  125. package/src/utils/analyticsTracking.ts +19 -0
  126. package/LICENSE +0 -201
  127. package/src/_stories/_mock/pie_data.json +0 -218
  128. package/src/components/AreaChart/components/AreaChart.jsx +0 -109
  129. package/src/components/Brush/BrushChart.tsx +0 -128
  130. package/src/components/Brush/BrushController.tsx +0 -71
  131. package/src/components/Brush/types.tsx +0 -8
  132. package/src/components/BrushChart.tsx +0 -223
  133. package/src/helpers/sort.ts +0 -7
  134. package/src/hooks/useActiveElement.js +0 -19
  135. package/src/hooks/useChartClasses.js +0 -41
@@ -0,0 +1,3915 @@
1
+ {
2
+ "annotations": [],
3
+ "type": "chart",
4
+ "debugSvg": false,
5
+ "chartMessage": {
6
+ "noData": "No Data Available"
7
+ },
8
+ "title": "",
9
+ "showTitle": false,
10
+ "showDownloadMediaButton": false,
11
+ "theme": "theme-blue",
12
+ "animate": false,
13
+ "lineDatapointStyle": "hover",
14
+ "lineDatapointColor": "Same as Line",
15
+ "barHasBorder": "false",
16
+ "isLollipopChart": false,
17
+ "lollipopShape": "circle",
18
+ "lollipopColorStyle": "two-tone",
19
+ "visualizationSubType": "regular",
20
+ "barStyle": "flat",
21
+ "roundingStyle": "standard",
22
+ "tipRounding": "top",
23
+ "isResponsiveTicks": false,
24
+ "general": {
25
+ "annotationDropdownText": "Annotations",
26
+ "showMissingDataLabel": true,
27
+ "showSuppressedSymbol": true,
28
+ "showZeroValueData": true,
29
+ "hideNullValue": true,
30
+ "palette": {
31
+ "name": "qualitative_bold",
32
+ "customColors": [
33
+ "#F7A866",
34
+ "#000000",
35
+ "#844774",
36
+ "#7EB0C4",
37
+ "#0A6C75",
38
+ "#C0F2FD",
39
+ "#C0F2FD",
40
+ "#C0F2FD",
41
+ "#C0F2FD"
42
+ ],
43
+ "version": "1.0"
44
+ },
45
+ "showZeroValueDataLabel": true
46
+ },
47
+ "padding": {
48
+ "left": 5,
49
+ "right": 5
50
+ },
51
+ "preliminaryData": [
52
+ {
53
+ "type": "effect",
54
+ "label": "<5% Population",
55
+ "column": "hatch",
56
+ "value": "Limited Coverage",
57
+ "style": "Open Circles",
58
+ "displayTooltip": true,
59
+ "displayLegend": true,
60
+ "displayTable": true,
61
+ "symbol": "",
62
+ "iconCode": "",
63
+ "lineCode": "◯",
64
+ "hideBarSymbol": false,
65
+ "hideLineStyle": false,
66
+ "circleSize": "4",
67
+ "displayGray": true,
68
+ "seriesKeys": [
69
+ "value"
70
+ ]
71
+ }
72
+ ],
73
+ "yAxis": {
74
+ "hideAxis": false,
75
+ "displayNumbersOnBar": false,
76
+ "hideLabel": false,
77
+ "hideTicks": false,
78
+ "size": "100",
79
+ "gridLines": true,
80
+ "enablePadding": false,
81
+ "min": "0",
82
+ "max": "",
83
+ "labelColor": "#1c1d1f",
84
+ "tickLabelColor": "#1c1d1f",
85
+ "tickColor": "#1c1d1f",
86
+ "rightHideAxis": true,
87
+ "rightAxisSize": 0,
88
+ "rightLabel": "",
89
+ "rightLabelOffsetSize": 0,
90
+ "rightAxisLabelColor": "#1c1d1f",
91
+ "rightAxisTickLabelColor": "#1c1d1f",
92
+ "rightAxisTickColor": "#1c1d1f",
93
+ "numTicks": "",
94
+ "axisPadding": 0,
95
+ "scalePadding": 10,
96
+ "tickRotation": 0,
97
+ "anchors": [],
98
+ "shoMissingDataLabel": true,
99
+ "showMissingDataLine": true,
100
+ "categories": [
101
+ {
102
+ "label": "Very Low",
103
+ "height": "2.5",
104
+ "color": "#C8EFDA"
105
+ },
106
+ {
107
+ "label": "Low",
108
+ "height": "2.7",
109
+ "color": "#9FDAD0"
110
+ },
111
+ {
112
+ "label": "Moderate",
113
+ "height": "2.8",
114
+ "color": "#6BB0BD"
115
+ },
116
+ {
117
+ "label": "High",
118
+ "height": "3",
119
+ "color": "#4B7F9B"
120
+ },
121
+ {
122
+ "label": "Very High",
123
+ "height": "",
124
+ "color": "#34547B"
125
+ }
126
+ ],
127
+ "type": "categorical",
128
+ "maxValue": 1084.05065083491
129
+ },
130
+ "boxplot": {
131
+ "plots": [],
132
+ "borders": "true",
133
+ "plotOutlierValues": false,
134
+ "plotNonOutlierValues": true,
135
+ "labels": {
136
+ "q1": "Lower Quartile",
137
+ "q2": "q2",
138
+ "q3": "Upper Quartile",
139
+ "q4": "q4",
140
+ "minimum": "Minimum",
141
+ "maximum": "Maximum",
142
+ "mean": "Mean",
143
+ "median": "Median",
144
+ "sd": "Standard Deviation",
145
+ "iqr": "Interquartile Range",
146
+ "total": "Total",
147
+ "outliers": "Outliers",
148
+ "values": "Values",
149
+ "lowerBounds": "Lower Bounds",
150
+ "upperBounds": "Upper Bounds",
151
+ "count": "Count"
152
+ },
153
+ "firstQuartilePercentage": 25,
154
+ "thirdQuartilePercentage": 75,
155
+ "boxWidthPercentage": 40,
156
+ "legend": {
157
+ "showHowToReadText": false,
158
+ "howToReadText": ""
159
+ }
160
+ },
161
+ "topAxis": {
162
+ "hasLine": false
163
+ },
164
+ "isLegendValue": false,
165
+ "barThickness": 0.35,
166
+ "barHeight": 25,
167
+ "barSpace": 15,
168
+ "heights": {
169
+ "vertical": "275",
170
+ "horizontal": 750
171
+ },
172
+ "xAxis": {
173
+ "sortDates": false,
174
+ "anchors": [],
175
+ "type": "date",
176
+ "showTargetLabel": true,
177
+ "targetLabel": "Target",
178
+ "hideAxis": false,
179
+ "hideLabel": false,
180
+ "hideTicks": false,
181
+ "size": "50",
182
+ "tickRotation": "45",
183
+ "min": "",
184
+ "max": "",
185
+ "labelColor": "#1c1d1f",
186
+ "tickLabelColor": "#1c1d1f",
187
+ "tickColor": "#1c1d1f",
188
+ "numTicks": "",
189
+ "labelOffset": 0,
190
+ "axisPadding": 200,
191
+ "target": 0,
192
+ "maxTickRotation": 0,
193
+ "padding": 6,
194
+ "showYearsOnce": false,
195
+ "sortByRecentDate": false,
196
+ "brushActive": false,
197
+ "dataKey": "Week_Ending_Date",
198
+ "dateParseFormat": "%Y-%m-%d",
199
+ "dateDisplayFormat": "%m/%d/%y",
200
+ "tickWidthMax": 67,
201
+ "axisBBox": 103.25208282470703,
202
+ "label": "Week Ending"
203
+ },
204
+ "table": {
205
+ "label": "Data Table",
206
+ "expanded": false,
207
+ "limitHeight": false,
208
+ "height": "",
209
+ "caption": "",
210
+ "showDownloadUrl": false,
211
+ "showDataTableLink": false,
212
+ "showDownloadLinkBelow": true,
213
+ "indexLabel": "",
214
+ "download": true,
215
+ "showVertical": true,
216
+ "dateDisplayFormat": "",
217
+ "showMissingDataLabel": true,
218
+ "showSuppressedSymbol": true,
219
+ "collapsible": true,
220
+ "show": false,
221
+ "sharedFilterColumns": [
222
+ "State/Territory"
223
+ ]
224
+ },
225
+ "orientation": "vertical",
226
+ "color": "qualitative-bold",
227
+ "columns": {
228
+ "WVAL_Category": {
229
+ "label": "State WVAL Category",
230
+ "dataTable": true,
231
+ "tooltips": true,
232
+ "prefix": "",
233
+ "suffix": "",
234
+ "forestPlot": false,
235
+ "startingPoint": "0",
236
+ "forestPlotAlignRight": false,
237
+ "roundToPlace": 0,
238
+ "commas": false,
239
+ "showInViz": false,
240
+ "forestPlotStartingPoint": 0,
241
+ "name": "WVAL_Category",
242
+ "series": "value",
243
+ "order": null
244
+ }
245
+ },
246
+ "legend": {
247
+ "hide": false,
248
+ "behavior": "isolate",
249
+ "axisAlign": true,
250
+ "singleRow": true,
251
+ "colorCode": "",
252
+ "reverseLabelOrder": false,
253
+ "description": "",
254
+ "dynamicLegend": false,
255
+ "dynamicLegendDefaultText": "Show All",
256
+ "dynamicLegendItemLimit": 5,
257
+ "dynamicLegendItemLimitMessage": "Dynamic Legend Item Limit Hit.",
258
+ "dynamicLegendChartMessage": "Select Options from the Legend",
259
+ "label": "",
260
+ "lineMode": false,
261
+ "verticalSorted": false,
262
+ "highlightOnHover": false,
263
+ "hideSuppressedLabels": false,
264
+ "hideSuppressionLink": false,
265
+ "seriesHighlight": [],
266
+ "style": "lines",
267
+ "subStyle": "linear blocks",
268
+ "groupBy": "",
269
+ "shape": "circle",
270
+ "tickRotation": "",
271
+ "order": "dataColumn",
272
+ "hideBorder": {
273
+ "side": false,
274
+ "topBottom": true
275
+ },
276
+ "position": "bottom",
277
+ "orderedValues": [],
278
+ "patterns": {},
279
+ "patternField": "",
280
+ "unified": true
281
+ },
282
+ "smallMultiples": {
283
+ "mode": "",
284
+ "tileColumn": "",
285
+ "tilesPerRowDesktop": 3,
286
+ "tilesPerRowMobile": 1,
287
+ "tileOrder": [],
288
+ "tileOrderType": "asc",
289
+ "tileTitles": {},
290
+ "independentYAxis": false,
291
+ "colorMode": "same",
292
+ "synchronizedTooltips": true,
293
+ "showAreaUnderLine": true
294
+ },
295
+ "exclusions": {
296
+ "active": false,
297
+ "keys": []
298
+ },
299
+ "twoColor": {
300
+ "palette": "monochrome-1",
301
+ "isPaletteReversed": false
302
+ },
303
+ "labels": false,
304
+ "dataFormat": {
305
+ "commas": false,
306
+ "prefix": "",
307
+ "suffix": "",
308
+ "abbreviated": false,
309
+ "bottomSuffix": "",
310
+ "bottomPrefix": "",
311
+ "bottomAbbreviated": false,
312
+ "roundTo": "2"
313
+ },
314
+ "filters": [
315
+ {
316
+ "filterStyle": "dropdown",
317
+ "columnName": "Data_Collection_Period",
318
+ "order": "asc",
319
+ "label": "Date Period",
320
+ "active": "1 Year"
321
+ }
322
+ ],
323
+ "confidenceKeys": {},
324
+ "visual": {
325
+ "border": true,
326
+ "accent": true,
327
+ "background": true,
328
+ "verticalHoverLine": false,
329
+ "horizontalHoverLine": false,
330
+ "lineDatapointSymbol": "none",
331
+ "maximumShapeAmount": 7
332
+ },
333
+ "useLogScale": false,
334
+ "filterBehavior": "Filter Change",
335
+ "highlightedBarValues": [],
336
+ "series": [
337
+ {
338
+ "dataKey": "State/Territory_WVAL",
339
+ "type": "Line",
340
+ "axis": "Left",
341
+ "tooltip": true,
342
+ "lineType": "curveMonotoneX",
343
+ "name": "State/Territory"
344
+ },
345
+ {
346
+ "dataKey": "National_WVAL",
347
+ "type": "Line",
348
+ "axis": "Left",
349
+ "tooltip": true,
350
+ "lineType": "curveMonotoneX",
351
+ "name": "National"
352
+ },
353
+ {
354
+ "dataKey": "Regional_WVAL",
355
+ "type": "Line",
356
+ "axis": "Left",
357
+ "tooltip": true,
358
+ "name": "Regional",
359
+ "lineType": "curveMonotoneX"
360
+ }
361
+ ],
362
+ "tooltips": {
363
+ "opacity": 90,
364
+ "singleSeries": false,
365
+ "dateDisplayFormat": ""
366
+ },
367
+ "forestPlot": {
368
+ "startAt": 0,
369
+ "colors": {
370
+ "line": "",
371
+ "shape": ""
372
+ },
373
+ "lineOfNoEffect": {
374
+ "show": true
375
+ },
376
+ "type": "",
377
+ "pooledResult": {
378
+ "diamondHeight": 5,
379
+ "column": ""
380
+ },
381
+ "estimateField": "",
382
+ "estimateRadius": "",
383
+ "shape": "square",
384
+ "rowHeight": 20,
385
+ "description": {
386
+ "show": true,
387
+ "text": "description",
388
+ "location": 0
389
+ },
390
+ "result": {
391
+ "show": true,
392
+ "text": "result",
393
+ "location": 100
394
+ },
395
+ "radius": {
396
+ "min": 2,
397
+ "max": 10,
398
+ "scalingColumn": ""
399
+ },
400
+ "regression": {
401
+ "lower": 0,
402
+ "upper": 0,
403
+ "estimateField": 0
404
+ },
405
+ "leftWidthOffset": 0,
406
+ "rightWidthOffset": 0,
407
+ "showZeroLine": false,
408
+ "leftLabel": "",
409
+ "rightLabel": ""
410
+ },
411
+ "area": {
412
+ "isStacked": false
413
+ },
414
+ "sankey": {
415
+ "title": {
416
+ "defaultColor": "black"
417
+ },
418
+ "iterations": 1,
419
+ "rxValue": 0.9,
420
+ "overallSize": {
421
+ "width": 900,
422
+ "height": 700
423
+ },
424
+ "margin": {
425
+ "margin_y": 25,
426
+ "margin_x": 0
427
+ },
428
+ "nodeSize": {
429
+ "nodeWidth": 26,
430
+ "nodeHeight": 40
431
+ },
432
+ "nodePadding": 55,
433
+ "nodeFontColor": "black",
434
+ "nodeColor": {
435
+ "default": "#ff8500",
436
+ "inactive": "#808080"
437
+ },
438
+ "linkColor": {
439
+ "default": "#ffc900",
440
+ "inactive": "#D3D3D3"
441
+ },
442
+ "opacity": {
443
+ "nodeOpacityDefault": 1,
444
+ "nodeOpacityInactive": 0.1,
445
+ "LinkOpacityDefault": 1,
446
+ "LinkOpacityInactive": 0.1
447
+ },
448
+ "storyNodeFontColor": "#006778",
449
+ "storyNodeText": [],
450
+ "nodeValueStyle": {
451
+ "textBefore": "(",
452
+ "textAfter": ")"
453
+ },
454
+ "data": []
455
+ },
456
+ "markupVariables": [],
457
+ "enableMarkupVariables": false,
458
+ "fontSize": "medium",
459
+ "brush": {
460
+ "height": 25,
461
+ "active": false
462
+ },
463
+ "isPaletteReversed": false,
464
+ "openModal": true,
465
+ "uid": "chart1725462823392",
466
+ "visualizationType": "Line",
467
+ "dataDescription": {
468
+ "horizontal": false,
469
+ "series": false
470
+ },
471
+ "dataKey": "Trend Over Time",
472
+ "version": "4.25.1",
473
+ "dynamicMarginTop": 0,
474
+ "regions": [
475
+ {
476
+ "background": "#777777",
477
+ "fromType": "Previous Days",
478
+ "from": "14",
479
+ "toType": "Last Date"
480
+ }
481
+ ],
482
+ "description": "<div class=\"text-left ml-3 pb-3\">Data from the most recent two weeks may be incomplete due to delays in data reporting. These data sets are subject to change and are indicated by the gray shading. </div>",
483
+ "migrations": {
484
+ "addColorMigration": true
485
+ },
486
+ "dashboardFilters": [
487
+ {
488
+ "columnName": "State/Territory",
489
+ "active": "Alabama",
490
+ "values": []
491
+ }
492
+ ],
493
+ "editing": true,
494
+ "data": [
495
+ {
496
+ "State/Territory": "Alabama",
497
+ "Week_Ending_Date": "2022-08-13",
498
+ "Data_Collection_Period": "All Results",
499
+ "State/Territory_WVAL": "1.0",
500
+ "National_WVAL": "1.6",
501
+ "Regional_WVAL": "1.22",
502
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
503
+ "activity_level": "1",
504
+ "WVAL_Category": "Very Low",
505
+ "Coverage": "Limited Coverage",
506
+ "date_updated": "2026-01-01T08:09:17.471Z"
507
+ },
508
+ {
509
+ "State/Territory": "Alabama",
510
+ "Week_Ending_Date": "2025-02-15",
511
+ "Data_Collection_Period": "1 Year",
512
+ "State/Territory_WVAL": "4.05",
513
+ "National_WVAL": "8.84",
514
+ "Regional_WVAL": "5.19",
515
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
516
+ "activity_level": "2",
517
+ "WVAL_Category": "Low",
518
+ "Coverage": null,
519
+ "date_updated": "2026-01-01T08:09:17.471Z"
520
+ },
521
+ {
522
+ "State/Territory": "Alabama",
523
+ "Week_Ending_Date": "2025-08-23",
524
+ "Data_Collection_Period": "6 Months",
525
+ "State/Territory_WVAL": "1.0",
526
+ "National_WVAL": "1.0",
527
+ "Regional_WVAL": "1.0",
528
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
529
+ "activity_level": "1",
530
+ "WVAL_Category": "Very Low",
531
+ "Coverage": null,
532
+ "date_updated": "2026-01-01T08:09:17.471Z"
533
+ },
534
+ {
535
+ "State/Territory": "Alabama",
536
+ "Week_Ending_Date": "2025-06-07",
537
+ "Data_Collection_Period": "1 Year",
538
+ "State/Territory_WVAL": "3.16",
539
+ "National_WVAL": "1.0",
540
+ "Regional_WVAL": "1.0",
541
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
542
+ "activity_level": "2",
543
+ "WVAL_Category": "Low",
544
+ "Coverage": null,
545
+ "date_updated": "2026-01-01T08:09:17.471Z"
546
+ },
547
+ {
548
+ "State/Territory": "Alabama",
549
+ "Week_Ending_Date": "2023-09-16",
550
+ "Data_Collection_Period": "All Results",
551
+ "State/Territory_WVAL": "1.0",
552
+ "National_WVAL": "1.17",
553
+ "Regional_WVAL": "1.0",
554
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
555
+ "activity_level": "1",
556
+ "WVAL_Category": "Very Low",
557
+ "Coverage": null,
558
+ "date_updated": "2026-01-01T08:09:17.471Z"
559
+ },
560
+ {
561
+ "State/Territory": "Alabama",
562
+ "Week_Ending_Date": "2023-07-01",
563
+ "Data_Collection_Period": "All Results",
564
+ "State/Territory_WVAL": "1.0",
565
+ "National_WVAL": "1.0",
566
+ "Regional_WVAL": "1.0",
567
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
568
+ "activity_level": "1",
569
+ "WVAL_Category": "Very Low",
570
+ "Coverage": null,
571
+ "date_updated": "2026-01-01T08:09:17.471Z"
572
+ },
573
+ {
574
+ "State/Territory": "Alabama",
575
+ "Week_Ending_Date": "2025-11-01",
576
+ "Data_Collection_Period": "6 Months",
577
+ "State/Territory_WVAL": "1.0",
578
+ "National_WVAL": "1.0",
579
+ "Regional_WVAL": "1.0",
580
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
581
+ "activity_level": "1",
582
+ "WVAL_Category": "Very Low",
583
+ "Coverage": null,
584
+ "date_updated": "2026-01-01T08:09:17.471Z"
585
+ },
586
+ {
587
+ "State/Territory": "Alabama",
588
+ "Week_Ending_Date": "2024-04-06",
589
+ "Data_Collection_Period": "All Results",
590
+ "State/Territory_WVAL": "1.42",
591
+ "National_WVAL": "1.35",
592
+ "Regional_WVAL": "1.0",
593
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
594
+ "activity_level": "1",
595
+ "WVAL_Category": "Very Low",
596
+ "Coverage": null,
597
+ "date_updated": "2026-01-01T08:09:17.471Z"
598
+ },
599
+ {
600
+ "State/Territory": "Alabama",
601
+ "Week_Ending_Date": "2025-02-08",
602
+ "Data_Collection_Period": "All Results",
603
+ "State/Territory_WVAL": "5.01",
604
+ "National_WVAL": "8.09",
605
+ "Regional_WVAL": "6.91",
606
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
607
+ "activity_level": "2",
608
+ "WVAL_Category": "Low",
609
+ "Coverage": null,
610
+ "date_updated": "2026-01-01T08:09:17.471Z"
611
+ },
612
+ {
613
+ "State/Territory": "Alabama",
614
+ "Week_Ending_Date": "2025-07-12",
615
+ "Data_Collection_Period": "All Results",
616
+ "State/Territory_WVAL": "1.0",
617
+ "National_WVAL": "1.0",
618
+ "Regional_WVAL": "1.0",
619
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
620
+ "activity_level": "1",
621
+ "WVAL_Category": "Very Low",
622
+ "Coverage": null,
623
+ "date_updated": "2026-01-01T08:09:17.471Z"
624
+ },
625
+ {
626
+ "State/Territory": "Alabama",
627
+ "Week_Ending_Date": "2023-10-28",
628
+ "Data_Collection_Period": "All Results",
629
+ "State/Territory_WVAL": "5.88",
630
+ "National_WVAL": "2.44",
631
+ "Regional_WVAL": "5.0",
632
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
633
+ "activity_level": "3",
634
+ "WVAL_Category": "Moderate",
635
+ "Coverage": null,
636
+ "date_updated": "2026-01-01T08:09:17.471Z"
637
+ },
638
+ {
639
+ "State/Territory": "Alabama",
640
+ "Week_Ending_Date": "2022-09-24",
641
+ "Data_Collection_Period": "All Results",
642
+ "State/Territory_WVAL": "4.85",
643
+ "National_WVAL": "3.6",
644
+ "Regional_WVAL": "4.85",
645
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
646
+ "activity_level": "2",
647
+ "WVAL_Category": "Low",
648
+ "Coverage": null,
649
+ "date_updated": "2026-01-01T08:09:17.471Z"
650
+ },
651
+ {
652
+ "State/Territory": "Alabama",
653
+ "Week_Ending_Date": "2025-10-11",
654
+ "Data_Collection_Period": "6 Months",
655
+ "State/Territory_WVAL": "1.0",
656
+ "National_WVAL": "1.0",
657
+ "Regional_WVAL": "1.0",
658
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
659
+ "activity_level": "1",
660
+ "WVAL_Category": "Very Low",
661
+ "Coverage": null,
662
+ "date_updated": "2026-01-01T08:09:17.471Z"
663
+ },
664
+ {
665
+ "State/Territory": "Alabama",
666
+ "Week_Ending_Date": "2025-12-20",
667
+ "Data_Collection_Period": "All Results",
668
+ "State/Territory_WVAL": "5.45",
669
+ "National_WVAL": "1.44",
670
+ "Regional_WVAL": "4.64",
671
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
672
+ "activity_level": "3",
673
+ "WVAL_Category": "Moderate",
674
+ "Coverage": null,
675
+ "date_updated": "2026-01-01T08:09:17.471Z"
676
+ },
677
+ {
678
+ "State/Territory": "Alabama",
679
+ "Week_Ending_Date": "2023-09-30",
680
+ "Data_Collection_Period": "All Results",
681
+ "State/Territory_WVAL": "2.41",
682
+ "National_WVAL": "2.2",
683
+ "Regional_WVAL": "2.41",
684
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
685
+ "activity_level": "1",
686
+ "WVAL_Category": "Very Low",
687
+ "Coverage": null,
688
+ "date_updated": "2026-01-01T08:09:17.471Z"
689
+ },
690
+ {
691
+ "State/Territory": "Alabama",
692
+ "Week_Ending_Date": "2023-06-10",
693
+ "Data_Collection_Period": "All Results",
694
+ "State/Territory_WVAL": "1.0",
695
+ "National_WVAL": "1.0",
696
+ "Regional_WVAL": "1.0",
697
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
698
+ "activity_level": "1",
699
+ "WVAL_Category": "Very Low",
700
+ "Coverage": null,
701
+ "date_updated": "2026-01-01T08:09:17.471Z"
702
+ },
703
+ {
704
+ "State/Territory": "Alabama",
705
+ "Week_Ending_Date": "2025-11-15",
706
+ "Data_Collection_Period": "6 Months",
707
+ "State/Territory_WVAL": "1.25",
708
+ "National_WVAL": "1.0",
709
+ "Regional_WVAL": "1.0",
710
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
711
+ "activity_level": "1",
712
+ "WVAL_Category": "Very Low",
713
+ "Coverage": null,
714
+ "date_updated": "2026-01-01T08:09:17.471Z"
715
+ },
716
+ {
717
+ "State/Territory": "Alabama",
718
+ "Week_Ending_Date": "2025-08-30",
719
+ "Data_Collection_Period": "6 Months",
720
+ "State/Territory_WVAL": "1.0",
721
+ "National_WVAL": "1.0",
722
+ "Regional_WVAL": "1.0",
723
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
724
+ "activity_level": "1",
725
+ "WVAL_Category": "Very Low",
726
+ "Coverage": null,
727
+ "date_updated": "2026-01-01T08:09:17.471Z"
728
+ },
729
+ {
730
+ "State/Territory": "Alabama",
731
+ "Week_Ending_Date": "2025-10-04",
732
+ "Data_Collection_Period": "6 Months",
733
+ "State/Territory_WVAL": "1.0",
734
+ "National_WVAL": "1.0",
735
+ "Regional_WVAL": "1.0",
736
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
737
+ "activity_level": "1",
738
+ "WVAL_Category": "Very Low",
739
+ "Coverage": null,
740
+ "date_updated": "2026-01-01T08:09:17.471Z"
741
+ },
742
+ {
743
+ "State/Territory": "Alabama",
744
+ "Week_Ending_Date": "2024-08-03",
745
+ "Data_Collection_Period": "All Results",
746
+ "State/Territory_WVAL": "1.0",
747
+ "National_WVAL": "1.0",
748
+ "Regional_WVAL": "1.0",
749
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
750
+ "activity_level": "1",
751
+ "WVAL_Category": "Very Low",
752
+ "Coverage": null,
753
+ "date_updated": "2026-01-01T08:09:17.471Z"
754
+ },
755
+ {
756
+ "State/Territory": "Alabama",
757
+ "Week_Ending_Date": "2025-12-27",
758
+ "Data_Collection_Period": "6 Months",
759
+ "State/Territory_WVAL": "8.01",
760
+ "National_WVAL": "1.97",
761
+ "Regional_WVAL": "5.41",
762
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
763
+ "activity_level": "4",
764
+ "WVAL_Category": "High",
765
+ "Coverage": null,
766
+ "date_updated": "2026-01-01T08:09:17.471Z"
767
+ },
768
+ {
769
+ "State/Territory": "Alabama",
770
+ "Week_Ending_Date": "2023-03-11",
771
+ "Data_Collection_Period": "All Results",
772
+ "State/Territory_WVAL": "1.0",
773
+ "National_WVAL": "2.53",
774
+ "Regional_WVAL": "1.69",
775
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
776
+ "activity_level": "1",
777
+ "WVAL_Category": "Very Low",
778
+ "Coverage": null,
779
+ "date_updated": "2026-01-01T08:09:17.471Z"
780
+ },
781
+ {
782
+ "State/Territory": "Alabama",
783
+ "Week_Ending_Date": "2025-11-29",
784
+ "Data_Collection_Period": "All Results",
785
+ "State/Territory_WVAL": "1.0",
786
+ "National_WVAL": "1.0",
787
+ "Regional_WVAL": "1.0",
788
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
789
+ "activity_level": "1",
790
+ "WVAL_Category": "Very Low",
791
+ "Coverage": null,
792
+ "date_updated": "2026-01-01T08:09:17.471Z"
793
+ },
794
+ {
795
+ "State/Territory": "Alabama",
796
+ "Week_Ending_Date": "2025-02-22",
797
+ "Data_Collection_Period": "All Results",
798
+ "State/Territory_WVAL": "2.85",
799
+ "National_WVAL": "8.38",
800
+ "Regional_WVAL": "4.81",
801
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
802
+ "activity_level": "2",
803
+ "WVAL_Category": "Low",
804
+ "Coverage": null,
805
+ "date_updated": "2026-01-01T08:09:17.471Z"
806
+ },
807
+ {
808
+ "State/Territory": "Alabama",
809
+ "Week_Ending_Date": "2025-10-25",
810
+ "Data_Collection_Period": "1 Year",
811
+ "State/Territory_WVAL": "1.0",
812
+ "National_WVAL": "1.0",
813
+ "Regional_WVAL": "1.0",
814
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
815
+ "activity_level": "1",
816
+ "WVAL_Category": "Very Low",
817
+ "Coverage": null,
818
+ "date_updated": "2026-01-01T08:09:17.471Z"
819
+ },
820
+ {
821
+ "State/Territory": "Alabama",
822
+ "Week_Ending_Date": "2024-12-21",
823
+ "Data_Collection_Period": "All Results",
824
+ "State/Territory_WVAL": "8.55",
825
+ "National_WVAL": "4.82",
826
+ "Regional_WVAL": "8.68",
827
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
828
+ "activity_level": "4",
829
+ "WVAL_Category": "High",
830
+ "Coverage": null,
831
+ "date_updated": "2026-01-01T08:09:17.471Z"
832
+ },
833
+ {
834
+ "State/Territory": "Alabama",
835
+ "Week_Ending_Date": "2025-12-13",
836
+ "Data_Collection_Period": "All Results",
837
+ "State/Territory_WVAL": "4.34",
838
+ "National_WVAL": "1.12",
839
+ "Regional_WVAL": "4.12",
840
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
841
+ "activity_level": "2",
842
+ "WVAL_Category": "Low",
843
+ "Coverage": null,
844
+ "date_updated": "2026-01-01T08:09:17.471Z"
845
+ },
846
+ {
847
+ "State/Territory": "Alabama",
848
+ "Week_Ending_Date": "2022-12-03",
849
+ "Data_Collection_Period": "All Results",
850
+ "State/Territory_WVAL": "5.35",
851
+ "National_WVAL": "13.15",
852
+ "Regional_WVAL": "9.29",
853
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
854
+ "activity_level": "3",
855
+ "WVAL_Category": "Moderate",
856
+ "Coverage": null,
857
+ "date_updated": "2026-01-01T08:09:17.471Z"
858
+ },
859
+ {
860
+ "State/Territory": "Alabama",
861
+ "Week_Ending_Date": "2024-09-07",
862
+ "Data_Collection_Period": "All Results",
863
+ "State/Territory_WVAL": "1.0",
864
+ "National_WVAL": "1.0",
865
+ "Regional_WVAL": "1.0",
866
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
867
+ "activity_level": "1",
868
+ "WVAL_Category": "Very Low",
869
+ "Coverage": null,
870
+ "date_updated": "2026-01-01T08:09:17.471Z"
871
+ },
872
+ {
873
+ "State/Territory": "Alabama",
874
+ "Week_Ending_Date": "2023-08-05",
875
+ "Data_Collection_Period": "All Results",
876
+ "State/Territory_WVAL": "1.0",
877
+ "National_WVAL": "1.0",
878
+ "Regional_WVAL": "1.0",
879
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
880
+ "activity_level": "1",
881
+ "WVAL_Category": "Very Low",
882
+ "Coverage": null,
883
+ "date_updated": "2026-01-01T08:09:17.471Z"
884
+ },
885
+ {
886
+ "State/Territory": "Alabama",
887
+ "Week_Ending_Date": "2025-05-24",
888
+ "Data_Collection_Period": "All Results",
889
+ "State/Territory_WVAL": "1.0",
890
+ "National_WVAL": "1.0",
891
+ "Regional_WVAL": "1.0",
892
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
893
+ "activity_level": "1",
894
+ "WVAL_Category": "Very Low",
895
+ "Coverage": null,
896
+ "date_updated": "2026-01-01T08:09:17.471Z"
897
+ },
898
+ {
899
+ "State/Territory": "Alabama",
900
+ "Week_Ending_Date": "2025-09-06",
901
+ "Data_Collection_Period": "All Results",
902
+ "State/Territory_WVAL": "1.0",
903
+ "National_WVAL": "1.0",
904
+ "Regional_WVAL": "1.0",
905
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
906
+ "activity_level": "1",
907
+ "WVAL_Category": "Very Low",
908
+ "Coverage": null,
909
+ "date_updated": "2026-01-01T08:09:17.471Z"
910
+ },
911
+ {
912
+ "State/Territory": "Alabama",
913
+ "Week_Ending_Date": "2023-03-18",
914
+ "Data_Collection_Period": "All Results",
915
+ "State/Territory_WVAL": "1.0",
916
+ "National_WVAL": "2.3",
917
+ "Regional_WVAL": "1.0",
918
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
919
+ "activity_level": "1",
920
+ "WVAL_Category": "Very Low",
921
+ "Coverage": null,
922
+ "date_updated": "2026-01-01T08:09:17.471Z"
923
+ },
924
+ {
925
+ "State/Territory": "Alabama",
926
+ "Week_Ending_Date": "2025-03-15",
927
+ "Data_Collection_Period": "All Results",
928
+ "State/Territory_WVAL": "1.47",
929
+ "National_WVAL": "3.91",
930
+ "Regional_WVAL": "2.7",
931
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
932
+ "activity_level": "1",
933
+ "WVAL_Category": "Very Low",
934
+ "Coverage": null,
935
+ "date_updated": "2026-01-01T08:09:17.471Z"
936
+ },
937
+ {
938
+ "State/Territory": "Alabama",
939
+ "Week_Ending_Date": "2025-01-18",
940
+ "Data_Collection_Period": "All Results",
941
+ "State/Territory_WVAL": "7.32",
942
+ "National_WVAL": "10.17",
943
+ "Regional_WVAL": "10.31",
944
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
945
+ "activity_level": "3",
946
+ "WVAL_Category": "Moderate",
947
+ "Coverage": null,
948
+ "date_updated": "2026-01-01T08:09:17.471Z"
949
+ },
950
+ {
951
+ "State/Territory": "Alabama",
952
+ "Week_Ending_Date": "2022-11-19",
953
+ "Data_Collection_Period": "All Results",
954
+ "State/Territory_WVAL": "7.91",
955
+ "National_WVAL": "11.85",
956
+ "Regional_WVAL": "9.24",
957
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
958
+ "activity_level": "3",
959
+ "WVAL_Category": "Moderate",
960
+ "Coverage": null,
961
+ "date_updated": "2026-01-01T08:09:17.471Z"
962
+ },
963
+ {
964
+ "State/Territory": "Alabama",
965
+ "Week_Ending_Date": "2025-12-06",
966
+ "Data_Collection_Period": "45 Days",
967
+ "State/Territory_WVAL": "5.88",
968
+ "National_WVAL": "1.29",
969
+ "Regional_WVAL": "2.86",
970
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
971
+ "activity_level": "3",
972
+ "WVAL_Category": "Moderate",
973
+ "Coverage": null,
974
+ "date_updated": "2026-01-01T08:09:17.471Z"
975
+ },
976
+ {
977
+ "State/Territory": "Alabama",
978
+ "Week_Ending_Date": "2024-10-12",
979
+ "Data_Collection_Period": "All Results",
980
+ "State/Territory_WVAL": "1.0",
981
+ "National_WVAL": "1.0",
982
+ "Regional_WVAL": "1.0",
983
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
984
+ "activity_level": "1",
985
+ "WVAL_Category": "Very Low",
986
+ "Coverage": null,
987
+ "date_updated": "2026-01-01T08:09:17.471Z"
988
+ },
989
+ {
990
+ "State/Territory": "Alabama",
991
+ "Week_Ending_Date": "2024-09-14",
992
+ "Data_Collection_Period": "All Results",
993
+ "State/Territory_WVAL": "1.0",
994
+ "National_WVAL": "1.0",
995
+ "Regional_WVAL": "1.0",
996
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
997
+ "activity_level": "1",
998
+ "WVAL_Category": "Very Low",
999
+ "Coverage": null,
1000
+ "date_updated": "2026-01-01T08:09:17.471Z"
1001
+ },
1002
+ {
1003
+ "State/Territory": "Alabama",
1004
+ "Week_Ending_Date": "2025-11-22",
1005
+ "Data_Collection_Period": "6 Months",
1006
+ "State/Territory_WVAL": "2.06",
1007
+ "National_WVAL": "1.0",
1008
+ "Regional_WVAL": "1.0",
1009
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1010
+ "activity_level": "1",
1011
+ "WVAL_Category": "Very Low",
1012
+ "Coverage": null,
1013
+ "date_updated": "2026-01-01T08:09:17.471Z"
1014
+ },
1015
+ {
1016
+ "State/Territory": "Alabama",
1017
+ "Week_Ending_Date": "2023-08-26",
1018
+ "Data_Collection_Period": "All Results",
1019
+ "State/Territory_WVAL": "1.0",
1020
+ "National_WVAL": "1.28",
1021
+ "Regional_WVAL": "1.23",
1022
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1023
+ "activity_level": "1",
1024
+ "WVAL_Category": "Very Low",
1025
+ "Coverage": null,
1026
+ "date_updated": "2026-01-01T08:09:17.471Z"
1027
+ },
1028
+ {
1029
+ "State/Territory": "Alabama",
1030
+ "Week_Ending_Date": "2025-08-16",
1031
+ "Data_Collection_Period": "All Results",
1032
+ "State/Territory_WVAL": "1.0",
1033
+ "National_WVAL": "1.0",
1034
+ "Regional_WVAL": "1.0",
1035
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1036
+ "activity_level": "1",
1037
+ "WVAL_Category": "Very Low",
1038
+ "Coverage": null,
1039
+ "date_updated": "2026-01-01T08:09:17.471Z"
1040
+ },
1041
+ {
1042
+ "State/Territory": "Alabama",
1043
+ "Week_Ending_Date": "2025-03-15",
1044
+ "Data_Collection_Period": "1 Year",
1045
+ "State/Territory_WVAL": "1.47",
1046
+ "National_WVAL": "3.91",
1047
+ "Regional_WVAL": "2.7",
1048
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1049
+ "activity_level": "1",
1050
+ "WVAL_Category": "Very Low",
1051
+ "Coverage": null,
1052
+ "date_updated": "2026-01-01T08:09:17.471Z"
1053
+ },
1054
+ {
1055
+ "State/Territory": "Alabama",
1056
+ "Week_Ending_Date": "2025-06-21",
1057
+ "Data_Collection_Period": "All Results",
1058
+ "State/Territory_WVAL": "1.0",
1059
+ "National_WVAL": "1.0",
1060
+ "Regional_WVAL": "1.0",
1061
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1062
+ "activity_level": "1",
1063
+ "WVAL_Category": "Very Low",
1064
+ "Coverage": null,
1065
+ "date_updated": "2026-01-01T08:09:17.471Z"
1066
+ },
1067
+ {
1068
+ "State/Territory": "Alabama",
1069
+ "Week_Ending_Date": "2025-12-20",
1070
+ "Data_Collection_Period": "6 Months",
1071
+ "State/Territory_WVAL": "5.45",
1072
+ "National_WVAL": "1.44",
1073
+ "Regional_WVAL": "4.64",
1074
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1075
+ "activity_level": "3",
1076
+ "WVAL_Category": "Moderate",
1077
+ "Coverage": null,
1078
+ "date_updated": "2026-01-01T08:09:17.471Z"
1079
+ },
1080
+ {
1081
+ "State/Territory": "Alabama",
1082
+ "Week_Ending_Date": "2024-03-09",
1083
+ "Data_Collection_Period": "All Results",
1084
+ "State/Territory_WVAL": "2.31",
1085
+ "National_WVAL": "3.69",
1086
+ "Regional_WVAL": "1.46",
1087
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1088
+ "activity_level": "1",
1089
+ "WVAL_Category": "Very Low",
1090
+ "Coverage": null,
1091
+ "date_updated": "2026-01-01T08:09:17.471Z"
1092
+ },
1093
+ {
1094
+ "State/Territory": "Alabama",
1095
+ "Week_Ending_Date": "2024-11-16",
1096
+ "Data_Collection_Period": "All Results",
1097
+ "State/Territory_WVAL": "6.96",
1098
+ "National_WVAL": "1.0",
1099
+ "Regional_WVAL": "2.72",
1100
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1101
+ "activity_level": "3",
1102
+ "WVAL_Category": "Moderate",
1103
+ "Coverage": null,
1104
+ "date_updated": "2026-01-01T08:09:17.471Z"
1105
+ },
1106
+ {
1107
+ "State/Territory": "Alabama",
1108
+ "Week_Ending_Date": "2025-02-01",
1109
+ "Data_Collection_Period": "1 Year",
1110
+ "State/Territory_WVAL": "5.15",
1111
+ "National_WVAL": "9.29",
1112
+ "Regional_WVAL": "6.6",
1113
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1114
+ "activity_level": "2",
1115
+ "WVAL_Category": "Low",
1116
+ "Coverage": null,
1117
+ "date_updated": "2026-01-01T08:09:17.471Z"
1118
+ },
1119
+ {
1120
+ "State/Territory": "Alabama",
1121
+ "Week_Ending_Date": "2022-12-10",
1122
+ "Data_Collection_Period": "All Results",
1123
+ "State/Territory_WVAL": "6.21",
1124
+ "National_WVAL": "11.32",
1125
+ "Regional_WVAL": "9.3",
1126
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1127
+ "activity_level": "3",
1128
+ "WVAL_Category": "Moderate",
1129
+ "Coverage": null,
1130
+ "date_updated": "2026-01-01T08:09:17.471Z"
1131
+ },
1132
+ {
1133
+ "State/Territory": "Alabama",
1134
+ "Week_Ending_Date": "2025-05-10",
1135
+ "Data_Collection_Period": "All Results",
1136
+ "State/Territory_WVAL": "1.0",
1137
+ "National_WVAL": "1.0",
1138
+ "Regional_WVAL": "1.0",
1139
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1140
+ "activity_level": "1",
1141
+ "WVAL_Category": "Very Low",
1142
+ "Coverage": null,
1143
+ "date_updated": "2026-01-01T08:09:17.471Z"
1144
+ },
1145
+ {
1146
+ "State/Territory": "Alabama",
1147
+ "Week_Ending_Date": "2024-11-30",
1148
+ "Data_Collection_Period": "All Results",
1149
+ "State/Territory_WVAL": "8.42",
1150
+ "National_WVAL": "2.37",
1151
+ "Regional_WVAL": "5.51",
1152
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1153
+ "activity_level": "4",
1154
+ "WVAL_Category": "High",
1155
+ "Coverage": null,
1156
+ "date_updated": "2026-01-01T08:09:17.471Z"
1157
+ },
1158
+ {
1159
+ "State/Territory": "Alabama",
1160
+ "Week_Ending_Date": "2023-05-20",
1161
+ "Data_Collection_Period": "All Results",
1162
+ "State/Territory_WVAL": "1.0",
1163
+ "National_WVAL": "1.0",
1164
+ "Regional_WVAL": "1.0",
1165
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1166
+ "activity_level": "1",
1167
+ "WVAL_Category": "Very Low",
1168
+ "Coverage": null,
1169
+ "date_updated": "2026-01-01T08:09:17.471Z"
1170
+ },
1171
+ {
1172
+ "State/Territory": "Alabama",
1173
+ "Week_Ending_Date": "2024-01-27",
1174
+ "Data_Collection_Period": "All Results",
1175
+ "State/Territory_WVAL": "5.5",
1176
+ "National_WVAL": "6.61",
1177
+ "Regional_WVAL": "4.2",
1178
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1179
+ "activity_level": "3",
1180
+ "WVAL_Category": "Moderate",
1181
+ "Coverage": null,
1182
+ "date_updated": "2026-01-01T08:09:17.471Z"
1183
+ },
1184
+ {
1185
+ "State/Territory": "Alabama",
1186
+ "Week_Ending_Date": "2024-04-13",
1187
+ "Data_Collection_Period": "All Results",
1188
+ "State/Territory_WVAL": "1.0",
1189
+ "National_WVAL": "1.25",
1190
+ "Regional_WVAL": "1.0",
1191
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1192
+ "activity_level": "1",
1193
+ "WVAL_Category": "Very Low",
1194
+ "Coverage": null,
1195
+ "date_updated": "2026-01-01T08:09:17.471Z"
1196
+ },
1197
+ {
1198
+ "State/Territory": "Alabama",
1199
+ "Week_Ending_Date": "2023-11-11",
1200
+ "Data_Collection_Period": "All Results",
1201
+ "State/Territory_WVAL": "8.07",
1202
+ "National_WVAL": "4.6",
1203
+ "Regional_WVAL": "5.92",
1204
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1205
+ "activity_level": "4",
1206
+ "WVAL_Category": "High",
1207
+ "Coverage": null,
1208
+ "date_updated": "2026-01-01T08:09:17.471Z"
1209
+ },
1210
+ {
1211
+ "State/Territory": "Alabama",
1212
+ "Week_Ending_Date": "2023-10-21",
1213
+ "Data_Collection_Period": "All Results",
1214
+ "State/Territory_WVAL": "4.96",
1215
+ "National_WVAL": "1.65",
1216
+ "Regional_WVAL": "1.67",
1217
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1218
+ "activity_level": "2",
1219
+ "WVAL_Category": "Low",
1220
+ "Coverage": null,
1221
+ "date_updated": "2026-01-01T08:09:17.471Z"
1222
+ },
1223
+ {
1224
+ "State/Territory": "Alabama",
1225
+ "Week_Ending_Date": "2024-01-20",
1226
+ "Data_Collection_Period": "All Results",
1227
+ "State/Territory_WVAL": "5.15",
1228
+ "National_WVAL": "7.48",
1229
+ "Regional_WVAL": "5.62",
1230
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1231
+ "activity_level": "2",
1232
+ "WVAL_Category": "Low",
1233
+ "Coverage": null,
1234
+ "date_updated": "2026-01-01T08:09:17.471Z"
1235
+ },
1236
+ {
1237
+ "State/Territory": "Alabama",
1238
+ "Week_Ending_Date": "2025-11-22",
1239
+ "Data_Collection_Period": "1 Year",
1240
+ "State/Territory_WVAL": "2.06",
1241
+ "National_WVAL": "1.0",
1242
+ "Regional_WVAL": "1.0",
1243
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1244
+ "activity_level": "1",
1245
+ "WVAL_Category": "Very Low",
1246
+ "Coverage": null,
1247
+ "date_updated": "2026-01-01T08:09:17.471Z"
1248
+ },
1249
+ {
1250
+ "State/Territory": "Alabama",
1251
+ "Week_Ending_Date": "2025-08-02",
1252
+ "Data_Collection_Period": "1 Year",
1253
+ "State/Territory_WVAL": "1.0",
1254
+ "National_WVAL": "1.0",
1255
+ "Regional_WVAL": "1.0",
1256
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1257
+ "activity_level": "1",
1258
+ "WVAL_Category": "Very Low",
1259
+ "Coverage": null,
1260
+ "date_updated": "2026-01-01T08:09:17.471Z"
1261
+ },
1262
+ {
1263
+ "State/Territory": "Alabama",
1264
+ "Week_Ending_Date": "2025-03-08",
1265
+ "Data_Collection_Period": "All Results",
1266
+ "State/Territory_WVAL": "2.25",
1267
+ "National_WVAL": "6.03",
1268
+ "Regional_WVAL": "3.15",
1269
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1270
+ "activity_level": "1",
1271
+ "WVAL_Category": "Very Low",
1272
+ "Coverage": null,
1273
+ "date_updated": "2026-01-01T08:09:17.471Z"
1274
+ },
1275
+ {
1276
+ "State/Territory": "Alabama",
1277
+ "Week_Ending_Date": "2025-04-26",
1278
+ "Data_Collection_Period": "All Results",
1279
+ "State/Territory_WVAL": "1.0",
1280
+ "National_WVAL": "1.0",
1281
+ "Regional_WVAL": "1.0",
1282
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1283
+ "activity_level": "1",
1284
+ "WVAL_Category": "Very Low",
1285
+ "Coverage": null,
1286
+ "date_updated": "2026-01-01T08:09:17.471Z"
1287
+ },
1288
+ {
1289
+ "State/Territory": "Alabama",
1290
+ "Week_Ending_Date": "2025-08-02",
1291
+ "Data_Collection_Period": "6 Months",
1292
+ "State/Territory_WVAL": "1.0",
1293
+ "National_WVAL": "1.0",
1294
+ "Regional_WVAL": "1.0",
1295
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1296
+ "activity_level": "1",
1297
+ "WVAL_Category": "Very Low",
1298
+ "Coverage": null,
1299
+ "date_updated": "2026-01-01T08:09:17.471Z"
1300
+ },
1301
+ {
1302
+ "State/Territory": "Alabama",
1303
+ "Week_Ending_Date": "2025-11-08",
1304
+ "Data_Collection_Period": "6 Months",
1305
+ "State/Territory_WVAL": "1.0",
1306
+ "National_WVAL": "1.0",
1307
+ "Regional_WVAL": "1.0",
1308
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1309
+ "activity_level": "1",
1310
+ "WVAL_Category": "Very Low",
1311
+ "Coverage": null,
1312
+ "date_updated": "2026-01-01T08:09:17.471Z"
1313
+ },
1314
+ {
1315
+ "State/Territory": "Alabama",
1316
+ "Week_Ending_Date": "2024-01-13",
1317
+ "Data_Collection_Period": "All Results",
1318
+ "State/Territory_WVAL": "5.08",
1319
+ "National_WVAL": "8.8",
1320
+ "Regional_WVAL": "6.21",
1321
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1322
+ "activity_level": "2",
1323
+ "WVAL_Category": "Low",
1324
+ "Coverage": null,
1325
+ "date_updated": "2026-01-01T08:09:17.471Z"
1326
+ },
1327
+ {
1328
+ "State/Territory": "Alabama",
1329
+ "Week_Ending_Date": "2025-09-27",
1330
+ "Data_Collection_Period": "6 Months",
1331
+ "State/Territory_WVAL": "1.0",
1332
+ "National_WVAL": "1.0",
1333
+ "Regional_WVAL": "1.0",
1334
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1335
+ "activity_level": "1",
1336
+ "WVAL_Category": "Very Low",
1337
+ "Coverage": null,
1338
+ "date_updated": "2026-01-01T08:09:17.471Z"
1339
+ },
1340
+ {
1341
+ "State/Territory": "Alabama",
1342
+ "Week_Ending_Date": "2023-02-25",
1343
+ "Data_Collection_Period": "All Results",
1344
+ "State/Territory_WVAL": "1.81",
1345
+ "National_WVAL": "3.77",
1346
+ "Regional_WVAL": "1.84",
1347
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1348
+ "activity_level": "1",
1349
+ "WVAL_Category": "Very Low",
1350
+ "Coverage": null,
1351
+ "date_updated": "2026-01-01T08:09:17.471Z"
1352
+ },
1353
+ {
1354
+ "State/Territory": "Alabama",
1355
+ "Week_Ending_Date": "2025-03-29",
1356
+ "Data_Collection_Period": "1 Year",
1357
+ "State/Territory_WVAL": "1.41",
1358
+ "National_WVAL": "3.74",
1359
+ "Regional_WVAL": "1.6",
1360
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1361
+ "activity_level": "1",
1362
+ "WVAL_Category": "Very Low",
1363
+ "Coverage": null,
1364
+ "date_updated": "2026-01-01T08:09:17.471Z"
1365
+ },
1366
+ {
1367
+ "State/Territory": "Alabama",
1368
+ "Week_Ending_Date": "2025-03-01",
1369
+ "Data_Collection_Period": "1 Year",
1370
+ "State/Territory_WVAL": "3.85",
1371
+ "National_WVAL": "6.68",
1372
+ "Regional_WVAL": "3.85",
1373
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1374
+ "activity_level": "2",
1375
+ "WVAL_Category": "Low",
1376
+ "Coverage": null,
1377
+ "date_updated": "2026-01-01T08:09:17.471Z"
1378
+ },
1379
+ {
1380
+ "State/Territory": "Alabama",
1381
+ "Week_Ending_Date": "2025-05-24",
1382
+ "Data_Collection_Period": "1 Year",
1383
+ "State/Territory_WVAL": "1.0",
1384
+ "National_WVAL": "1.0",
1385
+ "Regional_WVAL": "1.0",
1386
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1387
+ "activity_level": "1",
1388
+ "WVAL_Category": "Very Low",
1389
+ "Coverage": null,
1390
+ "date_updated": "2026-01-01T08:09:17.471Z"
1391
+ },
1392
+ {
1393
+ "State/Territory": "Alabama",
1394
+ "Week_Ending_Date": "2025-11-08",
1395
+ "Data_Collection_Period": "All Results",
1396
+ "State/Territory_WVAL": "1.0",
1397
+ "National_WVAL": "1.0",
1398
+ "Regional_WVAL": "1.0",
1399
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1400
+ "activity_level": "1",
1401
+ "WVAL_Category": "Very Low",
1402
+ "Coverage": null,
1403
+ "date_updated": "2026-01-01T08:09:17.471Z"
1404
+ },
1405
+ {
1406
+ "State/Territory": "Alabama",
1407
+ "Week_Ending_Date": "2025-06-28",
1408
+ "Data_Collection_Period": "1 Year",
1409
+ "State/Territory_WVAL": "1.0",
1410
+ "National_WVAL": "1.0",
1411
+ "Regional_WVAL": "1.0",
1412
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1413
+ "activity_level": "1",
1414
+ "WVAL_Category": "Very Low",
1415
+ "Coverage": null,
1416
+ "date_updated": "2026-01-01T08:09:17.471Z"
1417
+ },
1418
+ {
1419
+ "State/Territory": "Alabama",
1420
+ "Week_Ending_Date": "2024-06-22",
1421
+ "Data_Collection_Period": "All Results",
1422
+ "State/Territory_WVAL": "1.0",
1423
+ "National_WVAL": "1.0",
1424
+ "Regional_WVAL": "1.0",
1425
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1426
+ "activity_level": "1",
1427
+ "WVAL_Category": "Very Low",
1428
+ "Coverage": null,
1429
+ "date_updated": "2026-01-01T08:09:17.471Z"
1430
+ },
1431
+ {
1432
+ "State/Territory": "Alabama",
1433
+ "Week_Ending_Date": "2022-09-03",
1434
+ "Data_Collection_Period": "All Results",
1435
+ "State/Territory_WVAL": "6.16",
1436
+ "National_WVAL": "2.1",
1437
+ "Regional_WVAL": "4.28",
1438
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1439
+ "activity_level": "3",
1440
+ "WVAL_Category": "Moderate",
1441
+ "Coverage": null,
1442
+ "date_updated": "2026-01-01T08:09:17.471Z"
1443
+ },
1444
+ {
1445
+ "State/Territory": "Alabama",
1446
+ "Week_Ending_Date": "2025-08-09",
1447
+ "Data_Collection_Period": "6 Months",
1448
+ "State/Territory_WVAL": "1.0",
1449
+ "National_WVAL": "1.0",
1450
+ "Regional_WVAL": "1.0",
1451
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1452
+ "activity_level": "1",
1453
+ "WVAL_Category": "Very Low",
1454
+ "Coverage": null,
1455
+ "date_updated": "2026-01-01T08:09:17.471Z"
1456
+ },
1457
+ {
1458
+ "State/Territory": "Alabama",
1459
+ "Week_Ending_Date": "2022-10-22",
1460
+ "Data_Collection_Period": "All Results",
1461
+ "State/Territory_WVAL": "6.04",
1462
+ "National_WVAL": "7.13",
1463
+ "Regional_WVAL": "6.48",
1464
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1465
+ "activity_level": "3",
1466
+ "WVAL_Category": "Moderate",
1467
+ "Coverage": null,
1468
+ "date_updated": "2026-01-01T08:09:17.471Z"
1469
+ },
1470
+ {
1471
+ "State/Territory": "Alabama",
1472
+ "Week_Ending_Date": "2023-07-15",
1473
+ "Data_Collection_Period": "All Results",
1474
+ "State/Territory_WVAL": "1.0",
1475
+ "National_WVAL": "1.0",
1476
+ "Regional_WVAL": "1.0",
1477
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1478
+ "activity_level": "1",
1479
+ "WVAL_Category": "Very Low",
1480
+ "Coverage": null,
1481
+ "date_updated": "2026-01-01T08:09:17.471Z"
1482
+ },
1483
+ {
1484
+ "State/Territory": "Alabama",
1485
+ "Week_Ending_Date": "2025-06-07",
1486
+ "Data_Collection_Period": "All Results",
1487
+ "State/Territory_WVAL": "3.16",
1488
+ "National_WVAL": "1.0",
1489
+ "Regional_WVAL": "1.0",
1490
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1491
+ "activity_level": "2",
1492
+ "WVAL_Category": "Low",
1493
+ "Coverage": null,
1494
+ "date_updated": "2026-01-01T08:09:17.471Z"
1495
+ },
1496
+ {
1497
+ "State/Territory": "Alabama",
1498
+ "Week_Ending_Date": "2025-08-02",
1499
+ "Data_Collection_Period": "All Results",
1500
+ "State/Territory_WVAL": "1.0",
1501
+ "National_WVAL": "1.0",
1502
+ "Regional_WVAL": "1.0",
1503
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1504
+ "activity_level": "1",
1505
+ "WVAL_Category": "Very Low",
1506
+ "Coverage": null,
1507
+ "date_updated": "2026-01-01T08:09:17.471Z"
1508
+ },
1509
+ {
1510
+ "State/Territory": "Alabama",
1511
+ "Week_Ending_Date": "2022-09-10",
1512
+ "Data_Collection_Period": "All Results",
1513
+ "State/Territory_WVAL": "5.5",
1514
+ "National_WVAL": "3.04",
1515
+ "Regional_WVAL": "5.41",
1516
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1517
+ "activity_level": "3",
1518
+ "WVAL_Category": "Moderate",
1519
+ "Coverage": null,
1520
+ "date_updated": "2026-01-01T08:09:17.471Z"
1521
+ },
1522
+ {
1523
+ "State/Territory": "Alabama",
1524
+ "Week_Ending_Date": "2025-12-06",
1525
+ "Data_Collection_Period": "6 Months",
1526
+ "State/Territory_WVAL": "5.88",
1527
+ "National_WVAL": "1.29",
1528
+ "Regional_WVAL": "2.86",
1529
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1530
+ "activity_level": "3",
1531
+ "WVAL_Category": "Moderate",
1532
+ "Coverage": null,
1533
+ "date_updated": "2026-01-01T08:09:17.471Z"
1534
+ },
1535
+ {
1536
+ "State/Territory": "Alabama",
1537
+ "Week_Ending_Date": "2025-09-20",
1538
+ "Data_Collection_Period": "6 Months",
1539
+ "State/Territory_WVAL": "1.0",
1540
+ "National_WVAL": "1.0",
1541
+ "Regional_WVAL": "1.0",
1542
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1543
+ "activity_level": "1",
1544
+ "WVAL_Category": "Very Low",
1545
+ "Coverage": null,
1546
+ "date_updated": "2026-01-01T08:09:17.471Z"
1547
+ },
1548
+ {
1549
+ "State/Territory": "Alabama",
1550
+ "Week_Ending_Date": "2025-12-27",
1551
+ "Data_Collection_Period": "45 Days",
1552
+ "State/Territory_WVAL": "8.01",
1553
+ "National_WVAL": "1.97",
1554
+ "Regional_WVAL": "5.41",
1555
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1556
+ "activity_level": "4",
1557
+ "WVAL_Category": "High",
1558
+ "Coverage": null,
1559
+ "date_updated": "2026-01-01T08:09:17.471Z"
1560
+ },
1561
+ {
1562
+ "State/Territory": "Alabama",
1563
+ "Week_Ending_Date": "2024-12-07",
1564
+ "Data_Collection_Period": "All Results",
1565
+ "State/Territory_WVAL": "11.91",
1566
+ "National_WVAL": "3.53",
1567
+ "Regional_WVAL": "10.16",
1568
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1569
+ "activity_level": "5",
1570
+ "WVAL_Category": "Very High",
1571
+ "Coverage": null,
1572
+ "date_updated": "2026-01-01T08:09:17.471Z"
1573
+ },
1574
+ {
1575
+ "State/Territory": "Alabama",
1576
+ "Week_Ending_Date": "2025-09-13",
1577
+ "Data_Collection_Period": "6 Months",
1578
+ "State/Territory_WVAL": "1.0",
1579
+ "National_WVAL": "1.0",
1580
+ "Regional_WVAL": "1.0",
1581
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1582
+ "activity_level": "1",
1583
+ "WVAL_Category": "Very Low",
1584
+ "Coverage": null,
1585
+ "date_updated": "2026-01-01T08:09:17.471Z"
1586
+ },
1587
+ {
1588
+ "State/Territory": "Alabama",
1589
+ "Week_Ending_Date": "2023-02-11",
1590
+ "Data_Collection_Period": "All Results",
1591
+ "State/Territory_WVAL": "2.95",
1592
+ "National_WVAL": "3.66",
1593
+ "Regional_WVAL": "3.55",
1594
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1595
+ "activity_level": "2",
1596
+ "WVAL_Category": "Low",
1597
+ "Coverage": null,
1598
+ "date_updated": "2026-01-01T08:09:17.471Z"
1599
+ },
1600
+ {
1601
+ "State/Territory": "Alabama",
1602
+ "Week_Ending_Date": "2023-08-19",
1603
+ "Data_Collection_Period": "All Results",
1604
+ "State/Territory_WVAL": "1.0",
1605
+ "National_WVAL": "1.0",
1606
+ "Regional_WVAL": "1.0",
1607
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1608
+ "activity_level": "1",
1609
+ "WVAL_Category": "Very Low",
1610
+ "Coverage": null,
1611
+ "date_updated": "2026-01-01T08:09:17.471Z"
1612
+ },
1613
+ {
1614
+ "State/Territory": "Alabama",
1615
+ "Week_Ending_Date": "2025-05-17",
1616
+ "Data_Collection_Period": "1 Year",
1617
+ "State/Territory_WVAL": "1.0",
1618
+ "National_WVAL": "1.0",
1619
+ "Regional_WVAL": "1.0",
1620
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1621
+ "activity_level": "1",
1622
+ "WVAL_Category": "Very Low",
1623
+ "Coverage": null,
1624
+ "date_updated": "2026-01-01T08:09:17.471Z"
1625
+ },
1626
+ {
1627
+ "State/Territory": "Alabama",
1628
+ "Week_Ending_Date": "2024-08-10",
1629
+ "Data_Collection_Period": "All Results",
1630
+ "State/Territory_WVAL": "1.0",
1631
+ "National_WVAL": "1.0",
1632
+ "Regional_WVAL": "1.0",
1633
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1634
+ "activity_level": "1",
1635
+ "WVAL_Category": "Very Low",
1636
+ "Coverage": null,
1637
+ "date_updated": "2026-01-01T08:09:17.471Z"
1638
+ },
1639
+ {
1640
+ "State/Territory": "Alabama",
1641
+ "Week_Ending_Date": "2025-07-05",
1642
+ "Data_Collection_Period": "6 Months",
1643
+ "State/Territory_WVAL": "1.0",
1644
+ "National_WVAL": "1.0",
1645
+ "Regional_WVAL": "1.0",
1646
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1647
+ "activity_level": "1",
1648
+ "WVAL_Category": "Very Low",
1649
+ "Coverage": null,
1650
+ "date_updated": "2026-01-01T08:09:17.471Z"
1651
+ },
1652
+ {
1653
+ "State/Territory": "Alabama",
1654
+ "Week_Ending_Date": "2024-02-10",
1655
+ "Data_Collection_Period": "All Results",
1656
+ "State/Territory_WVAL": "2.25",
1657
+ "National_WVAL": "6.04",
1658
+ "Regional_WVAL": "2.97",
1659
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1660
+ "activity_level": "1",
1661
+ "WVAL_Category": "Very Low",
1662
+ "Coverage": null,
1663
+ "date_updated": "2026-01-01T08:09:17.471Z"
1664
+ },
1665
+ {
1666
+ "State/Territory": "Alabama",
1667
+ "Week_Ending_Date": "2024-08-17",
1668
+ "Data_Collection_Period": "All Results",
1669
+ "State/Territory_WVAL": "1.0",
1670
+ "National_WVAL": "1.0",
1671
+ "Regional_WVAL": "1.0",
1672
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1673
+ "activity_level": "1",
1674
+ "WVAL_Category": "Very Low",
1675
+ "Coverage": null,
1676
+ "date_updated": "2026-01-01T08:09:17.471Z"
1677
+ },
1678
+ {
1679
+ "State/Territory": "Alabama",
1680
+ "Week_Ending_Date": "2025-08-09",
1681
+ "Data_Collection_Period": "1 Year",
1682
+ "State/Territory_WVAL": "1.0",
1683
+ "National_WVAL": "1.0",
1684
+ "Regional_WVAL": "1.0",
1685
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1686
+ "activity_level": "1",
1687
+ "WVAL_Category": "Very Low",
1688
+ "Coverage": null,
1689
+ "date_updated": "2026-01-01T08:09:17.471Z"
1690
+ },
1691
+ {
1692
+ "State/Territory": "Alabama",
1693
+ "Week_Ending_Date": "2024-11-09",
1694
+ "Data_Collection_Period": "All Results",
1695
+ "State/Territory_WVAL": "5.59",
1696
+ "National_WVAL": "1.11",
1697
+ "Regional_WVAL": "2.34",
1698
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1699
+ "activity_level": "3",
1700
+ "WVAL_Category": "Moderate",
1701
+ "Coverage": null,
1702
+ "date_updated": "2026-01-01T08:09:17.471Z"
1703
+ },
1704
+ {
1705
+ "State/Territory": "Alabama",
1706
+ "Week_Ending_Date": "2025-10-18",
1707
+ "Data_Collection_Period": "1 Year",
1708
+ "State/Territory_WVAL": "1.0",
1709
+ "National_WVAL": "1.0",
1710
+ "Regional_WVAL": "1.0",
1711
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1712
+ "activity_level": "1",
1713
+ "WVAL_Category": "Very Low",
1714
+ "Coverage": null,
1715
+ "date_updated": "2026-01-01T08:09:17.471Z"
1716
+ },
1717
+ {
1718
+ "State/Territory": "Alabama",
1719
+ "Week_Ending_Date": "2023-05-13",
1720
+ "Data_Collection_Period": "All Results",
1721
+ "State/Territory_WVAL": "1.0",
1722
+ "National_WVAL": "1.0",
1723
+ "Regional_WVAL": "1.0",
1724
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1725
+ "activity_level": "1",
1726
+ "WVAL_Category": "Very Low",
1727
+ "Coverage": null,
1728
+ "date_updated": "2026-01-01T08:09:17.471Z"
1729
+ },
1730
+ {
1731
+ "State/Territory": "Alabama",
1732
+ "Week_Ending_Date": "2023-06-24",
1733
+ "Data_Collection_Period": "All Results",
1734
+ "State/Territory_WVAL": "1.0",
1735
+ "National_WVAL": "1.0",
1736
+ "Regional_WVAL": "1.0",
1737
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1738
+ "activity_level": "1",
1739
+ "WVAL_Category": "Very Low",
1740
+ "Coverage": null,
1741
+ "date_updated": "2026-01-01T08:09:17.471Z"
1742
+ },
1743
+ {
1744
+ "State/Territory": "Alabama",
1745
+ "Week_Ending_Date": "2025-05-03",
1746
+ "Data_Collection_Period": "1 Year",
1747
+ "State/Territory_WVAL": "1.0",
1748
+ "National_WVAL": "1.0",
1749
+ "Regional_WVAL": "1.0",
1750
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1751
+ "activity_level": "1",
1752
+ "WVAL_Category": "Very Low",
1753
+ "Coverage": null,
1754
+ "date_updated": "2026-01-01T08:09:17.471Z"
1755
+ },
1756
+ {
1757
+ "State/Territory": "Alabama",
1758
+ "Week_Ending_Date": "2023-07-22",
1759
+ "Data_Collection_Period": "All Results",
1760
+ "State/Territory_WVAL": "1.0",
1761
+ "National_WVAL": "1.0",
1762
+ "Regional_WVAL": "1.0",
1763
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1764
+ "activity_level": "1",
1765
+ "WVAL_Category": "Very Low",
1766
+ "Coverage": null,
1767
+ "date_updated": "2026-01-01T08:09:17.471Z"
1768
+ },
1769
+ {
1770
+ "State/Territory": "Alabama",
1771
+ "Week_Ending_Date": "2023-09-02",
1772
+ "Data_Collection_Period": "All Results",
1773
+ "State/Territory_WVAL": "1.0",
1774
+ "National_WVAL": "1.0",
1775
+ "Regional_WVAL": "1.0",
1776
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1777
+ "activity_level": "1",
1778
+ "WVAL_Category": "Very Low",
1779
+ "Coverage": null,
1780
+ "date_updated": "2026-01-01T08:09:17.471Z"
1781
+ },
1782
+ {
1783
+ "State/Territory": "Alabama",
1784
+ "Week_Ending_Date": "2022-09-17",
1785
+ "Data_Collection_Period": "All Results",
1786
+ "State/Territory_WVAL": "4.85",
1787
+ "National_WVAL": "2.63",
1788
+ "Regional_WVAL": "4.85",
1789
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1790
+ "activity_level": "2",
1791
+ "WVAL_Category": "Low",
1792
+ "Coverage": null,
1793
+ "date_updated": "2026-01-01T08:09:17.471Z"
1794
+ },
1795
+ {
1796
+ "State/Territory": "Alabama",
1797
+ "Week_Ending_Date": "2025-08-23",
1798
+ "Data_Collection_Period": "All Results",
1799
+ "State/Territory_WVAL": "1.0",
1800
+ "National_WVAL": "1.0",
1801
+ "Regional_WVAL": "1.0",
1802
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1803
+ "activity_level": "1",
1804
+ "WVAL_Category": "Very Low",
1805
+ "Coverage": null,
1806
+ "date_updated": "2026-01-01T08:09:17.471Z"
1807
+ },
1808
+ {
1809
+ "State/Territory": "Alabama",
1810
+ "Week_Ending_Date": "2024-08-31",
1811
+ "Data_Collection_Period": "All Results",
1812
+ "State/Territory_WVAL": "1.0",
1813
+ "National_WVAL": "1.0",
1814
+ "Regional_WVAL": "1.0",
1815
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1816
+ "activity_level": "1",
1817
+ "WVAL_Category": "Very Low",
1818
+ "Coverage": null,
1819
+ "date_updated": "2026-01-01T08:09:17.471Z"
1820
+ },
1821
+ {
1822
+ "State/Territory": "Alabama",
1823
+ "Week_Ending_Date": "2024-09-28",
1824
+ "Data_Collection_Period": "All Results",
1825
+ "State/Territory_WVAL": "1.0",
1826
+ "National_WVAL": "1.0",
1827
+ "Regional_WVAL": "1.0",
1828
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1829
+ "activity_level": "1",
1830
+ "WVAL_Category": "Very Low",
1831
+ "Coverage": null,
1832
+ "date_updated": "2026-01-01T08:09:17.471Z"
1833
+ },
1834
+ {
1835
+ "State/Territory": "Alabama",
1836
+ "Week_Ending_Date": "2025-12-27",
1837
+ "Data_Collection_Period": "All Results",
1838
+ "State/Territory_WVAL": "8.5",
1839
+ "National_WVAL": "1.97",
1840
+ "Regional_WVAL": "5.41",
1841
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1842
+ "activity_level": "4",
1843
+ "WVAL_Category": "High",
1844
+ "Coverage": null,
1845
+ "date_updated": "2026-01-01T08:09:17.471Z"
1846
+ },
1847
+ {
1848
+ "State/Territory": "Alabama",
1849
+ "Week_Ending_Date": "2025-09-13",
1850
+ "Data_Collection_Period": "All Results",
1851
+ "State/Territory_WVAL": "1.0",
1852
+ "National_WVAL": "1.0",
1853
+ "Regional_WVAL": "1.0",
1854
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1855
+ "activity_level": "1",
1856
+ "WVAL_Category": "Very Low",
1857
+ "Coverage": null,
1858
+ "date_updated": "2026-01-01T08:09:17.471Z"
1859
+ },
1860
+ {
1861
+ "State/Territory": "Alabama",
1862
+ "Week_Ending_Date": "2023-12-16",
1863
+ "Data_Collection_Period": "All Results",
1864
+ "State/Territory_WVAL": "9.9",
1865
+ "National_WVAL": "9.23",
1866
+ "Regional_WVAL": "10.13",
1867
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1868
+ "activity_level": "4",
1869
+ "WVAL_Category": "High",
1870
+ "Coverage": null,
1871
+ "date_updated": "2026-01-01T08:09:17.471Z"
1872
+ },
1873
+ {
1874
+ "State/Territory": "Alabama",
1875
+ "Week_Ending_Date": "2022-11-12",
1876
+ "Data_Collection_Period": "All Results",
1877
+ "State/Territory_WVAL": "5.5",
1878
+ "National_WVAL": "9.6",
1879
+ "Regional_WVAL": "7.77",
1880
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1881
+ "activity_level": "3",
1882
+ "WVAL_Category": "Moderate",
1883
+ "Coverage": null,
1884
+ "date_updated": "2026-01-01T08:09:17.471Z"
1885
+ },
1886
+ {
1887
+ "State/Territory": "Alabama",
1888
+ "Week_Ending_Date": "2025-12-06",
1889
+ "Data_Collection_Period": "1 Year",
1890
+ "State/Territory_WVAL": "5.88",
1891
+ "National_WVAL": "1.29",
1892
+ "Regional_WVAL": "2.86",
1893
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1894
+ "activity_level": "3",
1895
+ "WVAL_Category": "Moderate",
1896
+ "Coverage": null,
1897
+ "date_updated": "2026-01-01T08:09:17.471Z"
1898
+ },
1899
+ {
1900
+ "State/Territory": "Alabama",
1901
+ "Week_Ending_Date": "2024-05-18",
1902
+ "Data_Collection_Period": "All Results",
1903
+ "State/Territory_WVAL": "1.0",
1904
+ "National_WVAL": "1.0",
1905
+ "Regional_WVAL": "1.0",
1906
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1907
+ "activity_level": "1",
1908
+ "WVAL_Category": "Very Low",
1909
+ "Coverage": null,
1910
+ "date_updated": "2026-01-01T08:09:17.471Z"
1911
+ },
1912
+ {
1913
+ "State/Territory": "Alabama",
1914
+ "Week_Ending_Date": "2025-09-13",
1915
+ "Data_Collection_Period": "1 Year",
1916
+ "State/Territory_WVAL": "1.0",
1917
+ "National_WVAL": "1.0",
1918
+ "Regional_WVAL": "1.0",
1919
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1920
+ "activity_level": "1",
1921
+ "WVAL_Category": "Very Low",
1922
+ "Coverage": null,
1923
+ "date_updated": "2026-01-01T08:09:17.471Z"
1924
+ },
1925
+ {
1926
+ "State/Territory": "Alabama",
1927
+ "Week_Ending_Date": "2025-05-17",
1928
+ "Data_Collection_Period": "All Results",
1929
+ "State/Territory_WVAL": "1.0",
1930
+ "National_WVAL": "1.0",
1931
+ "Regional_WVAL": "1.0",
1932
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1933
+ "activity_level": "1",
1934
+ "WVAL_Category": "Very Low",
1935
+ "Coverage": null,
1936
+ "date_updated": "2026-01-01T08:09:17.471Z"
1937
+ },
1938
+ {
1939
+ "State/Territory": "Alabama",
1940
+ "Week_Ending_Date": "2022-10-29",
1941
+ "Data_Collection_Period": "All Results",
1942
+ "State/Territory_WVAL": "6.04",
1943
+ "National_WVAL": "7.09",
1944
+ "Regional_WVAL": "6.54",
1945
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1946
+ "activity_level": "3",
1947
+ "WVAL_Category": "Moderate",
1948
+ "Coverage": null,
1949
+ "date_updated": "2026-01-01T08:09:17.471Z"
1950
+ },
1951
+ {
1952
+ "State/Territory": "Alabama",
1953
+ "Week_Ending_Date": "2025-10-04",
1954
+ "Data_Collection_Period": "All Results",
1955
+ "State/Territory_WVAL": "1.0",
1956
+ "National_WVAL": "1.0",
1957
+ "Regional_WVAL": "1.0",
1958
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1959
+ "activity_level": "1",
1960
+ "WVAL_Category": "Very Low",
1961
+ "Coverage": null,
1962
+ "date_updated": "2026-01-01T08:09:17.471Z"
1963
+ },
1964
+ {
1965
+ "State/Territory": "Alabama",
1966
+ "Week_Ending_Date": "2024-05-11",
1967
+ "Data_Collection_Period": "All Results",
1968
+ "State/Territory_WVAL": "1.0",
1969
+ "National_WVAL": "1.0",
1970
+ "Regional_WVAL": "1.0",
1971
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1972
+ "activity_level": "1",
1973
+ "WVAL_Category": "Very Low",
1974
+ "Coverage": null,
1975
+ "date_updated": "2026-01-01T08:09:17.471Z"
1976
+ },
1977
+ {
1978
+ "State/Territory": "Alabama",
1979
+ "Week_Ending_Date": "2025-06-21",
1980
+ "Data_Collection_Period": "1 Year",
1981
+ "State/Territory_WVAL": "1.0",
1982
+ "National_WVAL": "1.0",
1983
+ "Regional_WVAL": "1.0",
1984
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1985
+ "activity_level": "1",
1986
+ "WVAL_Category": "Very Low",
1987
+ "Coverage": null,
1988
+ "date_updated": "2026-01-01T08:09:17.471Z"
1989
+ },
1990
+ {
1991
+ "State/Territory": "Alabama",
1992
+ "Week_Ending_Date": "2025-11-15",
1993
+ "Data_Collection_Period": "All Results",
1994
+ "State/Territory_WVAL": "1.25",
1995
+ "National_WVAL": "1.0",
1996
+ "Regional_WVAL": "1.0",
1997
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
1998
+ "activity_level": "1",
1999
+ "WVAL_Category": "Very Low",
2000
+ "Coverage": null,
2001
+ "date_updated": "2026-01-01T08:09:17.471Z"
2002
+ },
2003
+ {
2004
+ "State/Territory": "Alabama",
2005
+ "Week_Ending_Date": "2025-01-11",
2006
+ "Data_Collection_Period": "All Results",
2007
+ "State/Territory_WVAL": "9.26",
2008
+ "National_WVAL": "10.29",
2009
+ "Regional_WVAL": "11.9",
2010
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2011
+ "activity_level": "4",
2012
+ "WVAL_Category": "High",
2013
+ "Coverage": null,
2014
+ "date_updated": "2026-01-01T08:09:17.471Z"
2015
+ },
2016
+ {
2017
+ "State/Territory": "Alabama",
2018
+ "Week_Ending_Date": "2025-07-05",
2019
+ "Data_Collection_Period": "All Results",
2020
+ "State/Territory_WVAL": "1.0",
2021
+ "National_WVAL": "1.0",
2022
+ "Regional_WVAL": "1.0",
2023
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2024
+ "activity_level": "1",
2025
+ "WVAL_Category": "Very Low",
2026
+ "Coverage": null,
2027
+ "date_updated": "2026-01-01T08:09:17.471Z"
2028
+ },
2029
+ {
2030
+ "State/Territory": "Alabama",
2031
+ "Week_Ending_Date": "2025-10-18",
2032
+ "Data_Collection_Period": "6 Months",
2033
+ "State/Territory_WVAL": "1.0",
2034
+ "National_WVAL": "1.0",
2035
+ "Regional_WVAL": "1.0",
2036
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2037
+ "activity_level": "1",
2038
+ "WVAL_Category": "Very Low",
2039
+ "Coverage": null,
2040
+ "date_updated": "2026-01-01T08:09:17.471Z"
2041
+ },
2042
+ {
2043
+ "State/Territory": "Alabama",
2044
+ "Week_Ending_Date": "2024-06-15",
2045
+ "Data_Collection_Period": "All Results",
2046
+ "State/Territory_WVAL": "1.0",
2047
+ "National_WVAL": "1.0",
2048
+ "Regional_WVAL": "1.0",
2049
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2050
+ "activity_level": "1",
2051
+ "WVAL_Category": "Very Low",
2052
+ "Coverage": null,
2053
+ "date_updated": "2026-01-01T08:09:17.471Z"
2054
+ },
2055
+ {
2056
+ "State/Territory": "Alabama",
2057
+ "Week_Ending_Date": "2024-04-20",
2058
+ "Data_Collection_Period": "All Results",
2059
+ "State/Territory_WVAL": "1.0",
2060
+ "National_WVAL": "1.01",
2061
+ "Regional_WVAL": "1.0",
2062
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2063
+ "activity_level": "1",
2064
+ "WVAL_Category": "Very Low",
2065
+ "Coverage": null,
2066
+ "date_updated": "2026-01-01T08:09:17.471Z"
2067
+ },
2068
+ {
2069
+ "State/Territory": "Alabama",
2070
+ "Week_Ending_Date": "2024-04-27",
2071
+ "Data_Collection_Period": "All Results",
2072
+ "State/Territory_WVAL": "1.0",
2073
+ "National_WVAL": "1.0",
2074
+ "Regional_WVAL": "1.0",
2075
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2076
+ "activity_level": "1",
2077
+ "WVAL_Category": "Very Low",
2078
+ "Coverage": null,
2079
+ "date_updated": "2026-01-01T08:09:17.471Z"
2080
+ },
2081
+ {
2082
+ "State/Territory": "Alabama",
2083
+ "Week_Ending_Date": "2024-12-28",
2084
+ "Data_Collection_Period": "All Results",
2085
+ "State/Territory_WVAL": "10.22",
2086
+ "National_WVAL": "7.06",
2087
+ "Regional_WVAL": "11.43",
2088
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2089
+ "activity_level": "4",
2090
+ "WVAL_Category": "High",
2091
+ "Coverage": null,
2092
+ "date_updated": "2026-01-01T08:09:17.471Z"
2093
+ },
2094
+ {
2095
+ "State/Territory": "Alabama",
2096
+ "Week_Ending_Date": "2023-02-04",
2097
+ "Data_Collection_Period": "All Results",
2098
+ "State/Territory_WVAL": "2.19",
2099
+ "National_WVAL": "4.57",
2100
+ "Regional_WVAL": "2.04",
2101
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2102
+ "activity_level": "1",
2103
+ "WVAL_Category": "Very Low",
2104
+ "Coverage": null,
2105
+ "date_updated": "2026-01-01T08:09:17.471Z"
2106
+ },
2107
+ {
2108
+ "State/Territory": "Alabama",
2109
+ "Week_Ending_Date": "2025-07-19",
2110
+ "Data_Collection_Period": "6 Months",
2111
+ "State/Territory_WVAL": "1.0",
2112
+ "National_WVAL": "1.0",
2113
+ "Regional_WVAL": "1.0",
2114
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2115
+ "activity_level": "1",
2116
+ "WVAL_Category": "Very Low",
2117
+ "Coverage": null,
2118
+ "date_updated": "2026-01-01T08:09:17.471Z"
2119
+ },
2120
+ {
2121
+ "State/Territory": "Alabama",
2122
+ "Week_Ending_Date": "2024-06-29",
2123
+ "Data_Collection_Period": "All Results",
2124
+ "State/Territory_WVAL": "1.0",
2125
+ "National_WVAL": "1.0",
2126
+ "Regional_WVAL": "1.0",
2127
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2128
+ "activity_level": "1",
2129
+ "WVAL_Category": "Very Low",
2130
+ "Coverage": null,
2131
+ "date_updated": "2026-01-01T08:09:17.471Z"
2132
+ },
2133
+ {
2134
+ "State/Territory": "Alabama",
2135
+ "Week_Ending_Date": "2025-03-22",
2136
+ "Data_Collection_Period": "All Results",
2137
+ "State/Territory_WVAL": "1.0",
2138
+ "National_WVAL": "2.95",
2139
+ "Regional_WVAL": "1.38",
2140
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2141
+ "activity_level": "1",
2142
+ "WVAL_Category": "Very Low",
2143
+ "Coverage": null,
2144
+ "date_updated": "2026-01-01T08:09:17.471Z"
2145
+ },
2146
+ {
2147
+ "State/Territory": "Alabama",
2148
+ "Week_Ending_Date": "2025-08-23",
2149
+ "Data_Collection_Period": "1 Year",
2150
+ "State/Territory_WVAL": "1.0",
2151
+ "National_WVAL": "1.0",
2152
+ "Regional_WVAL": "1.0",
2153
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2154
+ "activity_level": "1",
2155
+ "WVAL_Category": "Very Low",
2156
+ "Coverage": null,
2157
+ "date_updated": "2026-01-01T08:09:17.471Z"
2158
+ },
2159
+ {
2160
+ "State/Territory": "Alabama",
2161
+ "Week_Ending_Date": "2024-12-28",
2162
+ "Data_Collection_Period": "1 Year",
2163
+ "State/Territory_WVAL": "10.22",
2164
+ "National_WVAL": "7.06",
2165
+ "Regional_WVAL": "11.43",
2166
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2167
+ "activity_level": "4",
2168
+ "WVAL_Category": "High",
2169
+ "Coverage": null,
2170
+ "date_updated": "2026-01-01T08:09:17.471Z"
2171
+ },
2172
+ {
2173
+ "State/Territory": "Alabama",
2174
+ "Week_Ending_Date": "2024-07-06",
2175
+ "Data_Collection_Period": "All Results",
2176
+ "State/Territory_WVAL": "1.0",
2177
+ "National_WVAL": "1.0",
2178
+ "Regional_WVAL": "1.0",
2179
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2180
+ "activity_level": "1",
2181
+ "WVAL_Category": "Very Low",
2182
+ "Coverage": null,
2183
+ "date_updated": "2026-01-01T08:09:17.471Z"
2184
+ },
2185
+ {
2186
+ "State/Territory": "Alabama",
2187
+ "Week_Ending_Date": "2025-05-03",
2188
+ "Data_Collection_Period": "All Results",
2189
+ "State/Territory_WVAL": "1.0",
2190
+ "National_WVAL": "1.0",
2191
+ "Regional_WVAL": "1.0",
2192
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2193
+ "activity_level": "1",
2194
+ "WVAL_Category": "Very Low",
2195
+ "Coverage": null,
2196
+ "date_updated": "2026-01-01T08:09:17.471Z"
2197
+ },
2198
+ {
2199
+ "State/Territory": "Alabama",
2200
+ "Week_Ending_Date": "2023-04-08",
2201
+ "Data_Collection_Period": "All Results",
2202
+ "State/Territory_WVAL": "1.0",
2203
+ "National_WVAL": "1.38",
2204
+ "Regional_WVAL": "1.26",
2205
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2206
+ "activity_level": "1",
2207
+ "WVAL_Category": "Very Low",
2208
+ "Coverage": null,
2209
+ "date_updated": "2026-01-01T08:09:17.471Z"
2210
+ },
2211
+ {
2212
+ "State/Territory": "Alabama",
2213
+ "Week_Ending_Date": "2023-12-23",
2214
+ "Data_Collection_Period": "All Results",
2215
+ "State/Territory_WVAL": "14.49",
2216
+ "National_WVAL": "9.32",
2217
+ "Regional_WVAL": "9.78",
2218
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2219
+ "activity_level": "5",
2220
+ "WVAL_Category": "Very High",
2221
+ "Coverage": null,
2222
+ "date_updated": "2026-01-01T08:09:17.471Z"
2223
+ },
2224
+ {
2225
+ "State/Territory": "Alabama",
2226
+ "Week_Ending_Date": "2025-04-19",
2227
+ "Data_Collection_Period": "1 Year",
2228
+ "State/Territory_WVAL": "1.0",
2229
+ "National_WVAL": "1.42",
2230
+ "Regional_WVAL": "1.0",
2231
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2232
+ "activity_level": "1",
2233
+ "WVAL_Category": "Very Low",
2234
+ "Coverage": null,
2235
+ "date_updated": "2026-01-01T08:09:17.471Z"
2236
+ },
2237
+ {
2238
+ "State/Territory": "Alabama",
2239
+ "Week_Ending_Date": "2025-07-12",
2240
+ "Data_Collection_Period": "1 Year",
2241
+ "State/Territory_WVAL": "1.0",
2242
+ "National_WVAL": "1.0",
2243
+ "Regional_WVAL": "1.0",
2244
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2245
+ "activity_level": "1",
2246
+ "WVAL_Category": "Very Low",
2247
+ "Coverage": null,
2248
+ "date_updated": "2026-01-01T08:09:17.471Z"
2249
+ },
2250
+ {
2251
+ "State/Territory": "Alabama",
2252
+ "Week_Ending_Date": "2025-09-27",
2253
+ "Data_Collection_Period": "All Results",
2254
+ "State/Territory_WVAL": "1.0",
2255
+ "National_WVAL": "1.0",
2256
+ "Regional_WVAL": "1.0",
2257
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2258
+ "activity_level": "1",
2259
+ "WVAL_Category": "Very Low",
2260
+ "Coverage": null,
2261
+ "date_updated": "2026-01-01T08:09:17.471Z"
2262
+ },
2263
+ {
2264
+ "State/Territory": "Alabama",
2265
+ "Week_Ending_Date": "2025-03-29",
2266
+ "Data_Collection_Period": "All Results",
2267
+ "State/Territory_WVAL": "1.41",
2268
+ "National_WVAL": "3.74",
2269
+ "Regional_WVAL": "1.6",
2270
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2271
+ "activity_level": "1",
2272
+ "WVAL_Category": "Very Low",
2273
+ "Coverage": null,
2274
+ "date_updated": "2026-01-01T08:09:17.471Z"
2275
+ },
2276
+ {
2277
+ "State/Territory": "Alabama",
2278
+ "Week_Ending_Date": "2025-07-12",
2279
+ "Data_Collection_Period": "6 Months",
2280
+ "State/Territory_WVAL": "1.0",
2281
+ "National_WVAL": "1.0",
2282
+ "Regional_WVAL": "1.0",
2283
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2284
+ "activity_level": "1",
2285
+ "WVAL_Category": "Very Low",
2286
+ "Coverage": null,
2287
+ "date_updated": "2026-01-01T08:09:17.471Z"
2288
+ },
2289
+ {
2290
+ "State/Territory": "Alabama",
2291
+ "Week_Ending_Date": "2025-06-28",
2292
+ "Data_Collection_Period": "All Results",
2293
+ "State/Territory_WVAL": "1.0",
2294
+ "National_WVAL": "1.0",
2295
+ "Regional_WVAL": "1.0",
2296
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2297
+ "activity_level": "1",
2298
+ "WVAL_Category": "Very Low",
2299
+ "Coverage": null,
2300
+ "date_updated": "2026-01-01T08:09:17.471Z"
2301
+ },
2302
+ {
2303
+ "State/Territory": "Alabama",
2304
+ "Week_Ending_Date": "2025-02-22",
2305
+ "Data_Collection_Period": "1 Year",
2306
+ "State/Territory_WVAL": "2.85",
2307
+ "National_WVAL": "8.38",
2308
+ "Regional_WVAL": "4.81",
2309
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2310
+ "activity_level": "2",
2311
+ "WVAL_Category": "Low",
2312
+ "Coverage": null,
2313
+ "date_updated": "2026-01-01T08:09:17.471Z"
2314
+ },
2315
+ {
2316
+ "State/Territory": "Alabama",
2317
+ "Week_Ending_Date": "2023-05-27",
2318
+ "Data_Collection_Period": "All Results",
2319
+ "State/Territory_WVAL": "1.0",
2320
+ "National_WVAL": "1.0",
2321
+ "Regional_WVAL": "1.0",
2322
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2323
+ "activity_level": "1",
2324
+ "WVAL_Category": "Very Low",
2325
+ "Coverage": null,
2326
+ "date_updated": "2026-01-01T08:09:17.471Z"
2327
+ },
2328
+ {
2329
+ "State/Territory": "Alabama",
2330
+ "Week_Ending_Date": "2025-02-15",
2331
+ "Data_Collection_Period": "All Results",
2332
+ "State/Territory_WVAL": "4.05",
2333
+ "National_WVAL": "8.84",
2334
+ "Regional_WVAL": "5.19",
2335
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2336
+ "activity_level": "2",
2337
+ "WVAL_Category": "Low",
2338
+ "Coverage": null,
2339
+ "date_updated": "2026-01-01T08:09:17.471Z"
2340
+ },
2341
+ {
2342
+ "State/Territory": "Alabama",
2343
+ "Week_Ending_Date": "2025-09-20",
2344
+ "Data_Collection_Period": "All Results",
2345
+ "State/Territory_WVAL": "1.0",
2346
+ "National_WVAL": "1.0",
2347
+ "Regional_WVAL": "1.0",
2348
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2349
+ "activity_level": "1",
2350
+ "WVAL_Category": "Very Low",
2351
+ "Coverage": null,
2352
+ "date_updated": "2026-01-01T08:09:17.471Z"
2353
+ },
2354
+ {
2355
+ "State/Territory": "Alabama",
2356
+ "Week_Ending_Date": "2023-12-02",
2357
+ "Data_Collection_Period": "All Results",
2358
+ "State/Territory_WVAL": "12.52",
2359
+ "National_WVAL": "7.94",
2360
+ "Regional_WVAL": "11.21",
2361
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2362
+ "activity_level": "5",
2363
+ "WVAL_Category": "Very High",
2364
+ "Coverage": null,
2365
+ "date_updated": "2026-01-01T08:09:17.471Z"
2366
+ },
2367
+ {
2368
+ "State/Territory": "Alabama",
2369
+ "Week_Ending_Date": "2023-07-29",
2370
+ "Data_Collection_Period": "All Results",
2371
+ "State/Territory_WVAL": "1.0",
2372
+ "National_WVAL": "1.0",
2373
+ "Regional_WVAL": "1.0",
2374
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2375
+ "activity_level": "1",
2376
+ "WVAL_Category": "Very Low",
2377
+ "Coverage": null,
2378
+ "date_updated": "2026-01-01T08:09:17.471Z"
2379
+ },
2380
+ {
2381
+ "State/Territory": "Alabama",
2382
+ "Week_Ending_Date": "2022-08-20",
2383
+ "Data_Collection_Period": "All Results",
2384
+ "State/Territory_WVAL": "5.82",
2385
+ "National_WVAL": "2.4",
2386
+ "Regional_WVAL": "2.38",
2387
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2388
+ "activity_level": "3",
2389
+ "WVAL_Category": "Moderate",
2390
+ "Coverage": null,
2391
+ "date_updated": "2026-01-01T08:09:17.471Z"
2392
+ },
2393
+ {
2394
+ "State/Territory": "Alabama",
2395
+ "Week_Ending_Date": "2022-10-01",
2396
+ "Data_Collection_Period": "All Results",
2397
+ "State/Territory_WVAL": "3.59",
2398
+ "National_WVAL": "3.59",
2399
+ "Regional_WVAL": "6.71",
2400
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2401
+ "activity_level": "2",
2402
+ "WVAL_Category": "Low",
2403
+ "Coverage": null,
2404
+ "date_updated": "2026-01-01T08:09:17.471Z"
2405
+ },
2406
+ {
2407
+ "State/Territory": "Alabama",
2408
+ "Week_Ending_Date": "2025-09-06",
2409
+ "Data_Collection_Period": "6 Months",
2410
+ "State/Territory_WVAL": "1.0",
2411
+ "National_WVAL": "1.0",
2412
+ "Regional_WVAL": "1.0",
2413
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2414
+ "activity_level": "1",
2415
+ "WVAL_Category": "Very Low",
2416
+ "Coverage": null,
2417
+ "date_updated": "2026-01-01T08:09:17.471Z"
2418
+ },
2419
+ {
2420
+ "State/Territory": "Alabama",
2421
+ "Week_Ending_Date": "2025-11-29",
2422
+ "Data_Collection_Period": "6 Months",
2423
+ "State/Territory_WVAL": "1.0",
2424
+ "National_WVAL": "1.0",
2425
+ "Regional_WVAL": "1.0",
2426
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2427
+ "activity_level": "1",
2428
+ "WVAL_Category": "Very Low",
2429
+ "Coverage": null,
2430
+ "date_updated": "2026-01-01T08:09:17.471Z"
2431
+ },
2432
+ {
2433
+ "State/Territory": "Alabama",
2434
+ "Week_Ending_Date": "2025-11-01",
2435
+ "Data_Collection_Period": "All Results",
2436
+ "State/Territory_WVAL": "1.0",
2437
+ "National_WVAL": "1.0",
2438
+ "Regional_WVAL": "1.0",
2439
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2440
+ "activity_level": "1",
2441
+ "WVAL_Category": "Very Low",
2442
+ "Coverage": null,
2443
+ "date_updated": "2026-01-01T08:09:17.471Z"
2444
+ },
2445
+ {
2446
+ "State/Territory": "Alabama",
2447
+ "Week_Ending_Date": "2025-11-29",
2448
+ "Data_Collection_Period": "1 Year",
2449
+ "State/Territory_WVAL": "1.0",
2450
+ "National_WVAL": "1.0",
2451
+ "Regional_WVAL": "1.0",
2452
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2453
+ "activity_level": "1",
2454
+ "WVAL_Category": "Very Low",
2455
+ "Coverage": null,
2456
+ "date_updated": "2026-01-01T08:09:17.471Z"
2457
+ },
2458
+ {
2459
+ "State/Territory": "Alabama",
2460
+ "Week_Ending_Date": "2025-11-29",
2461
+ "Data_Collection_Period": "45 Days",
2462
+ "State/Territory_WVAL": "1.0",
2463
+ "National_WVAL": "1.0",
2464
+ "Regional_WVAL": "1.0",
2465
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2466
+ "activity_level": "1",
2467
+ "WVAL_Category": "Very Low",
2468
+ "Coverage": null,
2469
+ "date_updated": "2026-01-01T08:09:17.471Z"
2470
+ },
2471
+ {
2472
+ "State/Territory": "Alabama",
2473
+ "Week_Ending_Date": "2023-01-21",
2474
+ "Data_Collection_Period": "All Results",
2475
+ "State/Territory_WVAL": "3.93",
2476
+ "National_WVAL": "5.54",
2477
+ "Regional_WVAL": "3.63",
2478
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2479
+ "activity_level": "2",
2480
+ "WVAL_Category": "Low",
2481
+ "Coverage": null,
2482
+ "date_updated": "2026-01-01T08:09:17.471Z"
2483
+ },
2484
+ {
2485
+ "State/Territory": "Alabama",
2486
+ "Week_Ending_Date": "2024-10-26",
2487
+ "Data_Collection_Period": "All Results",
2488
+ "State/Territory_WVAL": "1.95",
2489
+ "National_WVAL": "1.0",
2490
+ "Regional_WVAL": "1.0",
2491
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2492
+ "activity_level": "1",
2493
+ "WVAL_Category": "Very Low",
2494
+ "Coverage": null,
2495
+ "date_updated": "2026-01-01T08:09:17.471Z"
2496
+ },
2497
+ {
2498
+ "State/Territory": "Alabama",
2499
+ "Week_Ending_Date": "2024-02-03",
2500
+ "Data_Collection_Period": "All Results",
2501
+ "State/Territory_WVAL": "5.59",
2502
+ "National_WVAL": "5.19",
2503
+ "Regional_WVAL": "3.78",
2504
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2505
+ "activity_level": "3",
2506
+ "WVAL_Category": "Moderate",
2507
+ "Coverage": null,
2508
+ "date_updated": "2026-01-01T08:09:17.471Z"
2509
+ },
2510
+ {
2511
+ "State/Territory": "Alabama",
2512
+ "Week_Ending_Date": "2023-09-23",
2513
+ "Data_Collection_Period": "All Results",
2514
+ "State/Territory_WVAL": "1.0",
2515
+ "National_WVAL": "1.29",
2516
+ "Regional_WVAL": "1.0",
2517
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2518
+ "activity_level": "1",
2519
+ "WVAL_Category": "Very Low",
2520
+ "Coverage": null,
2521
+ "date_updated": "2026-01-01T08:09:17.471Z"
2522
+ },
2523
+ {
2524
+ "State/Territory": "Alabama",
2525
+ "Week_Ending_Date": "2025-11-15",
2526
+ "Data_Collection_Period": "1 Year",
2527
+ "State/Territory_WVAL": "1.25",
2528
+ "National_WVAL": "1.0",
2529
+ "Regional_WVAL": "1.0",
2530
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2531
+ "activity_level": "1",
2532
+ "WVAL_Category": "Very Low",
2533
+ "Coverage": null,
2534
+ "date_updated": "2026-01-01T08:09:17.471Z"
2535
+ },
2536
+ {
2537
+ "State/Territory": "Alabama",
2538
+ "Week_Ending_Date": "2023-11-04",
2539
+ "Data_Collection_Period": "All Results",
2540
+ "State/Territory_WVAL": "6.4",
2541
+ "National_WVAL": "2.71",
2542
+ "Regional_WVAL": "5.65",
2543
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2544
+ "activity_level": "3",
2545
+ "WVAL_Category": "Moderate",
2546
+ "Coverage": null,
2547
+ "date_updated": "2026-01-01T08:09:17.471Z"
2548
+ },
2549
+ {
2550
+ "State/Territory": "Alabama",
2551
+ "Week_Ending_Date": "2025-03-22",
2552
+ "Data_Collection_Period": "1 Year",
2553
+ "State/Territory_WVAL": "1.0",
2554
+ "National_WVAL": "2.95",
2555
+ "Regional_WVAL": "1.38",
2556
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2557
+ "activity_level": "1",
2558
+ "WVAL_Category": "Very Low",
2559
+ "Coverage": null,
2560
+ "date_updated": "2026-01-01T08:09:17.471Z"
2561
+ },
2562
+ {
2563
+ "State/Territory": "Alabama",
2564
+ "Week_Ending_Date": "2024-05-04",
2565
+ "Data_Collection_Period": "All Results",
2566
+ "State/Territory_WVAL": "1.0",
2567
+ "National_WVAL": "1.0",
2568
+ "Regional_WVAL": "1.0",
2569
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2570
+ "activity_level": "1",
2571
+ "WVAL_Category": "Very Low",
2572
+ "Coverage": null,
2573
+ "date_updated": "2026-01-01T08:09:17.471Z"
2574
+ },
2575
+ {
2576
+ "State/Territory": "Alabama",
2577
+ "Week_Ending_Date": "2024-11-23",
2578
+ "Data_Collection_Period": "All Results",
2579
+ "State/Territory_WVAL": "5.16",
2580
+ "National_WVAL": "1.65",
2581
+ "Regional_WVAL": "3.62",
2582
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2583
+ "activity_level": "2",
2584
+ "WVAL_Category": "Low",
2585
+ "Coverage": null,
2586
+ "date_updated": "2026-01-01T08:09:17.471Z"
2587
+ },
2588
+ {
2589
+ "State/Territory": "Alabama",
2590
+ "Week_Ending_Date": "2023-04-15",
2591
+ "Data_Collection_Period": "All Results",
2592
+ "State/Territory_WVAL": "1.0",
2593
+ "National_WVAL": "1.13",
2594
+ "Regional_WVAL": "1.0",
2595
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2596
+ "activity_level": "1",
2597
+ "WVAL_Category": "Very Low",
2598
+ "Coverage": null,
2599
+ "date_updated": "2026-01-01T08:09:17.471Z"
2600
+ },
2601
+ {
2602
+ "State/Territory": "Alabama",
2603
+ "Week_Ending_Date": "2023-11-18",
2604
+ "Data_Collection_Period": "All Results",
2605
+ "State/Territory_WVAL": "7.93",
2606
+ "National_WVAL": "5.45",
2607
+ "Regional_WVAL": "7.93",
2608
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2609
+ "activity_level": "3",
2610
+ "WVAL_Category": "Moderate",
2611
+ "Coverage": null,
2612
+ "date_updated": "2026-01-01T08:09:17.471Z"
2613
+ },
2614
+ {
2615
+ "State/Territory": "Alabama",
2616
+ "Week_Ending_Date": "2024-01-06",
2617
+ "Data_Collection_Period": "All Results",
2618
+ "State/Territory_WVAL": "9.81",
2619
+ "National_WVAL": "12.47",
2620
+ "Regional_WVAL": "11.75",
2621
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2622
+ "activity_level": "4",
2623
+ "WVAL_Category": "High",
2624
+ "Coverage": null,
2625
+ "date_updated": "2026-01-01T08:09:17.471Z"
2626
+ },
2627
+ {
2628
+ "State/Territory": "Alabama",
2629
+ "Week_Ending_Date": "2025-06-14",
2630
+ "Data_Collection_Period": "All Results",
2631
+ "State/Territory_WVAL": "1.0",
2632
+ "National_WVAL": "1.0",
2633
+ "Regional_WVAL": "1.0",
2634
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2635
+ "activity_level": "1",
2636
+ "WVAL_Category": "Very Low",
2637
+ "Coverage": null,
2638
+ "date_updated": "2026-01-01T08:09:17.471Z"
2639
+ },
2640
+ {
2641
+ "State/Territory": "Alabama",
2642
+ "Week_Ending_Date": "2024-08-24",
2643
+ "Data_Collection_Period": "All Results",
2644
+ "State/Territory_WVAL": "1.0",
2645
+ "National_WVAL": "1.0",
2646
+ "Regional_WVAL": "1.0",
2647
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2648
+ "activity_level": "1",
2649
+ "WVAL_Category": "Very Low",
2650
+ "Coverage": null,
2651
+ "date_updated": "2026-01-01T08:09:17.471Z"
2652
+ },
2653
+ {
2654
+ "State/Territory": "Alabama",
2655
+ "Week_Ending_Date": "2025-10-11",
2656
+ "Data_Collection_Period": "All Results",
2657
+ "State/Territory_WVAL": "1.0",
2658
+ "National_WVAL": "1.0",
2659
+ "Regional_WVAL": "1.0",
2660
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2661
+ "activity_level": "1",
2662
+ "WVAL_Category": "Very Low",
2663
+ "Coverage": null,
2664
+ "date_updated": "2026-01-01T08:09:17.471Z"
2665
+ },
2666
+ {
2667
+ "State/Territory": "Alabama",
2668
+ "Week_Ending_Date": "2025-01-18",
2669
+ "Data_Collection_Period": "1 Year",
2670
+ "State/Territory_WVAL": "7.32",
2671
+ "National_WVAL": "10.17",
2672
+ "Regional_WVAL": "10.31",
2673
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2674
+ "activity_level": "3",
2675
+ "WVAL_Category": "Moderate",
2676
+ "Coverage": null,
2677
+ "date_updated": "2026-01-01T08:09:17.471Z"
2678
+ },
2679
+ {
2680
+ "State/Territory": "Alabama",
2681
+ "Week_Ending_Date": "2024-07-13",
2682
+ "Data_Collection_Period": "All Results",
2683
+ "State/Territory_WVAL": "1.0",
2684
+ "National_WVAL": "1.0",
2685
+ "Regional_WVAL": "1.0",
2686
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2687
+ "activity_level": "1",
2688
+ "WVAL_Category": "Very Low",
2689
+ "Coverage": null,
2690
+ "date_updated": "2026-01-01T08:09:17.471Z"
2691
+ },
2692
+ {
2693
+ "State/Territory": "Alabama",
2694
+ "Week_Ending_Date": "2025-07-26",
2695
+ "Data_Collection_Period": "1 Year",
2696
+ "State/Territory_WVAL": "1.0",
2697
+ "National_WVAL": "1.0",
2698
+ "Regional_WVAL": "1.0",
2699
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2700
+ "activity_level": "1",
2701
+ "WVAL_Category": "Very Low",
2702
+ "Coverage": null,
2703
+ "date_updated": "2026-01-01T08:09:17.471Z"
2704
+ },
2705
+ {
2706
+ "State/Territory": "Alabama",
2707
+ "Week_Ending_Date": "2025-04-05",
2708
+ "Data_Collection_Period": "All Results",
2709
+ "State/Territory_WVAL": "1.0",
2710
+ "National_WVAL": "2.95",
2711
+ "Regional_WVAL": "1.0",
2712
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2713
+ "activity_level": "1",
2714
+ "WVAL_Category": "Very Low",
2715
+ "Coverage": null,
2716
+ "date_updated": "2026-01-01T08:09:17.471Z"
2717
+ },
2718
+ {
2719
+ "State/Territory": "Alabama",
2720
+ "Week_Ending_Date": "2025-10-04",
2721
+ "Data_Collection_Period": "1 Year",
2722
+ "State/Territory_WVAL": "1.0",
2723
+ "National_WVAL": "1.0",
2724
+ "Regional_WVAL": "1.0",
2725
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2726
+ "activity_level": "1",
2727
+ "WVAL_Category": "Very Low",
2728
+ "Coverage": null,
2729
+ "date_updated": "2026-01-01T08:09:17.471Z"
2730
+ },
2731
+ {
2732
+ "State/Territory": "Alabama",
2733
+ "Week_Ending_Date": "2025-01-04",
2734
+ "Data_Collection_Period": "1 Year",
2735
+ "State/Territory_WVAL": "8.2",
2736
+ "National_WVAL": "11.4",
2737
+ "Regional_WVAL": "13.27",
2738
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2739
+ "activity_level": "4",
2740
+ "WVAL_Category": "High",
2741
+ "Coverage": null,
2742
+ "date_updated": "2026-01-01T08:09:17.471Z"
2743
+ },
2744
+ {
2745
+ "State/Territory": "Alabama",
2746
+ "Week_Ending_Date": "2023-04-22",
2747
+ "Data_Collection_Period": "All Results",
2748
+ "State/Territory_WVAL": "1.0",
2749
+ "National_WVAL": "1.0",
2750
+ "Regional_WVAL": "1.0",
2751
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2752
+ "activity_level": "1",
2753
+ "WVAL_Category": "Very Low",
2754
+ "Coverage": null,
2755
+ "date_updated": "2026-01-01T08:09:17.471Z"
2756
+ },
2757
+ {
2758
+ "State/Territory": "Alabama",
2759
+ "Week_Ending_Date": "2023-01-28",
2760
+ "Data_Collection_Period": "All Results",
2761
+ "State/Territory_WVAL": "2.31",
2762
+ "National_WVAL": "5.11",
2763
+ "Regional_WVAL": "3.73",
2764
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2765
+ "activity_level": "1",
2766
+ "WVAL_Category": "Very Low",
2767
+ "Coverage": null,
2768
+ "date_updated": "2026-01-01T08:09:17.471Z"
2769
+ },
2770
+ {
2771
+ "State/Territory": "Alabama",
2772
+ "Week_Ending_Date": "2024-07-27",
2773
+ "Data_Collection_Period": "All Results",
2774
+ "State/Territory_WVAL": "1.0",
2775
+ "National_WVAL": "1.0",
2776
+ "Regional_WVAL": "1.0",
2777
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2778
+ "activity_level": "1",
2779
+ "WVAL_Category": "Very Low",
2780
+ "Coverage": null,
2781
+ "date_updated": "2026-01-01T08:09:17.471Z"
2782
+ },
2783
+ {
2784
+ "State/Territory": "Alabama",
2785
+ "Week_Ending_Date": "2025-06-14",
2786
+ "Data_Collection_Period": "1 Year",
2787
+ "State/Territory_WVAL": "1.0",
2788
+ "National_WVAL": "1.0",
2789
+ "Regional_WVAL": "1.0",
2790
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2791
+ "activity_level": "1",
2792
+ "WVAL_Category": "Very Low",
2793
+ "Coverage": null,
2794
+ "date_updated": "2026-01-01T08:09:17.471Z"
2795
+ },
2796
+ {
2797
+ "State/Territory": "Alabama",
2798
+ "Week_Ending_Date": "2025-04-26",
2799
+ "Data_Collection_Period": "1 Year",
2800
+ "State/Territory_WVAL": "1.0",
2801
+ "National_WVAL": "1.0",
2802
+ "Regional_WVAL": "1.0",
2803
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2804
+ "activity_level": "1",
2805
+ "WVAL_Category": "Very Low",
2806
+ "Coverage": null,
2807
+ "date_updated": "2026-01-01T08:09:17.471Z"
2808
+ },
2809
+ {
2810
+ "State/Territory": "Alabama",
2811
+ "Week_Ending_Date": "2022-12-31",
2812
+ "Data_Collection_Period": "All Results",
2813
+ "State/Territory_WVAL": "6.55",
2814
+ "National_WVAL": "8.41",
2815
+ "Regional_WVAL": "7.16",
2816
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2817
+ "activity_level": "3",
2818
+ "WVAL_Category": "Moderate",
2819
+ "Coverage": null,
2820
+ "date_updated": "2026-01-01T08:09:17.471Z"
2821
+ },
2822
+ {
2823
+ "State/Territory": "Alabama",
2824
+ "Week_Ending_Date": "2025-11-01",
2825
+ "Data_Collection_Period": "1 Year",
2826
+ "State/Territory_WVAL": "1.0",
2827
+ "National_WVAL": "1.0",
2828
+ "Regional_WVAL": "1.0",
2829
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2830
+ "activity_level": "1",
2831
+ "WVAL_Category": "Very Low",
2832
+ "Coverage": null,
2833
+ "date_updated": "2026-01-01T08:09:17.471Z"
2834
+ },
2835
+ {
2836
+ "State/Territory": "Alabama",
2837
+ "Week_Ending_Date": "2025-12-20",
2838
+ "Data_Collection_Period": "45 Days",
2839
+ "State/Territory_WVAL": "5.45",
2840
+ "National_WVAL": "1.44",
2841
+ "Regional_WVAL": "4.64",
2842
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2843
+ "activity_level": "3",
2844
+ "WVAL_Category": "Moderate",
2845
+ "Coverage": null,
2846
+ "date_updated": "2026-01-01T08:09:17.471Z"
2847
+ },
2848
+ {
2849
+ "State/Territory": "Alabama",
2850
+ "Week_Ending_Date": "2025-08-09",
2851
+ "Data_Collection_Period": "All Results",
2852
+ "State/Territory_WVAL": "1.0",
2853
+ "National_WVAL": "1.0",
2854
+ "Regional_WVAL": "1.0",
2855
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2856
+ "activity_level": "1",
2857
+ "WVAL_Category": "Very Low",
2858
+ "Coverage": null,
2859
+ "date_updated": "2026-01-01T08:09:17.471Z"
2860
+ },
2861
+ {
2862
+ "State/Territory": "Alabama",
2863
+ "Week_Ending_Date": "2024-12-14",
2864
+ "Data_Collection_Period": "All Results",
2865
+ "State/Territory_WVAL": "10.61",
2866
+ "National_WVAL": "4.33",
2867
+ "Regional_WVAL": "10.4",
2868
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2869
+ "activity_level": "4",
2870
+ "WVAL_Category": "High",
2871
+ "Coverage": null,
2872
+ "date_updated": "2026-01-01T08:09:17.471Z"
2873
+ },
2874
+ {
2875
+ "State/Territory": "Alabama",
2876
+ "Week_Ending_Date": "2022-12-24",
2877
+ "Data_Collection_Period": "All Results",
2878
+ "State/Territory_WVAL": "3.93",
2879
+ "National_WVAL": "9.96",
2880
+ "Regional_WVAL": "6.65",
2881
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2882
+ "activity_level": "2",
2883
+ "WVAL_Category": "Low",
2884
+ "Coverage": null,
2885
+ "date_updated": "2026-01-01T08:09:17.471Z"
2886
+ },
2887
+ {
2888
+ "State/Territory": "Alabama",
2889
+ "Week_Ending_Date": "2025-01-25",
2890
+ "Data_Collection_Period": "1 Year",
2891
+ "State/Territory_WVAL": "7.49",
2892
+ "National_WVAL": "7.52",
2893
+ "Regional_WVAL": "7.49",
2894
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2895
+ "activity_level": "3",
2896
+ "WVAL_Category": "Moderate",
2897
+ "Coverage": null,
2898
+ "date_updated": "2026-01-01T08:09:17.471Z"
2899
+ },
2900
+ {
2901
+ "State/Territory": "Alabama",
2902
+ "Week_Ending_Date": "2023-06-03",
2903
+ "Data_Collection_Period": "All Results",
2904
+ "State/Territory_WVAL": "1.0",
2905
+ "National_WVAL": "1.0",
2906
+ "Regional_WVAL": "1.0",
2907
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2908
+ "activity_level": "1",
2909
+ "WVAL_Category": "Very Low",
2910
+ "Coverage": null,
2911
+ "date_updated": "2026-01-01T08:09:17.471Z"
2912
+ },
2913
+ {
2914
+ "State/Territory": "Alabama",
2915
+ "Week_Ending_Date": "2024-03-16",
2916
+ "Data_Collection_Period": "All Results",
2917
+ "State/Territory_WVAL": "3.42",
2918
+ "National_WVAL": "2.41",
2919
+ "Regional_WVAL": "1.44",
2920
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2921
+ "activity_level": "2",
2922
+ "WVAL_Category": "Low",
2923
+ "Coverage": null,
2924
+ "date_updated": "2026-01-01T08:09:17.471Z"
2925
+ },
2926
+ {
2927
+ "State/Territory": "Alabama",
2928
+ "Week_Ending_Date": "2023-12-30",
2929
+ "Data_Collection_Period": "All Results",
2930
+ "State/Territory_WVAL": "8.94",
2931
+ "National_WVAL": "9.85",
2932
+ "Regional_WVAL": "8.03",
2933
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2934
+ "activity_level": "4",
2935
+ "WVAL_Category": "High",
2936
+ "Coverage": null,
2937
+ "date_updated": "2026-01-01T08:09:17.471Z"
2938
+ },
2939
+ {
2940
+ "State/Territory": "Alabama",
2941
+ "Week_Ending_Date": "2025-04-12",
2942
+ "Data_Collection_Period": "All Results",
2943
+ "State/Territory_WVAL": "1.0",
2944
+ "National_WVAL": "1.48",
2945
+ "Regional_WVAL": "1.0",
2946
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2947
+ "activity_level": "1",
2948
+ "WVAL_Category": "Very Low",
2949
+ "Coverage": null,
2950
+ "date_updated": "2026-01-01T08:09:17.471Z"
2951
+ },
2952
+ {
2953
+ "State/Territory": "Alabama",
2954
+ "Week_Ending_Date": "2025-12-27",
2955
+ "Data_Collection_Period": "1 Year",
2956
+ "State/Territory_WVAL": "8.1",
2957
+ "National_WVAL": "1.97",
2958
+ "Regional_WVAL": "5.41",
2959
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2960
+ "activity_level": "4",
2961
+ "WVAL_Category": "High",
2962
+ "Coverage": null,
2963
+ "date_updated": "2026-01-01T08:09:17.471Z"
2964
+ },
2965
+ {
2966
+ "State/Territory": "Alabama",
2967
+ "Week_Ending_Date": "2025-10-11",
2968
+ "Data_Collection_Period": "1 Year",
2969
+ "State/Territory_WVAL": "1.0",
2970
+ "National_WVAL": "1.0",
2971
+ "Regional_WVAL": "1.0",
2972
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2973
+ "activity_level": "1",
2974
+ "WVAL_Category": "Very Low",
2975
+ "Coverage": null,
2976
+ "date_updated": "2026-01-01T08:09:17.471Z"
2977
+ },
2978
+ {
2979
+ "State/Territory": "Alabama",
2980
+ "Week_Ending_Date": "2025-08-30",
2981
+ "Data_Collection_Period": "All Results",
2982
+ "State/Territory_WVAL": "1.0",
2983
+ "National_WVAL": "1.0",
2984
+ "Regional_WVAL": "1.0",
2985
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2986
+ "activity_level": "1",
2987
+ "WVAL_Category": "Very Low",
2988
+ "Coverage": null,
2989
+ "date_updated": "2026-01-01T08:09:17.471Z"
2990
+ },
2991
+ {
2992
+ "State/Territory": "Alabama",
2993
+ "Week_Ending_Date": "2025-07-26",
2994
+ "Data_Collection_Period": "All Results",
2995
+ "State/Territory_WVAL": "1.0",
2996
+ "National_WVAL": "1.0",
2997
+ "Regional_WVAL": "1.0",
2998
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
2999
+ "activity_level": "1",
3000
+ "WVAL_Category": "Very Low",
3001
+ "Coverage": null,
3002
+ "date_updated": "2026-01-01T08:09:17.471Z"
3003
+ },
3004
+ {
3005
+ "State/Territory": "Alabama",
3006
+ "Week_Ending_Date": "2023-03-25",
3007
+ "Data_Collection_Period": "All Results",
3008
+ "State/Territory_WVAL": "1.25",
3009
+ "National_WVAL": "1.88",
3010
+ "Regional_WVAL": "1.31",
3011
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3012
+ "activity_level": "1",
3013
+ "WVAL_Category": "Very Low",
3014
+ "Coverage": null,
3015
+ "date_updated": "2026-01-01T08:09:17.471Z"
3016
+ },
3017
+ {
3018
+ "State/Territory": "Alabama",
3019
+ "Week_Ending_Date": "2025-09-06",
3020
+ "Data_Collection_Period": "1 Year",
3021
+ "State/Territory_WVAL": "1.0",
3022
+ "National_WVAL": "1.0",
3023
+ "Regional_WVAL": "1.0",
3024
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3025
+ "activity_level": "1",
3026
+ "WVAL_Category": "Very Low",
3027
+ "Coverage": null,
3028
+ "date_updated": "2026-01-01T08:09:17.471Z"
3029
+ },
3030
+ {
3031
+ "State/Territory": "Alabama",
3032
+ "Week_Ending_Date": "2024-09-21",
3033
+ "Data_Collection_Period": "All Results",
3034
+ "State/Territory_WVAL": "1.0",
3035
+ "National_WVAL": "1.0",
3036
+ "Regional_WVAL": "1.0",
3037
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3038
+ "activity_level": "1",
3039
+ "WVAL_Category": "Very Low",
3040
+ "Coverage": null,
3041
+ "date_updated": "2026-01-01T08:09:17.471Z"
3042
+ },
3043
+ {
3044
+ "State/Territory": "Alabama",
3045
+ "Week_Ending_Date": "2025-09-20",
3046
+ "Data_Collection_Period": "1 Year",
3047
+ "State/Territory_WVAL": "1.0",
3048
+ "National_WVAL": "1.0",
3049
+ "Regional_WVAL": "1.0",
3050
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3051
+ "activity_level": "1",
3052
+ "WVAL_Category": "Very Low",
3053
+ "Coverage": null,
3054
+ "date_updated": "2026-01-01T08:09:17.471Z"
3055
+ },
3056
+ {
3057
+ "State/Territory": "Alabama",
3058
+ "Week_Ending_Date": "2025-07-19",
3059
+ "Data_Collection_Period": "1 Year",
3060
+ "State/Territory_WVAL": "1.0",
3061
+ "National_WVAL": "1.0",
3062
+ "Regional_WVAL": "1.0",
3063
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3064
+ "activity_level": "1",
3065
+ "WVAL_Category": "Very Low",
3066
+ "Coverage": null,
3067
+ "date_updated": "2026-01-01T08:09:17.471Z"
3068
+ },
3069
+ {
3070
+ "State/Territory": "Alabama",
3071
+ "Week_Ending_Date": "2022-12-17",
3072
+ "Data_Collection_Period": "All Results",
3073
+ "State/Territory_WVAL": "6.51",
3074
+ "National_WVAL": "11.11",
3075
+ "Regional_WVAL": "9.53",
3076
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3077
+ "activity_level": "3",
3078
+ "WVAL_Category": "Moderate",
3079
+ "Coverage": null,
3080
+ "date_updated": "2026-01-01T08:09:17.471Z"
3081
+ },
3082
+ {
3083
+ "State/Territory": "Alabama",
3084
+ "Week_Ending_Date": "2023-04-29",
3085
+ "Data_Collection_Period": "All Results",
3086
+ "State/Territory_WVAL": "1.0",
3087
+ "National_WVAL": "1.0",
3088
+ "Regional_WVAL": "1.0",
3089
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3090
+ "activity_level": "1",
3091
+ "WVAL_Category": "Very Low",
3092
+ "Coverage": null,
3093
+ "date_updated": "2026-01-01T08:09:17.471Z"
3094
+ },
3095
+ {
3096
+ "State/Territory": "Alabama",
3097
+ "Week_Ending_Date": "2025-05-31",
3098
+ "Data_Collection_Period": "1 Year",
3099
+ "State/Territory_WVAL": "1.0",
3100
+ "National_WVAL": "1.0",
3101
+ "Regional_WVAL": "1.0",
3102
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3103
+ "activity_level": "1",
3104
+ "WVAL_Category": "Very Low",
3105
+ "Coverage": null,
3106
+ "date_updated": "2026-01-01T08:09:17.471Z"
3107
+ },
3108
+ {
3109
+ "State/Territory": "Alabama",
3110
+ "Week_Ending_Date": "2022-08-27",
3111
+ "Data_Collection_Period": "All Results",
3112
+ "State/Territory_WVAL": "6.65",
3113
+ "National_WVAL": "1.88",
3114
+ "Regional_WVAL": "2.95",
3115
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3116
+ "activity_level": "3",
3117
+ "WVAL_Category": "Moderate",
3118
+ "Coverage": null,
3119
+ "date_updated": "2026-01-01T08:09:17.471Z"
3120
+ },
3121
+ {
3122
+ "State/Territory": "Alabama",
3123
+ "Week_Ending_Date": "2025-07-26",
3124
+ "Data_Collection_Period": "6 Months",
3125
+ "State/Territory_WVAL": "1.0",
3126
+ "National_WVAL": "1.0",
3127
+ "Regional_WVAL": "1.0",
3128
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3129
+ "activity_level": "1",
3130
+ "WVAL_Category": "Very Low",
3131
+ "Coverage": null,
3132
+ "date_updated": "2026-01-01T08:09:17.471Z"
3133
+ },
3134
+ {
3135
+ "State/Territory": "Alabama",
3136
+ "Week_Ending_Date": "2025-12-13",
3137
+ "Data_Collection_Period": "6 Months",
3138
+ "State/Territory_WVAL": "4.34",
3139
+ "National_WVAL": "1.12",
3140
+ "Regional_WVAL": "4.12",
3141
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3142
+ "activity_level": "2",
3143
+ "WVAL_Category": "Low",
3144
+ "Coverage": null,
3145
+ "date_updated": "2026-01-01T08:09:17.471Z"
3146
+ },
3147
+ {
3148
+ "State/Territory": "Alabama",
3149
+ "Week_Ending_Date": "2024-10-19",
3150
+ "Data_Collection_Period": "All Results",
3151
+ "State/Territory_WVAL": "2.59",
3152
+ "National_WVAL": "1.0",
3153
+ "Regional_WVAL": "1.0",
3154
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3155
+ "activity_level": "2",
3156
+ "WVAL_Category": "Low",
3157
+ "Coverage": null,
3158
+ "date_updated": "2026-01-01T08:09:17.471Z"
3159
+ },
3160
+ {
3161
+ "State/Territory": "Alabama",
3162
+ "Week_Ending_Date": "2025-08-16",
3163
+ "Data_Collection_Period": "6 Months",
3164
+ "State/Territory_WVAL": "1.0",
3165
+ "National_WVAL": "1.0",
3166
+ "Regional_WVAL": "1.0",
3167
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3168
+ "activity_level": "1",
3169
+ "WVAL_Category": "Very Low",
3170
+ "Coverage": null,
3171
+ "date_updated": "2026-01-01T08:09:17.471Z"
3172
+ },
3173
+ {
3174
+ "State/Territory": "Alabama",
3175
+ "Week_Ending_Date": "2025-01-11",
3176
+ "Data_Collection_Period": "1 Year",
3177
+ "State/Territory_WVAL": "9.26",
3178
+ "National_WVAL": "10.29",
3179
+ "Regional_WVAL": "11.9",
3180
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3181
+ "activity_level": "4",
3182
+ "WVAL_Category": "High",
3183
+ "Coverage": null,
3184
+ "date_updated": "2026-01-01T08:09:17.471Z"
3185
+ },
3186
+ {
3187
+ "State/Territory": "Alabama",
3188
+ "Week_Ending_Date": "2025-11-08",
3189
+ "Data_Collection_Period": "1 Year",
3190
+ "State/Territory_WVAL": "1.0",
3191
+ "National_WVAL": "1.0",
3192
+ "Regional_WVAL": "1.0",
3193
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3194
+ "activity_level": "1",
3195
+ "WVAL_Category": "Very Low",
3196
+ "Coverage": null,
3197
+ "date_updated": "2026-01-01T08:09:17.471Z"
3198
+ },
3199
+ {
3200
+ "State/Territory": "Alabama",
3201
+ "Week_Ending_Date": "2025-03-08",
3202
+ "Data_Collection_Period": "1 Year",
3203
+ "State/Territory_WVAL": "2.25",
3204
+ "National_WVAL": "6.03",
3205
+ "Regional_WVAL": "3.15",
3206
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3207
+ "activity_level": "1",
3208
+ "WVAL_Category": "Very Low",
3209
+ "Coverage": null,
3210
+ "date_updated": "2026-01-01T08:09:17.471Z"
3211
+ },
3212
+ {
3213
+ "State/Territory": "Alabama",
3214
+ "Week_Ending_Date": "2023-12-09",
3215
+ "Data_Collection_Period": "All Results",
3216
+ "State/Territory_WVAL": "9.77",
3217
+ "National_WVAL": "8.72",
3218
+ "Regional_WVAL": "10.04",
3219
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3220
+ "activity_level": "4",
3221
+ "WVAL_Category": "High",
3222
+ "Coverage": null,
3223
+ "date_updated": "2026-01-01T08:09:17.471Z"
3224
+ },
3225
+ {
3226
+ "State/Territory": "Alabama",
3227
+ "Week_Ending_Date": "2024-03-23",
3228
+ "Data_Collection_Period": "All Results",
3229
+ "State/Territory_WVAL": "1.44",
3230
+ "National_WVAL": "2.13",
3231
+ "Regional_WVAL": "1.0",
3232
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3233
+ "activity_level": "1",
3234
+ "WVAL_Category": "Very Low",
3235
+ "Coverage": null,
3236
+ "date_updated": "2026-01-01T08:09:17.471Z"
3237
+ },
3238
+ {
3239
+ "State/Territory": "Alabama",
3240
+ "Week_Ending_Date": "2024-06-08",
3241
+ "Data_Collection_Period": "All Results",
3242
+ "State/Territory_WVAL": "1.0",
3243
+ "National_WVAL": "1.0",
3244
+ "Regional_WVAL": "1.0",
3245
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3246
+ "activity_level": "1",
3247
+ "WVAL_Category": "Very Low",
3248
+ "Coverage": null,
3249
+ "date_updated": "2026-01-01T08:09:17.471Z"
3250
+ },
3251
+ {
3252
+ "State/Territory": "Alabama",
3253
+ "Week_Ending_Date": "2025-10-25",
3254
+ "Data_Collection_Period": "All Results",
3255
+ "State/Territory_WVAL": "1.0",
3256
+ "National_WVAL": "1.0",
3257
+ "Regional_WVAL": "1.0",
3258
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3259
+ "activity_level": "1",
3260
+ "WVAL_Category": "Very Low",
3261
+ "Coverage": null,
3262
+ "date_updated": "2026-01-01T08:09:17.471Z"
3263
+ },
3264
+ {
3265
+ "State/Territory": "Alabama",
3266
+ "Week_Ending_Date": "2023-09-09",
3267
+ "Data_Collection_Period": "All Results",
3268
+ "State/Territory_WVAL": "1.0",
3269
+ "National_WVAL": "1.0",
3270
+ "Regional_WVAL": "1.0",
3271
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3272
+ "activity_level": "1",
3273
+ "WVAL_Category": "Very Low",
3274
+ "Coverage": null,
3275
+ "date_updated": "2026-01-01T08:09:17.471Z"
3276
+ },
3277
+ {
3278
+ "State/Territory": "Alabama",
3279
+ "Week_Ending_Date": "2022-11-26",
3280
+ "Data_Collection_Period": "All Results",
3281
+ "State/Territory_WVAL": "6.09",
3282
+ "National_WVAL": "11.07",
3283
+ "Regional_WVAL": "8.22",
3284
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3285
+ "activity_level": "3",
3286
+ "WVAL_Category": "Moderate",
3287
+ "Coverage": null,
3288
+ "date_updated": "2026-01-01T08:09:17.471Z"
3289
+ },
3290
+ {
3291
+ "State/Territory": "Alabama",
3292
+ "Week_Ending_Date": "2025-12-13",
3293
+ "Data_Collection_Period": "45 Days",
3294
+ "State/Territory_WVAL": "4.34",
3295
+ "National_WVAL": "1.12",
3296
+ "Regional_WVAL": "4.12",
3297
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3298
+ "activity_level": "2",
3299
+ "WVAL_Category": "Low",
3300
+ "Coverage": null,
3301
+ "date_updated": "2026-01-01T08:09:17.471Z"
3302
+ },
3303
+ {
3304
+ "State/Territory": "Alabama",
3305
+ "Week_Ending_Date": "2024-11-02",
3306
+ "Data_Collection_Period": "All Results",
3307
+ "State/Territory_WVAL": "3.25",
3308
+ "National_WVAL": "1.06",
3309
+ "Regional_WVAL": "1.13",
3310
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3311
+ "activity_level": "2",
3312
+ "WVAL_Category": "Low",
3313
+ "Coverage": null,
3314
+ "date_updated": "2026-01-01T08:09:17.471Z"
3315
+ },
3316
+ {
3317
+ "State/Territory": "Alabama",
3318
+ "Week_Ending_Date": "2022-10-08",
3319
+ "Data_Collection_Period": "All Results",
3320
+ "State/Territory_WVAL": "4.65",
3321
+ "National_WVAL": "5.06",
3322
+ "Regional_WVAL": "6.19",
3323
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3324
+ "activity_level": "2",
3325
+ "WVAL_Category": "Low",
3326
+ "Coverage": null,
3327
+ "date_updated": "2026-01-01T08:09:17.471Z"
3328
+ },
3329
+ {
3330
+ "State/Territory": "Alabama",
3331
+ "Week_Ending_Date": "2025-12-20",
3332
+ "Data_Collection_Period": "1 Year",
3333
+ "State/Territory_WVAL": "5.45",
3334
+ "National_WVAL": "1.44",
3335
+ "Regional_WVAL": "4.64",
3336
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3337
+ "activity_level": "3",
3338
+ "WVAL_Category": "Moderate",
3339
+ "Coverage": null,
3340
+ "date_updated": "2026-01-01T08:09:17.471Z"
3341
+ },
3342
+ {
3343
+ "State/Territory": "Alabama",
3344
+ "Week_Ending_Date": "2025-08-30",
3345
+ "Data_Collection_Period": "1 Year",
3346
+ "State/Territory_WVAL": "1.0",
3347
+ "National_WVAL": "1.0",
3348
+ "Regional_WVAL": "1.0",
3349
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3350
+ "activity_level": "1",
3351
+ "WVAL_Category": "Very Low",
3352
+ "Coverage": null,
3353
+ "date_updated": "2026-01-01T08:09:17.471Z"
3354
+ },
3355
+ {
3356
+ "State/Territory": "Alabama",
3357
+ "Week_Ending_Date": "2024-07-20",
3358
+ "Data_Collection_Period": "All Results",
3359
+ "State/Territory_WVAL": "1.0",
3360
+ "National_WVAL": "1.0",
3361
+ "Regional_WVAL": "1.0",
3362
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3363
+ "activity_level": "1",
3364
+ "WVAL_Category": "Very Low",
3365
+ "Coverage": null,
3366
+ "date_updated": "2026-01-01T08:09:17.471Z"
3367
+ },
3368
+ {
3369
+ "State/Territory": "Alabama",
3370
+ "Week_Ending_Date": "2024-10-05",
3371
+ "Data_Collection_Period": "All Results",
3372
+ "State/Territory_WVAL": "1.0",
3373
+ "National_WVAL": "1.0",
3374
+ "Regional_WVAL": "1.0",
3375
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3376
+ "activity_level": "1",
3377
+ "WVAL_Category": "Very Low",
3378
+ "Coverage": null,
3379
+ "date_updated": "2026-01-01T08:09:17.471Z"
3380
+ },
3381
+ {
3382
+ "State/Territory": "Alabama",
3383
+ "Week_Ending_Date": "2025-04-05",
3384
+ "Data_Collection_Period": "1 Year",
3385
+ "State/Territory_WVAL": "1.0",
3386
+ "National_WVAL": "2.95",
3387
+ "Regional_WVAL": "1.0",
3388
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3389
+ "activity_level": "1",
3390
+ "WVAL_Category": "Very Low",
3391
+ "Coverage": null,
3392
+ "date_updated": "2026-01-01T08:09:17.471Z"
3393
+ },
3394
+ {
3395
+ "State/Territory": "Alabama",
3396
+ "Week_Ending_Date": "2025-01-04",
3397
+ "Data_Collection_Period": "All Results",
3398
+ "State/Territory_WVAL": "8.2",
3399
+ "National_WVAL": "11.4",
3400
+ "Regional_WVAL": "13.27",
3401
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3402
+ "activity_level": "4",
3403
+ "WVAL_Category": "High",
3404
+ "Coverage": null,
3405
+ "date_updated": "2026-01-01T08:09:17.471Z"
3406
+ },
3407
+ {
3408
+ "State/Territory": "Alabama",
3409
+ "Week_Ending_Date": "2023-01-07",
3410
+ "Data_Collection_Period": "All Results",
3411
+ "State/Territory_WVAL": "5.66",
3412
+ "National_WVAL": "6.53",
3413
+ "Regional_WVAL": "5.63",
3414
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3415
+ "activity_level": "3",
3416
+ "WVAL_Category": "Moderate",
3417
+ "Coverage": null,
3418
+ "date_updated": "2026-01-01T08:09:17.471Z"
3419
+ },
3420
+ {
3421
+ "State/Territory": "Alabama",
3422
+ "Week_Ending_Date": "2023-11-25",
3423
+ "Data_Collection_Period": "All Results",
3424
+ "State/Territory_WVAL": "11.09",
3425
+ "National_WVAL": "5.64",
3426
+ "Regional_WVAL": "8.09",
3427
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3428
+ "activity_level": "5",
3429
+ "WVAL_Category": "Very High",
3430
+ "Coverage": null,
3431
+ "date_updated": "2026-01-01T08:09:17.471Z"
3432
+ },
3433
+ {
3434
+ "State/Territory": "Alabama",
3435
+ "Week_Ending_Date": "2025-02-01",
3436
+ "Data_Collection_Period": "All Results",
3437
+ "State/Territory_WVAL": "5.15",
3438
+ "National_WVAL": "9.29",
3439
+ "Regional_WVAL": "6.6",
3440
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3441
+ "activity_level": "2",
3442
+ "WVAL_Category": "Low",
3443
+ "Coverage": null,
3444
+ "date_updated": "2026-01-01T08:09:17.471Z"
3445
+ },
3446
+ {
3447
+ "State/Territory": "Alabama",
3448
+ "Week_Ending_Date": "2023-06-17",
3449
+ "Data_Collection_Period": "All Results",
3450
+ "State/Territory_WVAL": "1.0",
3451
+ "National_WVAL": "1.0",
3452
+ "Regional_WVAL": "1.0",
3453
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3454
+ "activity_level": "1",
3455
+ "WVAL_Category": "Very Low",
3456
+ "Coverage": null,
3457
+ "date_updated": "2026-01-01T08:09:17.471Z"
3458
+ },
3459
+ {
3460
+ "State/Territory": "Alabama",
3461
+ "Week_Ending_Date": "2025-04-19",
3462
+ "Data_Collection_Period": "All Results",
3463
+ "State/Territory_WVAL": "1.0",
3464
+ "National_WVAL": "1.42",
3465
+ "Regional_WVAL": "1.0",
3466
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3467
+ "activity_level": "1",
3468
+ "WVAL_Category": "Very Low",
3469
+ "Coverage": null,
3470
+ "date_updated": "2026-01-01T08:09:17.471Z"
3471
+ },
3472
+ {
3473
+ "State/Territory": "Alabama",
3474
+ "Week_Ending_Date": "2025-11-22",
3475
+ "Data_Collection_Period": "All Results",
3476
+ "State/Territory_WVAL": "2.06",
3477
+ "National_WVAL": "1.0",
3478
+ "Regional_WVAL": "1.0",
3479
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3480
+ "activity_level": "1",
3481
+ "WVAL_Category": "Very Low",
3482
+ "Coverage": null,
3483
+ "date_updated": "2026-01-01T08:09:17.471Z"
3484
+ },
3485
+ {
3486
+ "State/Territory": "Alabama",
3487
+ "Week_Ending_Date": "2025-03-01",
3488
+ "Data_Collection_Period": "All Results",
3489
+ "State/Territory_WVAL": "3.85",
3490
+ "National_WVAL": "6.68",
3491
+ "Regional_WVAL": "3.85",
3492
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3493
+ "activity_level": "2",
3494
+ "WVAL_Category": "Low",
3495
+ "Coverage": null,
3496
+ "date_updated": "2026-01-01T08:09:17.471Z"
3497
+ },
3498
+ {
3499
+ "State/Territory": "Alabama",
3500
+ "Week_Ending_Date": "2023-10-14",
3501
+ "Data_Collection_Period": "All Results",
3502
+ "State/Territory_WVAL": "5.16",
3503
+ "National_WVAL": "1.47",
3504
+ "Regional_WVAL": "3.56",
3505
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3506
+ "activity_level": "2",
3507
+ "WVAL_Category": "Low",
3508
+ "Coverage": null,
3509
+ "date_updated": "2026-01-01T08:09:17.471Z"
3510
+ },
3511
+ {
3512
+ "State/Territory": "Alabama",
3513
+ "Week_Ending_Date": "2025-07-19",
3514
+ "Data_Collection_Period": "All Results",
3515
+ "State/Territory_WVAL": "1.0",
3516
+ "National_WVAL": "1.0",
3517
+ "Regional_WVAL": "1.0",
3518
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3519
+ "activity_level": "1",
3520
+ "WVAL_Category": "Very Low",
3521
+ "Coverage": null,
3522
+ "date_updated": "2026-01-01T08:09:17.471Z"
3523
+ },
3524
+ {
3525
+ "State/Territory": "Alabama",
3526
+ "Week_Ending_Date": "2025-10-18",
3527
+ "Data_Collection_Period": "All Results",
3528
+ "State/Territory_WVAL": "1.0",
3529
+ "National_WVAL": "1.0",
3530
+ "Regional_WVAL": "1.0",
3531
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3532
+ "activity_level": "1",
3533
+ "WVAL_Category": "Very Low",
3534
+ "Coverage": null,
3535
+ "date_updated": "2026-01-01T08:09:17.471Z"
3536
+ },
3537
+ {
3538
+ "State/Territory": "Alabama",
3539
+ "Week_Ending_Date": "2025-01-25",
3540
+ "Data_Collection_Period": "All Results",
3541
+ "State/Territory_WVAL": "7.49",
3542
+ "National_WVAL": "7.52",
3543
+ "Regional_WVAL": "7.49",
3544
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3545
+ "activity_level": "3",
3546
+ "WVAL_Category": "Moderate",
3547
+ "Coverage": null,
3548
+ "date_updated": "2026-01-01T08:09:17.471Z"
3549
+ },
3550
+ {
3551
+ "State/Territory": "Alabama",
3552
+ "Week_Ending_Date": "2025-02-08",
3553
+ "Data_Collection_Period": "1 Year",
3554
+ "State/Territory_WVAL": "5.01",
3555
+ "National_WVAL": "8.09",
3556
+ "Regional_WVAL": "6.91",
3557
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3558
+ "activity_level": "2",
3559
+ "WVAL_Category": "Low",
3560
+ "Coverage": null,
3561
+ "date_updated": "2026-01-01T08:09:17.471Z"
3562
+ },
3563
+ {
3564
+ "State/Territory": "Alabama",
3565
+ "Week_Ending_Date": "2025-09-27",
3566
+ "Data_Collection_Period": "1 Year",
3567
+ "State/Territory_WVAL": "1.0",
3568
+ "National_WVAL": "1.0",
3569
+ "Regional_WVAL": "1.0",
3570
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3571
+ "activity_level": "1",
3572
+ "WVAL_Category": "Very Low",
3573
+ "Coverage": null,
3574
+ "date_updated": "2026-01-01T08:09:17.471Z"
3575
+ },
3576
+ {
3577
+ "State/Territory": "Alabama",
3578
+ "Week_Ending_Date": "2023-01-14",
3579
+ "Data_Collection_Period": "All Results",
3580
+ "State/Territory_WVAL": "5.56",
3581
+ "National_WVAL": "8.63",
3582
+ "Regional_WVAL": "5.41",
3583
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3584
+ "activity_level": "3",
3585
+ "WVAL_Category": "Moderate",
3586
+ "Coverage": null,
3587
+ "date_updated": "2026-01-01T08:09:17.471Z"
3588
+ },
3589
+ {
3590
+ "State/Territory": "Alabama",
3591
+ "Week_Ending_Date": "2024-03-02",
3592
+ "Data_Collection_Period": "All Results",
3593
+ "State/Territory_WVAL": "3.25",
3594
+ "National_WVAL": "4.51",
3595
+ "Regional_WVAL": "1.87",
3596
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3597
+ "activity_level": "2",
3598
+ "WVAL_Category": "Low",
3599
+ "Coverage": null,
3600
+ "date_updated": "2026-01-01T08:09:17.471Z"
3601
+ },
3602
+ {
3603
+ "State/Territory": "Alabama",
3604
+ "Week_Ending_Date": "2024-02-24",
3605
+ "Data_Collection_Period": "All Results",
3606
+ "State/Territory_WVAL": "1.61",
3607
+ "National_WVAL": "4.59",
3608
+ "Regional_WVAL": "2.32",
3609
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3610
+ "activity_level": "1",
3611
+ "WVAL_Category": "Very Low",
3612
+ "Coverage": null,
3613
+ "date_updated": "2026-01-01T08:09:17.471Z"
3614
+ },
3615
+ {
3616
+ "State/Territory": "Alabama",
3617
+ "Week_Ending_Date": "2024-06-01",
3618
+ "Data_Collection_Period": "All Results",
3619
+ "State/Territory_WVAL": "1.0",
3620
+ "National_WVAL": "1.0",
3621
+ "Regional_WVAL": "1.0",
3622
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3623
+ "activity_level": "1",
3624
+ "WVAL_Category": "Very Low",
3625
+ "Coverage": null,
3626
+ "date_updated": "2026-01-01T08:09:17.471Z"
3627
+ },
3628
+ {
3629
+ "State/Territory": "Alabama",
3630
+ "Week_Ending_Date": "2023-08-12",
3631
+ "Data_Collection_Period": "All Results",
3632
+ "State/Territory_WVAL": "1.0",
3633
+ "National_WVAL": "1.0",
3634
+ "Regional_WVAL": "1.0",
3635
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3636
+ "activity_level": "1",
3637
+ "WVAL_Category": "Very Low",
3638
+ "Coverage": null,
3639
+ "date_updated": "2026-01-01T08:09:17.471Z"
3640
+ },
3641
+ {
3642
+ "State/Territory": "Alabama",
3643
+ "Week_Ending_Date": "2025-04-12",
3644
+ "Data_Collection_Period": "1 Year",
3645
+ "State/Territory_WVAL": "1.0",
3646
+ "National_WVAL": "1.48",
3647
+ "Regional_WVAL": "1.0",
3648
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3649
+ "activity_level": "1",
3650
+ "WVAL_Category": "Very Low",
3651
+ "Coverage": null,
3652
+ "date_updated": "2026-01-01T08:09:17.471Z"
3653
+ },
3654
+ {
3655
+ "State/Territory": "Alabama",
3656
+ "Week_Ending_Date": "2025-08-16",
3657
+ "Data_Collection_Period": "1 Year",
3658
+ "State/Territory_WVAL": "1.0",
3659
+ "National_WVAL": "1.0",
3660
+ "Regional_WVAL": "1.0",
3661
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3662
+ "activity_level": "1",
3663
+ "WVAL_Category": "Very Low",
3664
+ "Coverage": null,
3665
+ "date_updated": "2026-01-01T08:09:17.471Z"
3666
+ },
3667
+ {
3668
+ "State/Territory": "Alabama",
3669
+ "Week_Ending_Date": "2025-05-10",
3670
+ "Data_Collection_Period": "1 Year",
3671
+ "State/Territory_WVAL": "1.0",
3672
+ "National_WVAL": "1.0",
3673
+ "Regional_WVAL": "1.0",
3674
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3675
+ "activity_level": "1",
3676
+ "WVAL_Category": "Very Low",
3677
+ "Coverage": null,
3678
+ "date_updated": "2026-01-01T08:09:17.471Z"
3679
+ },
3680
+ {
3681
+ "State/Territory": "Alabama",
3682
+ "Week_Ending_Date": "2025-11-15",
3683
+ "Data_Collection_Period": "45 Days",
3684
+ "State/Territory_WVAL": "1.25",
3685
+ "National_WVAL": "1.0",
3686
+ "Regional_WVAL": "1.0",
3687
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3688
+ "activity_level": "1",
3689
+ "WVAL_Category": "Very Low",
3690
+ "Coverage": null,
3691
+ "date_updated": "2026-01-01T08:09:17.471Z"
3692
+ },
3693
+ {
3694
+ "State/Territory": "Alabama",
3695
+ "Week_Ending_Date": "2025-05-31",
3696
+ "Data_Collection_Period": "All Results",
3697
+ "State/Territory_WVAL": "1.0",
3698
+ "National_WVAL": "1.0",
3699
+ "Regional_WVAL": "1.0",
3700
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3701
+ "activity_level": "1",
3702
+ "WVAL_Category": "Very Low",
3703
+ "Coverage": null,
3704
+ "date_updated": "2026-01-01T08:09:17.471Z"
3705
+ },
3706
+ {
3707
+ "State/Territory": "Alabama",
3708
+ "Week_Ending_Date": "2023-04-01",
3709
+ "Data_Collection_Period": "All Results",
3710
+ "State/Territory_WVAL": "1.0",
3711
+ "National_WVAL": "1.52",
3712
+ "Regional_WVAL": "1.0",
3713
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3714
+ "activity_level": "1",
3715
+ "WVAL_Category": "Very Low",
3716
+ "Coverage": null,
3717
+ "date_updated": "2026-01-01T08:09:17.471Z"
3718
+ },
3719
+ {
3720
+ "State/Territory": "Alabama",
3721
+ "Week_Ending_Date": "2023-03-04",
3722
+ "Data_Collection_Period": "All Results",
3723
+ "State/Territory_WVAL": "2.06",
3724
+ "National_WVAL": "2.68",
3725
+ "Regional_WVAL": "1.37",
3726
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3727
+ "activity_level": "1",
3728
+ "WVAL_Category": "Very Low",
3729
+ "Coverage": null,
3730
+ "date_updated": "2026-01-01T08:09:17.471Z"
3731
+ },
3732
+ {
3733
+ "State/Territory": "Alabama",
3734
+ "Week_Ending_Date": "2024-05-25",
3735
+ "Data_Collection_Period": "All Results",
3736
+ "State/Territory_WVAL": "1.0",
3737
+ "National_WVAL": "1.0",
3738
+ "Regional_WVAL": "1.0",
3739
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3740
+ "activity_level": "1",
3741
+ "WVAL_Category": "Very Low",
3742
+ "Coverage": null,
3743
+ "date_updated": "2026-01-01T08:09:17.471Z"
3744
+ },
3745
+ {
3746
+ "State/Territory": "Alabama",
3747
+ "Week_Ending_Date": "2024-02-17",
3748
+ "Data_Collection_Period": "All Results",
3749
+ "State/Territory_WVAL": "1.73",
3750
+ "National_WVAL": "6.24",
3751
+ "Regional_WVAL": "2.47",
3752
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3753
+ "activity_level": "1",
3754
+ "WVAL_Category": "Very Low",
3755
+ "Coverage": null,
3756
+ "date_updated": "2026-01-01T08:09:17.471Z"
3757
+ },
3758
+ {
3759
+ "State/Territory": "Alabama",
3760
+ "Week_Ending_Date": "2025-12-06",
3761
+ "Data_Collection_Period": "All Results",
3762
+ "State/Territory_WVAL": "5.88",
3763
+ "National_WVAL": "1.29",
3764
+ "Regional_WVAL": "2.86",
3765
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3766
+ "activity_level": "3",
3767
+ "WVAL_Category": "Moderate",
3768
+ "Coverage": null,
3769
+ "date_updated": "2026-01-01T08:09:17.471Z"
3770
+ },
3771
+ {
3772
+ "State/Territory": "Alabama",
3773
+ "Week_Ending_Date": "2022-11-05",
3774
+ "Data_Collection_Period": "All Results",
3775
+ "State/Territory_WVAL": "4.75",
3776
+ "National_WVAL": "8.84",
3777
+ "Regional_WVAL": "7.71",
3778
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3779
+ "activity_level": "2",
3780
+ "WVAL_Category": "Low",
3781
+ "Coverage": null,
3782
+ "date_updated": "2026-01-01T08:09:17.471Z"
3783
+ },
3784
+ {
3785
+ "State/Territory": "Alabama",
3786
+ "Week_Ending_Date": "2023-10-07",
3787
+ "Data_Collection_Period": "All Results",
3788
+ "State/Territory_WVAL": "3.1",
3789
+ "National_WVAL": "2.1",
3790
+ "Regional_WVAL": "3.01",
3791
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3792
+ "activity_level": "2",
3793
+ "WVAL_Category": "Low",
3794
+ "Coverage": null,
3795
+ "date_updated": "2026-01-01T08:09:17.471Z"
3796
+ },
3797
+ {
3798
+ "State/Territory": "Alabama",
3799
+ "Week_Ending_Date": "2023-05-06",
3800
+ "Data_Collection_Period": "All Results",
3801
+ "State/Territory_WVAL": "1.0",
3802
+ "National_WVAL": "1.0",
3803
+ "Regional_WVAL": "1.0",
3804
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3805
+ "activity_level": "1",
3806
+ "WVAL_Category": "Very Low",
3807
+ "Coverage": null,
3808
+ "date_updated": "2026-01-01T08:09:17.471Z"
3809
+ },
3810
+ {
3811
+ "State/Territory": "Alabama",
3812
+ "Week_Ending_Date": "2025-07-05",
3813
+ "Data_Collection_Period": "1 Year",
3814
+ "State/Territory_WVAL": "1.0",
3815
+ "National_WVAL": "1.0",
3816
+ "Regional_WVAL": "1.0",
3817
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3818
+ "activity_level": "1",
3819
+ "WVAL_Category": "Very Low",
3820
+ "Coverage": null,
3821
+ "date_updated": "2026-01-01T08:09:17.471Z"
3822
+ },
3823
+ {
3824
+ "State/Territory": "Alabama",
3825
+ "Week_Ending_Date": "2023-02-18",
3826
+ "Data_Collection_Period": "All Results",
3827
+ "State/Territory_WVAL": "1.72",
3828
+ "National_WVAL": "4.18",
3829
+ "Regional_WVAL": "2.03",
3830
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3831
+ "activity_level": "1",
3832
+ "WVAL_Category": "Very Low",
3833
+ "Coverage": null,
3834
+ "date_updated": "2026-01-01T08:09:17.471Z"
3835
+ },
3836
+ {
3837
+ "State/Territory": "Alabama",
3838
+ "Week_Ending_Date": "2022-10-15",
3839
+ "Data_Collection_Period": "All Results",
3840
+ "State/Territory_WVAL": "5.29",
3841
+ "National_WVAL": "5.93",
3842
+ "Regional_WVAL": "6.19",
3843
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3844
+ "activity_level": "3",
3845
+ "WVAL_Category": "Moderate",
3846
+ "Coverage": null,
3847
+ "date_updated": "2026-01-01T08:09:17.471Z"
3848
+ },
3849
+ {
3850
+ "State/Territory": "Alabama",
3851
+ "Week_Ending_Date": "2024-03-30",
3852
+ "Data_Collection_Period": "All Results",
3853
+ "State/Territory_WVAL": "1.0",
3854
+ "National_WVAL": "1.47",
3855
+ "Regional_WVAL": "1.0",
3856
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3857
+ "activity_level": "1",
3858
+ "WVAL_Category": "Very Low",
3859
+ "Coverage": null,
3860
+ "date_updated": "2026-01-01T08:09:17.471Z"
3861
+ },
3862
+ {
3863
+ "State/Territory": "Alabama",
3864
+ "Week_Ending_Date": "2025-10-25",
3865
+ "Data_Collection_Period": "6 Months",
3866
+ "State/Territory_WVAL": "1.0",
3867
+ "National_WVAL": "1.0",
3868
+ "Regional_WVAL": "1.0",
3869
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3870
+ "activity_level": "1",
3871
+ "WVAL_Category": "Very Low",
3872
+ "Coverage": null,
3873
+ "date_updated": "2026-01-01T08:09:17.471Z"
3874
+ },
3875
+ {
3876
+ "State/Territory": "Alabama",
3877
+ "Week_Ending_Date": "2023-07-08",
3878
+ "Data_Collection_Period": "All Results",
3879
+ "State/Territory_WVAL": "1.0",
3880
+ "National_WVAL": "1.0",
3881
+ "Regional_WVAL": "1.0",
3882
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3883
+ "activity_level": "1",
3884
+ "WVAL_Category": "Very Low",
3885
+ "Coverage": null,
3886
+ "date_updated": "2026-01-01T08:09:17.471Z"
3887
+ },
3888
+ {
3889
+ "State/Territory": "Alabama",
3890
+ "Week_Ending_Date": "2025-11-22",
3891
+ "Data_Collection_Period": "45 Days",
3892
+ "State/Territory_WVAL": "2.06",
3893
+ "National_WVAL": "1.0",
3894
+ "Regional_WVAL": "1.0",
3895
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3896
+ "activity_level": "1",
3897
+ "WVAL_Category": "Very Low",
3898
+ "Coverage": null,
3899
+ "date_updated": "2026-01-01T08:09:17.471Z"
3900
+ },
3901
+ {
3902
+ "State/Territory": "Alabama",
3903
+ "Week_Ending_Date": "2025-12-13",
3904
+ "Data_Collection_Period": "1 Year",
3905
+ "State/Territory_WVAL": "4.34",
3906
+ "National_WVAL": "1.12",
3907
+ "Regional_WVAL": "4.12",
3908
+ "site_details_text": "Alabama has 19 site(s) reporting in the past week, and 0 (0%) of its site(s) with less than six months of data. Sites with less than six months of data will tend to have larger week-to-week changes in Wastewater Viral Activity Level than those with more than six months of data.",
3909
+ "activity_level": "2",
3910
+ "WVAL_Category": "Low",
3911
+ "Coverage": null,
3912
+ "date_updated": "2026-01-01T08:09:17.471Z"
3913
+ }
3914
+ ]
3915
+ }