leafrfromalb | R Documentation |
Derives leaf and ground reflectance from albedo
leafrfromalb(pai, x, alb, ltrr = 0.5)
pai |
a SpatRaster of plant area index values |
x |
a SpatRaster of the ratio of vertical to horizontal projections of leaf foliage |
alb |
a SpatRaster of white-sky albedo |
ltrr |
an optional numeric value giving an approximate estimate of the ratio of leaf transmittance to leaf reflectance (e.g. value of 1 makes leaf transmittance equal to reflectance). See details |
the microclimate model is not unduly sensitive to 'lttr' so if unknown, an approximate value or the default can be used.
a list of the following
Leaf reflectance (range 0 - 1)
Leaf transmittance (range 0 - 1)
Ground reflectance (range 0 - 1)
pai <- rast(vegp$pai)[[9]] # Plant Area Index in Sep (month in which albedo image was flown)
x <- rast(vegp$x)
alb <- rast(albedo)
lgr <- leafrfromalb(pai, x, alb)
plot(lgr$leafr)
plot(lgr$gref)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.