Description Usage Arguments Details Value Note Author(s) References Examples
heat.index
creates a numeric vector of heat index values from
numeric vectors of air temperature and either relative humidity or
dew point temperature.
1 2 |
t |
Numeric vector of air temperatures. |
dp |
Numeric vector of dew point temperatures. |
rh |
Numeric vector of relative humidity (in %). |
temperature.metric |
Character string indicating the temperature metric of air temperature and dew point temperature. Possible values are 'fahrenheit' or 'celsius'. |
output.metric |
Character string indicating the metric into which heat index should be calculated. Possible values are 'fahrenheit' or 'celsius'. |
round |
Integer indicating the number of decimal places to round converted value. |
Include air temperature (t
) and either dew point
temperature (dp
) or relative humdity (rh
). You cannot
specify both dew point temperature and relative humidity– this will
return an error. Heat index is calculated as NA
when impossible
values of dew point temperature or humidity are input (e.g., humidity
above 100% or below 0%, dew point temperature above air temperature).
A numeric vector of heat index values in the metric specified
by output.metric
. (If output.metric
is not specified,
heat index will be returned in the same metric in which air
temperature was input, specified by temperature.metric
.)
Equations are from the source code for the US National Weather Service's online heat index calculator.
Brooke Anderson brooke.anderson@colostate.edu, Roger Peng rdpeng@gmail.com
Anderson GB, Bell ML, Peng RD. 2013. Methods to calculate the heat index as an exposure metric in environmental health research. Environmental Health Perspectives 121(10):1111-1119.
National Weather Service Hydrometeorological Prediction Center Web Team. Heat Index Calculator. 30 Jan 2015. http://www.wpc.ncep.noaa.gov/html/heatindex.shtml. Accessed 18 Dec 2015.
Rothfusz L. 1990. The heat index (or, more than you ever wanted to know about heat index) (Technical Attachment SR 90-23). Fort Worth: Scientific Services Division, National Weather Service.
R. Steadman, 1979. The assessment of sultriness. Part I: A temperature-humidity index based on human physiology and clothing science. Journal of Applied Meteorology, 18(7):861–873.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Calculate heat index from temperature (in Fahrenheit)
# and relative humidity.
data(suffolk)
suffolk$heat.index <- heat.index(t = suffolk$TemperatureF,
rh = suffolk$Relative.Humidity)
suffolk
# Calculate heat index (in Celsius) from temperature (in
# Celsius) and dew point temperature (in Celsius).
data(lyon)
lyon$heat.index <- heat.index(t = lyon$TemperatureC,
dp = lyon$DewpointC,
temperature.metric = 'celsius',
output.metric = 'celsius')
lyon
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.