mapChart = {
let domain = [0,1];
let data = currentBA4growth;
let type = "diverging";
let pivot = 0.5;
let thresholds = [0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9];
if ({"BA.4+BA.5 peak to BA.2 peak":1,"BA.4+BA.5 peak to BA.1 peak":1}[mapMode]) {
data = Object.values(variantPeaks);
}
if (mapByRegion) {
let regionData = [];
}
let values = {
Proportion: d => d["BA.2 Proportion"],
"3day": d => {
let tot = d["BA.1+BA.4+BA.5 3day"] + d["BA.2 3day"] + d["Other 3day"];
return (tot < 2) ? null : d["BA.2 3day"]/tot ;
},
"9day": d => {
let tot = d["BA.1+BA.4+BA.5 9day"] + d["BA.2 9day"] + d["Other 9day"];
return (tot < 2) ? null : d["BA.2 9day"]/tot ;
},
"BA.2 Growth": d => {
let tot = d["BA.2 3day"];
return (tot < 6) ? null : d["BA.2 Growth"];
},
"BA.4+BA.5 Growth": d => {
let tot = d["BA.1+BA.4+BA.5 3day"];
return (tot < 6) ? null : d["BA.4+BA.5 Growth"];
},
// Change was calculated for BA1/4/5
Change: d =>-d.Change,
growthAdvantage: d=>(1+d["BA.2 Growth"])/(1+d["BA.4+BA.5 Growth"]) - 1,
}
let value = values[mapMode] || (d => d[mapMode]);
let maxValue = d3.max(data.map(d=>value(d) < 1 ? value(d) : null));
console.log("maxValue",maxValue, data.map(d=>value(d) < 1 ? value(d) : null));
let minValue = d3.min(data.map(d=>value(d) < 1 ? value(d) : null));
let stateLabel = null ;
if (mapMode === "Proportion" || mapMode === "3day" || mapMode === "9day") {
//let m = Math.ceil(mValue*10)/10 ;
//thresholds = thresholds.map(x => (x*m).toFixed(2));
thresholds = thresholds.map(v=>0.5+0.5*v);
}
if (mapMode === "3day") {
stateLabel = (f, d) => {
//console.log({f,d});
return d ? `${d.State}
${(value(d)*100).toFixed(2)}%
${d["BA.2 3day"]}/${d["BA.1+BA.4+BA.5 3day"]+d["BA.2 3day"]+d["Other 3day"]}` : f.properties.name;
}
}
if (mapMode === "9day") {
stateLabel = (f, d) => {
//console.log({f,d});
return d ? `${d.State}
${(value(d)*100).toFixed(2)}%
${d["BA.2 9day"]}/${d["BA.1+BA.4+BA.5 9day"]+d["BA.2 9day"]+d["Other 9day"]}` : f.properties.name;
}
}
if (mapMode === "Change") {
thresholds = thresholds.map(x => ((x-0.5)/2).toFixed(2));
}
else if ({"BA.4+BA.5 peak to BA.2 peak":1,"BA.4+BA.5 peak to BA.1 peak":0}[mapMode]) {
thresholds = [ 0.4,0.5,0.6,0.7,0.8,0.9,1.0,1.1,1.2];
}
else if (mapMode === "Growth" || mapMode === "Growth2" ) {
thresholds = thresholds.map(x => (x > 0.5 ? 2 : 1)*(x/0.5-1).toFixed(1));
}
else if (mapMode === "BA.4+BA.5 Growth") {
// thresholds = [0.0,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9];
thresholds = [-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1];
}
else if (mapMode === "BA.2 Growth") {
thresholds = [-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1];
}
else if (mapMode === "Positivity") {
thresholds = thresholds.map(x => (0.05 + x/2).toFixed(2));
}
else if (mapMode === "PositivityChange") {
thresholds = [-0.08,-0.06,-0.04,-0.02,0.0,0.02,0.04,0.06,0.08,.1];
}
else if (mapMode === "Positives Growth") {
//thresholds = [-0.16,-0.12,-0.08,-0.04,0.0,0.04,0.08,0.12,0.16,.2];
thresholds = [-0.5,-0.3,-0.2,-0.1,0.0,0.1,0.2,0.3,0.4,.5];
}
else if (mapMode === "growthAdvantage") {
thresholds = [-0.8,-0.6,-0.4,-0.2,0.0,0.2,0.4,0.6,0.8,1];
thresholds = [-0.8,-0.6,-0.4,-0.2,0.0,0.25,0.5,1,1.5,2];
}
//let colorSchemeName = "scheme"+colorSchemeID.charAt(0).toUpperCase() + colorSchemeID.slice(1);
let colorScheme;
if (colorSchemeID === "schemeCustom") {
colorScheme = [...myScheme];
}
else {
colorScheme = [...(d3[colorSchemeID][10] || d3[colorSchemeID][9] || d3[colorSchemeID][0])] ;
}
if (!reverseMapColors) {
colorScheme.reverse();
}
let map = Choropleth(
data, {
id: d => namemap.get(d.State),
value,
scale: d3.scaleThreshold,
domain: thresholds,
range: colorScheme,
strokeWidth: d=>(d && d["BA.2 3day"] || 0)*10+1, // stroke color for borders
stroke: "#ffffff", // stroke color for borders
fill: "#dddddd", // fill color for outline
title: stateLabel || ((f, d) => {
//console.log({f,d});
return d ? `${d.State}\n${(value(d)*100).toFixed(2)}%` : f.properties.name;
}),
features: states,
borders: statemesh,
width: 1000,
height: 620,
});
function scrollToSelectedState() {
document.getElementById("charts-for-selected-state-puerto-rico-or-dc").scrollIntoView();
}
window.scrollToSelectedState = scrollToSelectedState;
function handleClick(e) {
console.log("Map clicked:",e);
//console.log("Source element:",e.srcElement);
let stateClicked = e.srcElement.textContent.split("\n")[0];
console.log("State clicked: ", stateClicked);
(viewof stateSelected).value = stateClicked;
(viewof stateSelected).dispatchEvent(new Event("input", {bubbles: true}));
scrollToSelectedState();
}
console.log({map});
map.addEventListener("click", handleClick);
return map;
}