@cdc/dashboard 4.25.1 → 4.25.3-6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/cdcdashboard.js +53114 -52737
  2. package/examples/all-components.json +529 -4607
  3. package/examples/dashboard-gallery.json +397 -397
  4. package/examples/private/DEV-10527.json +845 -0
  5. package/examples/private/DEV-10586.json +54319 -0
  6. package/examples/private/DEV-10856.json +54319 -0
  7. package/examples/private/DEV-9932.json +95 -0
  8. package/examples/private/dashboard-map-filter.json +815 -0
  9. package/examples/private/dev-10856-2.json +1348 -0
  10. package/examples/private/feelings.json +1 -0
  11. package/examples/private/markup.json +115 -0
  12. package/examples/private/nhis.json +1792 -0
  13. package/index.html +4 -3
  14. package/package.json +9 -9
  15. package/src/CdcDashboard.tsx +5 -8
  16. package/src/CdcDashboardComponent.tsx +58 -56
  17. package/src/_stories/Dashboard.stories.tsx +31 -0
  18. package/src/_stories/_mock/dashboard-filter-asc.json +551 -0
  19. package/src/components/CollapsibleVisualizationRow.tsx +1 -1
  20. package/src/components/DashboardFilters/DashboardFilters.tsx +10 -5
  21. package/src/components/DashboardFilters/DashboardFiltersEditor/DashboardFiltersEditor.tsx +22 -5
  22. package/src/components/DashboardFilters/DashboardFiltersEditor/components/DeleteFilterModal.tsx +13 -3
  23. package/src/components/DashboardFilters/DashboardFiltersEditor/components/FilterEditor.tsx +129 -40
  24. package/src/components/DashboardFilters/DashboardFiltersEditor/components/NestedDropDownDashboard.tsx +10 -7
  25. package/src/components/DashboardFilters/DashboardFiltersWrapper.tsx +11 -12
  26. package/src/components/DashboardFilters/dashboardfilter.styles.css +0 -2
  27. package/src/components/VisualizationRow.tsx +29 -15
  28. package/src/helpers/addValuesToDashboardFilters.ts +6 -5
  29. package/src/helpers/apiFilterHelpers.ts +10 -5
  30. package/src/helpers/changeFilterActive.ts +17 -4
  31. package/src/helpers/getFilteredData.ts +13 -4
  32. package/src/helpers/getUpdateConfig.ts +11 -4
  33. package/src/helpers/loadAPIFilters.ts +6 -4
  34. package/src/helpers/tests/updatesChildFilters.test.ts +56 -0
  35. package/src/helpers/updateChildFilters.ts +50 -0
  36. package/src/scss/main.scss +0 -3
  37. package/src/store/dashboard.reducer.ts +46 -24
  38. package/src/types/SharedFilter.ts +1 -1
@@ -0,0 +1,815 @@
1
+ {
2
+ "annotations": [],
3
+ "general": {
4
+ "geoType": "us",
5
+ "navigationTarget": "_self",
6
+ "noStateFoundMessage": "Map Unavailable",
7
+ "annotationDropdownText": "Annotations",
8
+ "geoBorderColor": "darkGray",
9
+ "headerColor": "theme-blue",
10
+ "title": "",
11
+ "showTitle": true,
12
+ "showSidebar": true,
13
+ "showDownloadButton": true,
14
+ "showDownloadMediaButton": false,
15
+ "displayAsHex": false,
16
+ "displayStateLabels": true,
17
+ "territoriesAlwaysShow": false,
18
+ "language": "en",
19
+ "geoLabelOverride": "",
20
+ "hasRegions": false,
21
+ "fullBorder": false,
22
+ "type": "data",
23
+ "convertFipsCodes": true,
24
+ "palette": {
25
+ "isReversed": false
26
+ },
27
+ "allowMapZoom": true,
28
+ "hideGeoColumnInTooltip": false,
29
+ "hidePrimaryColumnInTooltip": false,
30
+ "statePicked": {
31
+ "fipsCode": "01",
32
+ "stateName": "Alabama"
33
+ },
34
+ "expandDataTable": false
35
+ },
36
+ "type": "map",
37
+ "color": "pinkpurple",
38
+ "columns": {
39
+ "geo": {
40
+ "name": "City",
41
+ "label": "Location",
42
+ "tooltip": false,
43
+ "dataTable": true
44
+ },
45
+ "primary": {
46
+ "dataTable": true,
47
+ "tooltip": true,
48
+ "prefix": "",
49
+ "suffix": "",
50
+ "name": "Value",
51
+ "label": "",
52
+ "roundToPlace": 0
53
+ },
54
+ "navigate": {
55
+ "name": ""
56
+ },
57
+ "latitude": {
58
+ "name": "Latitude"
59
+ },
60
+ "longitude": {
61
+ "name": "Longitude"
62
+ }
63
+ },
64
+ "legend": {
65
+ "descriptions": {},
66
+ "specialClasses": [],
67
+ "unified": false,
68
+ "singleColumn": false,
69
+ "singleRow": false,
70
+ "verticalSorted": false,
71
+ "showSpecialClassesLast": false,
72
+ "dynamicDescription": false,
73
+ "type": "equalnumber",
74
+ "numberOfItems": 3,
75
+ "position": "side",
76
+ "title": "",
77
+ "style": "circles",
78
+ "subStyle": "linear blocks",
79
+ "tickRotation": "",
80
+ "singleColumnLegend": false,
81
+ "hideBorder": false
82
+ },
83
+ "filters": [],
84
+ "table": {
85
+ "wrapColumns": false,
86
+ "label": "Data Table",
87
+ "expanded": false,
88
+ "limitHeight": false,
89
+ "height": "",
90
+ "caption": "",
91
+ "showDownloadUrl": false,
92
+ "showDataTableLink": true,
93
+ "showDownloadLinkBelow": true,
94
+ "showFullGeoNameInCSV": false,
95
+ "forceDisplay": true,
96
+ "download": true,
97
+ "indexLabel": ""
98
+ },
99
+ "tooltips": {
100
+ "appearanceType": "hover",
101
+ "linkLabel": "Learn More",
102
+ "capitalizeLabels": true,
103
+ "opacity": 90
104
+ },
105
+ "runtime": {
106
+ "editorErrorMessage": []
107
+ },
108
+ "visual": {
109
+ "minBubbleSize": 1,
110
+ "maxBubbleSize": 20,
111
+ "extraBubbleBorder": false,
112
+ "cityStyle": "circle",
113
+ "cityStyleLabel": "",
114
+ "showBubbleZeros": false,
115
+ "additionalCityStyles": [],
116
+ "geoCodeCircleSize": 8
117
+ },
118
+ "mapPosition": {
119
+ "coordinates": [
120
+ 0,
121
+ 30
122
+ ],
123
+ "zoom": 1
124
+ },
125
+ "map": {
126
+ "layers": [],
127
+ "patterns": []
128
+ },
129
+ "hexMap": {
130
+ "type": "",
131
+ "shapeGroups": [
132
+ {
133
+ "legendTitle": "",
134
+ "legendDescription": "",
135
+ "items": [
136
+ {
137
+ "key": "",
138
+ "shape": "Arrow Up",
139
+ "column": "",
140
+ "operator": "=",
141
+ "value": ""
142
+ }
143
+ ]
144
+ }
145
+ ]
146
+ },
147
+ "filterBehavior": "Filter Change",
148
+ "filterIntro": "",
149
+ "openModal": true,
150
+ "uid": "map1739894863653",
151
+ "dataDescription": {
152
+ "horizontal": false,
153
+ "series": false
154
+ },
155
+ "formattedData": [
156
+ {
157
+ "City": "Cleveland",
158
+ "Longitude": "-81.694359",
159
+ "Latitude": "41.499321",
160
+ "Value": 20
161
+ }
162
+ ],
163
+ "dataKey": "supported-cities.csv",
164
+ "data": [
165
+ {
166
+ "City": "Cleveland",
167
+ "Longitude": "-81.694359",
168
+ "Latitude": "41.499321",
169
+ "Value": 20
170
+ }
171
+ ],
172
+ "editing": true,
173
+ "originalFormattedData": [
174
+ {
175
+ "City": "Albuquerque",
176
+ "Longitude": "-106.650421",
177
+ "Latitude": "35.084385",
178
+ "Value": "1"
179
+ },
180
+ {
181
+ "City": "Anaheim",
182
+ "Longitude": "-117.914299",
183
+ "Latitude": "33.836594",
184
+ "Value": "2"
185
+ },
186
+ {
187
+ "City": "Anchorage",
188
+ "Longitude": "-149.900284",
189
+ "Latitude": "61.218056",
190
+ "Value": "3"
191
+ },
192
+ {
193
+ "City": "Arlington",
194
+ "Longitude": "-97.108063",
195
+ "Latitude": "32.735687",
196
+ "Value": "4"
197
+ },
198
+ {
199
+ "City": "Atlanta",
200
+ "Longitude": "-84.387985",
201
+ "Latitude": "33.748997",
202
+ "Value": "5"
203
+ },
204
+ {
205
+ "City": "Aurora",
206
+ "Longitude": "-93.717979",
207
+ "Latitude": "36.97089",
208
+ "Value": "6"
209
+ },
210
+ {
211
+ "City": "Austin",
212
+ "Longitude": "-97.743057",
213
+ "Latitude": "30.267153",
214
+ "Value": "7"
215
+ },
216
+ {
217
+ "City": "Bakersfield",
218
+ "Longitude": "-119.018715",
219
+ "Latitude": "35.373291",
220
+ "Value": "8"
221
+ },
222
+ {
223
+ "City": "Baltimore",
224
+ "Longitude": "-76.61219",
225
+ "Latitude": "39.290386",
226
+ "Value": "9"
227
+ },
228
+ {
229
+ "City": "Baton Rouge",
230
+ "Longitude": "-91.187149",
231
+ "Latitude": "30.451468",
232
+ "Value": "10"
233
+ },
234
+ {
235
+ "City": "Boise",
236
+ "Longitude": "-116.202316",
237
+ "Latitude": "43.615021",
238
+ "Value": "11"
239
+ },
240
+ {
241
+ "City": "Boston",
242
+ "Longitude": "-71.058884",
243
+ "Latitude": "42.360081",
244
+ "Value": "12"
245
+ },
246
+ {
247
+ "City": "Buffalo",
248
+ "Longitude": "-78.878372",
249
+ "Latitude": "42.886448",
250
+ "Value": "13"
251
+ },
252
+ {
253
+ "City": "Chandler",
254
+ "Longitude": "-111.841248",
255
+ "Latitude": "33.30616",
256
+ "Value": "14"
257
+ },
258
+ {
259
+ "City": "Charlotte",
260
+ "Longitude": "-80.843124",
261
+ "Latitude": "35.227085",
262
+ "Value": "15"
263
+ },
264
+ {
265
+ "City": "Chesapeake",
266
+ "Longitude": "-76.287491",
267
+ "Latitude": "36.768208",
268
+ "Value": "16"
269
+ },
270
+ {
271
+ "City": "Chicago",
272
+ "Longitude": "-87.629799",
273
+ "Latitude": "41.878113",
274
+ "Value": "17"
275
+ },
276
+ {
277
+ "City": "Chula Vista",
278
+ "Longitude": "-117.084198",
279
+ "Latitude": "32.640053",
280
+ "Value": "18"
281
+ },
282
+ {
283
+ "City": "Cincinnati",
284
+ "Longitude": "-84.512016",
285
+ "Latitude": "39.103119",
286
+ "Value": "19"
287
+ },
288
+ {
289
+ "City": "Cleveland",
290
+ "Longitude": "-81.694359",
291
+ "Latitude": "41.499321",
292
+ "Value": "20"
293
+ },
294
+ {
295
+ "City": "Colorado Springs",
296
+ "Longitude": "-104.821365",
297
+ "Latitude": "38.833881",
298
+ "Value": "21"
299
+ },
300
+ {
301
+ "City": "Columbus",
302
+ "Longitude": "-82.998795",
303
+ "Latitude": "39.961178",
304
+ "Value": "22"
305
+ },
306
+ {
307
+ "City": "Corpus Christi",
308
+ "Longitude": "-97.396378",
309
+ "Latitude": "27.800583",
310
+ "Value": "23"
311
+ },
312
+ {
313
+ "City": "Dallas",
314
+ "Longitude": "-96.796989",
315
+ "Latitude": "32.776665",
316
+ "Value": "24"
317
+ },
318
+ {
319
+ "City": "Denver",
320
+ "Longitude": "-104.99025",
321
+ "Latitude": "39.739235",
322
+ "Value": "25"
323
+ },
324
+ {
325
+ "City": "Detroit",
326
+ "Longitude": "-83.045753",
327
+ "Latitude": "42.331429",
328
+ "Value": "26"
329
+ },
330
+ {
331
+ "City": "District of Columbia",
332
+ "Longitude": "-77.036873",
333
+ "Latitude": "38.907192",
334
+ "Value": "27"
335
+ },
336
+ {
337
+ "City": "Durham",
338
+ "Longitude": "-78.898621",
339
+ "Latitude": "35.994034",
340
+ "Value": "28"
341
+ },
342
+ {
343
+ "City": "El Paso",
344
+ "Longitude": "-106.485023",
345
+ "Latitude": "31.761877",
346
+ "Value": "29"
347
+ },
348
+ {
349
+ "City": "Fort Wayne",
350
+ "Longitude": "-85.139351",
351
+ "Latitude": "41.079273",
352
+ "Value": "30"
353
+ },
354
+ {
355
+ "City": "Ft Wayne",
356
+ "Longitude": "-85.139351",
357
+ "Latitude": "41.079273",
358
+ "Value": "31"
359
+ },
360
+ {
361
+ "City": "Fort Worth",
362
+ "Longitude": "-97.330765",
363
+ "Latitude": "32.755489",
364
+ "Value": "32"
365
+ },
366
+ {
367
+ "City": "Fremont",
368
+ "Longitude": "-121.988571",
369
+ "Latitude": "37.548271",
370
+ "Value": "33"
371
+ },
372
+ {
373
+ "City": "Fresno",
374
+ "Longitude": "-119.787125",
375
+ "Latitude": "36.737797",
376
+ "Value": "34"
377
+ },
378
+ {
379
+ "City": "Garland",
380
+ "Longitude": "-96.638885",
381
+ "Latitude": "32.912624",
382
+ "Value": "35"
383
+ },
384
+ {
385
+ "City": "Gilbert",
386
+ "Longitude": "-111.789024",
387
+ "Latitude": "33.352825",
388
+ "Value": "36"
389
+ },
390
+ {
391
+ "City": "Glendale",
392
+ "Longitude": "-118.255074",
393
+ "Latitude": "34.142509",
394
+ "Value": "37"
395
+ },
396
+ {
397
+ "City": "Greensboro",
398
+ "Longitude": "-79.791977",
399
+ "Latitude": "36.072636",
400
+ "Value": "38"
401
+ },
402
+ {
403
+ "City": "Henderson",
404
+ "Longitude": "-114.98172",
405
+ "Latitude": "36.039524",
406
+ "Value": "39"
407
+ },
408
+ {
409
+ "City": "Hialeah",
410
+ "Longitude": "-80.278107",
411
+ "Latitude": "25.857595",
412
+ "Value": "40"
413
+ },
414
+ {
415
+ "City": "Honolulu",
416
+ "Longitude": "-157.858337",
417
+ "Latitude": "21.306944",
418
+ "Value": "41"
419
+ },
420
+ {
421
+ "City": "Houston",
422
+ "Longitude": "-95.358421",
423
+ "Latitude": "29.749907",
424
+ "Value": "42"
425
+ },
426
+ {
427
+ "City": "Indianapolis",
428
+ "Longitude": "-86.158066",
429
+ "Latitude": "39.768402",
430
+ "Value": "43"
431
+ },
432
+ {
433
+ "City": "Irvine",
434
+ "Longitude": "-117.826508",
435
+ "Latitude": "33.684566",
436
+ "Value": "44"
437
+ },
438
+ {
439
+ "City": "Irving",
440
+ "Longitude": "-96.948891",
441
+ "Latitude": "32.814018",
442
+ "Value": "45"
443
+ },
444
+ {
445
+ "City": "Jacksonville",
446
+ "Longitude": "-81.655647",
447
+ "Latitude": "30.332184",
448
+ "Value": "46"
449
+ },
450
+ {
451
+ "City": "Jersey City",
452
+ "Longitude": "-74.077644",
453
+ "Latitude": "40.728157",
454
+ "Value": "47"
455
+ },
456
+ {
457
+ "City": "Kansas City",
458
+ "Longitude": "-94.578568",
459
+ "Latitude": "39.099728",
460
+ "Value": "48"
461
+ },
462
+ {
463
+ "City": "Laredo",
464
+ "Longitude": "-99.507553",
465
+ "Latitude": "27.503561",
466
+ "Value": "49"
467
+ },
468
+ {
469
+ "City": "Las Vegas",
470
+ "Longitude": "-115.139832",
471
+ "Latitude": "36.169941",
472
+ "Value": "50"
473
+ },
474
+ {
475
+ "City": "Lexington",
476
+ "Longitude": "-84.503716",
477
+ "Latitude": "38.040585",
478
+ "Value": "51"
479
+ },
480
+ {
481
+ "City": "Lincoln",
482
+ "Longitude": "-95.262955",
483
+ "Latitude": "37.346134",
484
+ "Value": "52"
485
+ },
486
+ {
487
+ "City": "Long Beach",
488
+ "Longitude": "-118.193741",
489
+ "Latitude": "33.77005",
490
+ "Value": "53"
491
+ },
492
+ {
493
+ "City": "Los Angeles",
494
+ "Longitude": "-118.243683",
495
+ "Latitude": "34.052235",
496
+ "Value": "54"
497
+ },
498
+ {
499
+ "City": "Los Angeles County",
500
+ "Longitude": "-118.229362",
501
+ "Latitude": "34.058762",
502
+ "Value": "55"
503
+ },
504
+ {
505
+ "City": "Louisville",
506
+ "Longitude": "-85.758453",
507
+ "Latitude": "38.252666",
508
+ "Value": "56"
509
+ },
510
+ {
511
+ "City": "Lubbock",
512
+ "Longitude": "-101.855164",
513
+ "Latitude": "33.577862",
514
+ "Value": "57"
515
+ },
516
+ {
517
+ "City": "Madison",
518
+ "Longitude": "-89.40123",
519
+ "Latitude": "43.073051",
520
+ "Value": "58"
521
+ },
522
+ {
523
+ "City": "Marion County, Indiana",
524
+ "Longitude": "-86.136543",
525
+ "Latitude": "39.781029",
526
+ "Value": "59"
527
+ },
528
+ {
529
+ "City": "Memphis",
530
+ "Longitude": "-90.048981",
531
+ "Latitude": "35.149532",
532
+ "Value": "60"
533
+ },
534
+ {
535
+ "City": "Mesa",
536
+ "Longitude": "-111.831474",
537
+ "Latitude": "33.415184",
538
+ "Value": "61"
539
+ },
540
+ {
541
+ "City": "Miami",
542
+ "Longitude": "-80.191788",
543
+ "Latitude": "25.761681",
544
+ "Value": "62"
545
+ },
546
+ {
547
+ "City": "Milwaukee",
548
+ "Longitude": "-87.906471",
549
+ "Latitude": "43.038902",
550
+ "Value": "63"
551
+ },
552
+ {
553
+ "City": "Minneapolis",
554
+ "Longitude": "-93.265015",
555
+ "Latitude": "44.977753",
556
+ "Value": "64"
557
+ },
558
+ {
559
+ "City": "Montgomery County, Maryland",
560
+ "Longitude": "-77.199406",
561
+ "Latitude": "39.153515",
562
+ "Value": "65"
563
+ },
564
+ {
565
+ "City": "Nashville",
566
+ "Longitude": "-86.781601",
567
+ "Latitude": "36.162663",
568
+ "Value": "66"
569
+ },
570
+ {
571
+ "City": "New Orleans",
572
+ "Longitude": "-90.071533",
573
+ "Latitude": "29.951065",
574
+ "Value": "67"
575
+ },
576
+ {
577
+ "City": "New York City",
578
+ "Longitude": "-74.005974",
579
+ "Latitude": "40.712776",
580
+ "Value": "68"
581
+ },
582
+ {
583
+ "City": "Newark",
584
+ "Longitude": "-95.582733",
585
+ "Latitude": "37.443188",
586
+ "Value": "69"
587
+ },
588
+ {
589
+ "City": "Norfolk",
590
+ "Longitude": "-76.285873",
591
+ "Latitude": "36.850769",
592
+ "Value": "70"
593
+ },
594
+ {
595
+ "City": "North Las Vegas",
596
+ "Longitude": "-115.114571",
597
+ "Latitude": "36.19585",
598
+ "Value": "71"
599
+ },
600
+ {
601
+ "City": "Oakland",
602
+ "Longitude": "-122.271111",
603
+ "Latitude": "37.804363",
604
+ "Value": "72"
605
+ },
606
+ {
607
+ "City": "Oklahoma City",
608
+ "Longitude": "-97.516426",
609
+ "Latitude": "35.46756",
610
+ "Value": "73"
611
+ },
612
+ {
613
+ "City": "Omaha",
614
+ "Longitude": "-95.934502",
615
+ "Latitude": "41.256538",
616
+ "Value": "74"
617
+ },
618
+ {
619
+ "City": "Orlando",
620
+ "Longitude": "-81.379234",
621
+ "Latitude": "28.538336",
622
+ "Value": "75"
623
+ },
624
+ {
625
+ "City": "Philadelphia",
626
+ "Longitude": "-75.165222",
627
+ "Latitude": "39.952583",
628
+ "Value": "76"
629
+ },
630
+ {
631
+ "City": "Phoenix",
632
+ "Longitude": "-112.074036",
633
+ "Latitude": "33.448376",
634
+ "Value": "77"
635
+ },
636
+ {
637
+ "City": "Pittsburgh",
638
+ "Longitude": "-79.995888",
639
+ "Latitude": "40.440624",
640
+ "Value": "78"
641
+ },
642
+ {
643
+ "City": "Plano",
644
+ "Longitude": "-96.698883",
645
+ "Latitude": "33.019844",
646
+ "Value": "79"
647
+ },
648
+ {
649
+ "City": "Portland",
650
+ "Longitude": "-122.658722",
651
+ "Latitude": "45.51223",
652
+ "Value": "80"
653
+ },
654
+ {
655
+ "City": "Raleigh",
656
+ "Longitude": "-78.638176",
657
+ "Latitude": "35.779591",
658
+ "Value": "81"
659
+ },
660
+ {
661
+ "City": "Reno",
662
+ "Longitude": "-119.813805",
663
+ "Latitude": "39.529633",
664
+ "Value": "82"
665
+ },
666
+ {
667
+ "City": "Richmond, Virginia",
668
+ "Longitude": "-77.43605",
669
+ "Latitude": "37.540726",
670
+ "Value": "83"
671
+ },
672
+ {
673
+ "City": "Riverside",
674
+ "Longitude": "-117.375496",
675
+ "Latitude": "33.980602",
676
+ "Value": "84"
677
+ },
678
+ {
679
+ "City": "Sacramento",
680
+ "Longitude": "-121.4944",
681
+ "Latitude": "38.581573",
682
+ "Value": "85"
683
+ },
684
+ {
685
+ "City": "Saint Paul",
686
+ "Longitude": "-93.089958",
687
+ "Latitude": "44.953705",
688
+ "Value": "86"
689
+ },
690
+ {
691
+ "City": "San Antonio",
692
+ "Longitude": "-98.493629",
693
+ "Latitude": "29.424122",
694
+ "Value": "87"
695
+ },
696
+ {
697
+ "City": "San Diego",
698
+ "Longitude": "-117.161087",
699
+ "Latitude": "32.715736",
700
+ "Value": "88"
701
+ },
702
+ {
703
+ "City": "San Francisco",
704
+ "Longitude": "-122.419418",
705
+ "Latitude": "37.774929",
706
+ "Value": "89"
707
+ },
708
+ {
709
+ "City": "San Jose",
710
+ "Longitude": "-121.88633",
711
+ "Latitude": "37.338207",
712
+ "Value": "90"
713
+ },
714
+ {
715
+ "City": "Santa Ana",
716
+ "Longitude": "-117.867653",
717
+ "Latitude": "33.745472",
718
+ "Value": "91"
719
+ },
720
+ {
721
+ "City": "Scottsdale",
722
+ "Longitude": "-111.926048",
723
+ "Latitude": "33.494171",
724
+ "Value": "92"
725
+ },
726
+ {
727
+ "City": "Seattle",
728
+ "Longitude": "-122.332069",
729
+ "Latitude": "47.606209",
730
+ "Value": "93"
731
+ },
732
+ {
733
+ "City": "Spokane",
734
+ "Longitude": "-117.426048",
735
+ "Latitude": "47.658779",
736
+ "Value": "94"
737
+ },
738
+ {
739
+ "City": "St. Louis",
740
+ "Longitude": "-90.199402",
741
+ "Latitude": "38.627003",
742
+ "Value": "95"
743
+ },
744
+ {
745
+ "City": "St. Petersburg",
746
+ "Longitude": "-82.640289",
747
+ "Latitude": "27.767601",
748
+ "Value": "96"
749
+ },
750
+ {
751
+ "City": "Stockton",
752
+ "Longitude": "-121.290779",
753
+ "Latitude": "37.957703",
754
+ "Value": "97"
755
+ },
756
+ {
757
+ "City": "Tampa",
758
+ "Longitude": "-82.457176",
759
+ "Latitude": "27.950575",
760
+ "Value": "98"
761
+ },
762
+ {
763
+ "City": "Toledo",
764
+ "Longitude": "-83.537865",
765
+ "Latitude": "41.652805",
766
+ "Value": "99"
767
+ },
768
+ {
769
+ "City": "Tucson",
770
+ "Longitude": "-110.974709",
771
+ "Latitude": "32.222607",
772
+ "Value": "100"
773
+ },
774
+ {
775
+ "City": "Tuscon",
776
+ "Longitude": "-110.974709",
777
+ "Latitude": "32.222607",
778
+ "Value": "101"
779
+ },
780
+ {
781
+ "City": "Tulsa",
782
+ "Longitude": "-95.992775",
783
+ "Latitude": "36.15398",
784
+ "Value": "102"
785
+ },
786
+ {
787
+ "City": "Virginia Beach",
788
+ "Longitude": "-75.977982",
789
+ "Latitude": "36.852924",
790
+ "Value": "103"
791
+ },
792
+ {
793
+ "City": "Wichita",
794
+ "Longitude": "-97.330055",
795
+ "Latitude": "37.687176",
796
+ "Value": "104"
797
+ },
798
+ {
799
+ "City": "Winston Salem",
800
+ "Longitude": "-80.244217",
801
+ "Latitude": "36.099861",
802
+ "Value": "105"
803
+ },
804
+ {
805
+ "City": "Winston–Salem",
806
+ "Longitude": "-80.244217",
807
+ "Latitude": "36.099861",
808
+ "Value": "106"
809
+ }
810
+ ],
811
+ "version": "4.25.1",
812
+ "migrations": {
813
+ "addColorMigration": true
814
+ }
815
+ }