dewpoint.to.humidity(weathermetrics)
dewpoint.to.humidity()所属R语言包:weathermetrics
Calculate relative humidity
计算相对湿度
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Create a vector of relative humidity values from vectors of air temperature and dew point temperature values.
创建向量的空气温度和露点温度值的相对湿度值的矢量。
用法----------Usage----------
dewpoint.to.humidity(dp = NA, t = NA,
temperature.metric = "fahrenheit")
参数----------Arguments----------
参数:dp
vector of dew point temperatures
向量的露点温度
参数:t
vector of air temperatures
向量的空气温度
参数:temperature.metric
temperature metric for both air temperature and dew point temperature, possible values: 'fahrenheit' or 'celsius'
的温度度量的空气温度和露点温度,可能的值:“华氏”或“摄氏”
Details
详细信息----------Details----------
Dew point temperature and temperature must be in the same metric (i.e., either both in Celsius or both in Fahrenheit). If necessary, use 'fahrenheit.to.celsius' or 'celsius.to.fahrenheit' to convert before using this function.
露点温度和温度必须在在同一度量(即,无论是在摄氏或在华氏)。如果有必要,使用“fahrenheit.to.celsius”或“celsius.to.fahrenheit的转换使用此功能前。
值----------Value----------
A vector of relative humidity (in %)
相对湿度(%)的向量
注意----------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, humidity.to.dewpoint
fahrenheit.to.celsius, celsius.to.fahrenheit, humidity.to.dewpoint
实例----------Examples----------
## Calculate relative humidity from air temperature and [#计算从空气的温度和相对湿度]
## dew point temperature[#露点温度]
data(lyon)
lyon$RH <- dewpoint.to.humidity(t = lyon$TemperatureC,
dp = lyon$DewpointC,
temperature.metric = "celsius")
lyon
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|