| dp_mint | R Documentation |
This function estimates the dew point temperature (C) using the Magnus-Tetens approximation, based on the minimum air temperature and relative humidity at that time.
dp_mint(mint, minrh)
mint |
Numeric. Minimum air temperature in degrees Celsius. |
minrh |
Numeric. Relative humidity (%) at minimum temperature. |
The dew point temperature is calculated using the following equations:
\gamma = \frac{a \cdot T}{b + T} + \ln\left(\frac{RH}{100}\right)
T_{dew} = \frac{b \cdot \gamma}{a - \gamma}
where a = 17.62 and b = 243.12.
Numeric. Dew point temperature in degrees Celsius.
dp_mint(10, 80) # Expected output: around 6.71
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.