Published
Edited
Nov 25, 2018
Importers
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
windChill = function(t, s) {
// 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) return undefined;
return Math.round(
35.74 +
0.6215 * t -
35.75 * Math.pow(s, 0.16) +
0.4275 * t * Math.pow(s, 0.16)
);
}
Insert cell
Insert cell

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.
Learn more