This function automates downloading and importing CRU CL v. 2.0 climatology data into R and creates a list of raster stacks 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:
precipitation (millimetres/month)
wet-days (number days with >0.1mm rain per month)
mean temperature (degrees Celsius)
mean diurnal temperature range (degrees Celsius)
relative humidity (percent)
sunshine (percent of maximum possible (percent of day length))
ground-frost (number of days with ground-frost per month)
10 metre windspeed (metres/second)
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
get_CRU_stack(
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
)
Logical. Fetch precipitation (millimetres/month) from server and
return in the data frame? Defaults to FALSE
.
Logical. Fetch cv of precipitation (percent) from server and
return in the data frame? Defaults to FALSE
. NOTE. Setting this to
TRUE
will always results in pre being set to TRUE
and
returned as well.
Logical. Fetch wet-days (number days with >0.1millimetres rain
per month) and return in the data frame? Defaults to FALSE
.
Logical. Fetch temperature (degrees Celsius) and return it in the
data frame? Defaults to FALSE
.
Logical. Fetch mean diurnal temperature range (degrees Celsius)
and return it in the data frame? Defaults to FALSE
.
Logical. Fetch relative humidity and return it in the data frame? Defaults to FALSE.
Logical. Calculate minimum temperature values (degrees Celsius)
and return it in the data frame? Defaults to FALSE
.
Logical. Calculate maximum temperature (degrees Celsius) and
return it in the data frame? Defaults to FALSE
.
Logical. Fetch sunshine, percent of maximum possible (percent of
day length) and return it in data frame? Defaults to FALSE
.
Logical. Fetch ground-frost records (number of days with ground-
frost per month) and return it in data frame? Defaults to FALSE
.
Logical. Fetch 10m wind speed (metres/second) and return it in
the data frame? Defaults to FALSE
.
Logical. Fetch elevation (converted to metres) and return it in
the data frame? Defaults to FALSE
.
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, use cache = TRUE
after the initial download and caching. Defaults to FALSE
.
A list
of raster
stack
objects of CRU CL v. 2.0 climatology elements
# NOT RUN {
# Download data and create a raster stack of precipitation and temperature
# without caching the data files
CRU_pre_tmp <- get_CRU_stack(pre = TRUE, tmp = TRUE)
CRU_pre_tmp
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab