E_Yu: Land Surface Emissivity according to Yu et al. 2014

Description Usage Arguments Value Examples

View source: R/LST.R

Description

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

Usage

1
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

1
2
3
4
5
6
7
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")

LST documentation built on May 17, 2021, 9:09 a.m.

Related to E_Yu in LST...