Description Usage Arguments Value Examples
This function generates daily climatological maps.
1 | daily_clima(b, dates = NULL)
|
b |
RasterBrick/Stack containing the historical observations or a proxy
(typically a reanalysis) that is used to derive the climatological
information. This needs to contain daily layers for multiple years.
|
dates |
Dates for which we need to calculate daily climatology. By default, this is a leap year. |
The function returns a RasterBrick (if dates
contains one date)
or a list of RasterBricks (if dates
contains more than one date).
Extent, resolution and land-sea mask match those of b
.
Values are the subset of b
related to the given dates
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
# Generate dummy RasterBrick
set.seed(0)
r <- raster(nrows = 2, ncols = 2,
xmn = 0, xmx = 360, ymn = -90, ymx = 90, vals = 30)
b <- raster::brick(lapply(1:(365 * 3),
function(i) raster::setValues(r, runif(n = raster::ncell(r),
min = 0, max = 100))))
names(b) <- seq.Date(from = as.Date("1993-01-01"),
to = as.Date("1995-12-31"),
by = "day")
daily_clima(b, as.Date("1996-01-01"))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.