Skip to content

Instantly share code, notes, and snippets.

@elzup
Last active March 4, 2019 08:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elzup/bcd40ec641c4be05beadd98457c2e7bb to your computer and use it in GitHub Desktop.
Save elzup/bcd40ec641c4be05beadd98457c2e7bb to your computer and use it in GitHub Desktop.
Approximate wbgt: 近似暑さ指数(WBGT)計算式
function awbgt(tmp, hmd) {
return (
(hmd - 20) * (Math.pow(tmp - 40, 2) * -0.00025 + 0.185) +
(11 / 15) * (tmp - 25) +
17.8
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment