E_Yu {LST}R Documentation

Land Surface Emissivity according to Yu et al. 2014

Description

This function calculates Land Surface Emissivity according to Yu et al. 2014

Usage

E_Yu(red = red, NDVI = NDVI, band = band)

Arguments

red

Raster* object, red band of remote sensing imagery

NDVI

Raster* object, NDVI calculated from remote sensing imagery

band

A string specifying which Landsat 8 thermal band to use. It can be "band 10" or "band 11"

Value

RasterLayer

Examples

red <- raster::raster(ncol=100, nrow=100)
set.seed(2)
raster::values(red) = runif(10000, min=0.1, max=0.4)
NDVI <- raster::raster(ncol=100, nrow=100)
set.seed(2)
raster::values(NDVI) = runif(10000, min=0.02, max=0.8)
E_Yu(red = red, NDVI = NDVI, band = "band 11")

[Package LST version 1.1.0 Index]