cliBrtSunDurFrcGrid {macroBiome} | R Documentation |
Estimator for Fraction of Bright Sunshine Duration
Description
Estimates monthly averages for daily fraction of bright sunshine duration, for a given region and year, by using the monthly time series of temperature and precipitation, and the elevation data.
Usage
cliBrtSunDurFrcGrid(
rs.temp,
rs.prec,
rl.elv,
sc.year = 2000,
aprchSIM = c("Solar123", "SPLASH"),
filename = "",
...
)
Arguments
rs.temp |
multi-layer Raster*/SpatRaster object with one-year time series of monthly mean air temperature (in °C) |
rs.prec |
multi-layer Raster*/SpatRaster object with one-year time series of monthly precipitation sum (in mm) |
rl.elv |
single-layer Raster*/SpatRaster object with the elevation values (in meters above sea level) |
sc.year |
'numeric' scalar with the value of the year (using astronomical year numbering) |
aprchSIM |
'character' vector of length 1 that indicates the formula used to estimate the value of solar
irradiance/irradiation for a specific day. Valid values are as follows: |
filename |
output filename |
... |
additional arguments passed on to |
Details
Value
A 12-layer SpatRaster object with one-year time series of monthly mean relative sunshine duration.
Note
The objects 'rs.temp'
and 'rs.prec'
must be 12-layer Raster*/SpatRaster objects, while the
object 'rl.elv'
has to be a single-layer Raster*/SpatRaster object. These Raster*/SpatRaster objects
must have the same bounding box, projection, and resolution. The object 'sc.year'
has to be a single
integer number.
References
Allen RG (1996) Assessing integrity of weather data for reference evapotranspiration estimation. J Irrig Drain Eng 122(2):97–106. doi:10.1061/(ASCE)0733-9437(1996)122:2(97)
Berger A, Loutre MF (1991) Insolation values for the climate of the last 10 million years. Quat Sci Rev 10(4):297-317. doi:10.1016/0277-3791(91)90033-Q
Brock TD (1981) Calculating solar radiation for ecological studies. Ecol Model 14(1–2):1-19. doi:10.1016/0304-3800(81)90011-9
Davis TW, Prentice IC, Stocker BD, Thomas RT, Whitley RJ, Wang H, Evans BJ, Gallego-Sala AV, Sykes MT, Cramer W (2017) Simple process-led algorithms for simulating habitats (SPLASH v.1.0): robust indices of radiation, evapotranspiration and plant-available moisture. Geosci Model Dev 10(2):689–708. doi:10.5194/gmd-10-689-2017
Duffie JA, Beckman WA (1991) Solar Engineering of Thermal Processes. Second Edition. Wiley-Interscience, New York, NY
Yin X (1997a) Calculating daytime mean relative air mass. Agric For Meteorol 87(2-3):85-90. doi:10.1016/S0168-1923(97)00029-4
Yin X (1997b) Optical Air Mass: Daily Integration and its Applications. Meteorol Atmos Phys 63(3-4):227-233. doi:10.1007/BF01027387
Yin X (1999) Bright Sunshine Duration in Relation to Precipitation, Air Temperature and Geographic Location. Theor Appl Climatol 64(1–2):61–68. doi:10.1007/s007040050111
Examples
library(raster)
# Loading mandatory data for the Example 'Single-Year Grid'
data(inp_exSglyGrid)
inp_exSglyGrid <- lapply(inp_exSglyGrid, crop, extent(20.15, 20.25, 46.25, 46.35))
# Estimate values of the monthly mean relative sunshine duration
# at a grid cell near Szeged, Hungary (46.3N, 20.2E), in the year 2010
with(inp_exSglyGrid, {
rs.bsdf <- cliBrtSunDurFrcGrid(temp, prec, elv, sc.year = 2010)
rs.bsdf
})