humidity.to.dewpoint(weathermetrics)
humidity.to.dewpoint()所属R语言包:weathermetrics
Calculate dew point temperature
计算露点温度
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Create a vector of dew point temperatures from vectors of air temperature and relative humidity.
创建向量的露点温度的空气温度和相对湿度的矢量。
用法----------Usage----------
humidity.to.dewpoint(t = NA, rh = NA,
temperature.metric = "fahrenheit")
参数----------Arguments----------
参数:t
vector of air temperatures
向量的空气温度
参数:rh
vector of relative humidity (in %)
向量的相对湿度(%)
参数:temperature.metric
temperature metric for air temperature, either 'fahrenheit' or 'celsius'
度量空气温度的温度,无论是“华氏”或“摄氏”
Details
详细信息----------Details----------
Dew point temperature will be calculated in the same metric as the temperature vector (as specified by the 'temperature.metric' option). If you'd like dew point temperature in a different metric, use the function 'celsius.to.fahrenheit' or 'fahrenheit.to.celsius' on the output from this function.
将计算出露点温度,随着温度的向量(如指定的的“temperature.metric选项),在相同的度量。如果你想在不同的度量露点温度,使用的功能celsius.to.fahrenheit“或”fahrenheit.to.celsius“从这个函数的输出。
值----------Value----------
A vector of dew point temperature, in the same metric as the temperature vector (as specified by the 'temperature.metric' option)
一个向量的露点温度,随着温度的向量(所指定的的“temperature.metric选项相同的度量)
注意----------Note----------
Equations are from the source code for the US National Weather Service's online heat index calculator (http://www.hpc.ncep.noaa.gov/html/heatindex.shtml).
方程是从美国国家气象局的网上热指数的计算器(http://www.hpc.ncep.noaa.gov/html/heatindex.shtml)的源代码。
(作者)----------Author(s)----------
Brooke Anderson and Roger Peng
参考文献----------References----------
参见----------See Also----------
fahrenheit.to.celsius, celsius.to.fahrenheit, dewpoint.to.humidity
fahrenheit.to.celsius, celsius.to.fahrenheit, dewpoint.to.humidity
实例----------Examples----------
## Calculate dew point temperature from relative humidity and[#计算露点温度,相对湿度和]
## air temperature[#空气温度]
data(newhaven)
newhaven$DP <- humidity.to.dewpoint(t = newhaven$TemperatureF,
rh = newhaven$Relative.Humidity,
temperature.metric = "fahrenheit")
newhaven
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|