@@ -14,12 +14,12 @@ export const sensors = readable(
14
14
{
15
15
name : 'Doctor Visits' ,
16
16
id : 'doctor-visits' ,
17
- tooltipText : 'Percentage of doctor visits that are due to COVID-like Symptoms ' ,
18
- mapTitleText : 'Percentage of doctor visits that are due to COVID-like Symptoms ' ,
19
- chartTitleText : 'Percentage of doctor visits that are due to COVID-like Symptoms ' ,
17
+ tooltipText : 'Percentage of doctor visits that are due to COVID-like symptoms ' ,
18
+ mapTitleText : 'Percentage of doctor visits that are due to COVID-like symptoms ' ,
19
+ chartTitleText : 'Percentage of doctor visits that are due to COVID-like symptoms ' ,
20
20
yAxis : 'Percentage' ,
21
21
format : 'percent' ,
22
- signal : 'smoothed_adj_cli ' ,
22
+ signal : 'smoothed_cli ' ,
23
23
levels : [ 'county' , 'msa' , 'state' ] ,
24
24
official : false ,
25
25
} ,
@@ -59,18 +59,6 @@ export const sensors = readable(
59
59
levels : [ 'msa' , 'state' ] ,
60
60
official : false ,
61
61
} ,
62
- {
63
- name : 'Consensus' ,
64
- id : 'consensus' ,
65
- tooltipText : 'Consensus Score of All Indicators Available for This Date' ,
66
- mapTitleText : 'Consensus Score of All Indicators Available for This Date' ,
67
- chartTitleText : 'Consensus Score of All Indicators Available for This Date' ,
68
- yAxis : 'Score (arbitrary scale)' ,
69
- format : 'raw' ,
70
- signal : 'consensus_day' ,
71
- levels : [ 'county' , 'msa' , 'state' ] ,
72
- official : false ,
73
- } ,
74
62
{
75
63
name : 'Cases (JHU)' ,
76
64
id : 'jhu-csse' ,
@@ -96,7 +84,6 @@ export const sensors = readable(
96
84
official : true ,
97
85
} ,
98
86
] ,
99
-
100
87
( set ) => {
101
88
let sensorsOption = urlParams . get ( 'sensors' ) ;
102
89
sensorsOption ? set ( JSON . parse ( decodeURIComponent ( sensorsOption ) ) ) : '' ;
@@ -142,7 +129,7 @@ export const mapFirstLoaded = writable(false);
142
129
export const currentDataReadyOnMap = writable ( false ) ;
143
130
export const customDataView = readable ( true , ( set ) => ( urlParams . get ( 'sensors' ) ? set ( true ) : set ( false ) ) ) ;
144
131
145
- export const currentSensor = writable ( 'doctor-visits-smoothed_adj_cli ' , ( set ) => {
132
+ export const currentSensor = writable ( 'doctor-visits-smoothed_cli ' , ( set ) => {
146
133
let sensor = urlParams . get ( 'sensor' ) ;
147
134
sensor ? set ( sensor ) : '' ;
148
135
return ( ) => '' ;
0 commit comments