This function automates downloading and importing CRU CL v. 2.0 climatology data and creates a data frame of the data. If requested, minimum and maximum temperature may also be automatically calculated as described in the data readme.txt file. Data may be cached for later use by this function, saving time downloading files in future use of the function.
Nomenclature and units from readme.txt:
- pre
precipitation (millimetres/month)
- rd0
wet-days (number days with >0.1mm rain per month)
- tmp
mean temperature (degrees Celsius)
- dtr
mean diurnal temperature range (degrees Celsius)
- reh
relative humidity (percent)
- sunp
sunshine (percent of maximum possible (percent of day length))
- frs
ground-frost (number of days with ground-frost per month)
- wnd
10 metre windspeed (metres/second)
- elv
elevation (automatically converted to metres)
For more information see the description of the data provided by CRU, https://crudata.uea.ac.uk/cru/data/hrg/tmc/readme.txt
Usage
get_CRU_df(
pre = FALSE,
pre_cv = FALSE,
rd0 = FALSE,
tmp = FALSE,
dtr = FALSE,
reh = FALSE,
tmn = FALSE,
tmx = FALSE,
sunp = FALSE,
frs = FALSE,
wnd = FALSE,
elv = FALSE,
cache = FALSE
)
Arguments
- pre
Logical. Fetch precipitation (millimetres/month) from server and return in the data frame? Defaults to
FALSE
.- pre_cv
Logical. Fetch cv of precipitation (percent) from server and return in the data frame? Defaults to
FALSE
. NOTE. Setting this toTRUE
will always results in pre being set toTRUE
and returned as well.- rd0
Logical. Fetch wet-days (number days with >0.1 millimetres rain per month) and return in the data frame? Defaults to
FALSE
.- tmp
Logical. Fetch temperature (degrees Celsius) and return it in the data frame? Defaults to
FALSE
.- dtr
Logical. Fetch mean diurnal temperature range (degrees Celsius) and return it in the data frame? Defaults to
FALSE
.- reh
Logical. Fetch relative humidity and return it in the data frame? Defaults to FALSE.
- tmn
Logical. Calculate minimum temperature values (degrees Celsius) and return it in the data frame? Defaults to
FALSE
.- tmx
Logical. Calculate maximum temperature (degrees Celsius) and return it in the data frame? Defaults to
FALSE
.- sunp
Logical. Fetch sunshine, percent of maximum possible (percent of day length) and return it in data frame? Defaults to
FALSE
.- frs
Logical. Fetch ground-frost records (number of days with ground- frost per month) and return it in data frame? Defaults to
FALSE
.- wnd
Logical. Fetch 10m wind speed (metres/second) and return it in the data frame? Defaults to
FALSE
.- elv
Logical. Fetch elevation (converted to metres) and return it in the data frame? Defaults to
FALSE
.- cache
Logical. Store CRU CL v. 2.0 data files locally for later use? If
FALSE
, the downloaded files are removed when R session is closed. To take advantage of cached files in future sessions, usecache = TRUE
after the initial download and caching. Defaults toFALSE
.
Value
A tidy data frame of CRU CL v. 2.0 climatology
elements as a tibble
object
Author
Adam H. Sparks, adamhsparks@gmail.com
Examples
if (FALSE) { # interactive()
# Download data and create a data frame of precipitation and temperature
# without caching the data files
CRU_pre_tmp <- get_CRU_df(pre = TRUE, tmp = TRUE)
head(CRU_pre_tmp)
CRU_pre_tmp
}