alb_oli: Albedo

Description Usage Arguments Value References Examples

Description

This function is used to Convert Reflectance values to Albedo.

Usage

1
alb_oli(x, method = c(Chemin, Liang, Olmedo, Silva, Tasumi))

Arguments

x

A raster stack containing the reflectance values of the first seven Landsat OLI bands.

method

Specify the method to be used (Chemin, Liang, Olmedo, Silva or Tasumi)

Value

A raster layer object with the Albedo values.

References

Chemin Method, please see i.albedo function (GRASS). Only for OLI images.

Liang, S. 2000. Narrowband to broadband conversions of land surface albedo I: Algorithms. Remote Sensing of Environment, 76(2), 213-238.

Olmedo et al., 2016. water: Tools and functions to estimate actual evapotranspiration Using land surface energy balance models in R. The R journal, 8(2), 352-369.

Silva et al., 2016. Procedures for calculation of the albedo with OLI-Landsat 8 images: Application to the Brazilian semi-arid. Revista Brasileira de Engenharia Agrícola e Ambiental, 20(1), 3-8.

Tasumi et al., 2008. At-Surface Reflectance and Albedo from Satellite for Operational Calculation of Land Surface Energy Balance. Journal of Hydrologic Engineering, 13, 51-63.

Examples

1
2
3
4
5
6
library(raster)
path_files <- system.file("extdata/", package="nightmares")
x <- stack(list.files(path_files,".tif", full.names=TRUE))
alb_oli(x, method="Chemin")
alb_oli(x, method="Liang")
alb_oli(x, "Tasummi")

nightmares documentation built on Oct. 23, 2020, 7:15 p.m.