// from https://www.weather.gov/media/epz/wxcalc/windChill.pdf
// t should be in degrees F, s should be mph
if(t>50||s<3)returnundefined;
returnMath.round(
35.74+
0.6215*t-
35.75*Math.pow(s,0.16)+
0.4275*t*Math.pow(s,0.16)
);
}
Purpose-built for displays of data
Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.