async function getColorStatus(params="") {
let data = await d3.csv("https://labvegas.com/data/covid19/cruises/dashboard-Color Status.csv"+params, d3.autoType);
data.sort((a,b)=> a.reportDate - b.reportDate);
delete data.columns;
console.log(data);
let prev = null ;
data.forEach(d=>{
d.Date=new Date(d.reportDate);
d["Total cases in last 7 days"] = d["Crew cases in last 7 days"] + d["Pax cases in last 7 days"];
d["Total pax and crew"] = d["numpax"] + d["numcrew"];
d["Total cases %"] = d["Total cases in last 7 days"] / d["Total pax and crew"];
delete d["Current Voyage Type"];
delete d["Current Voyage Type"];
delete d["include.on.website"];
});
return data;
}