E_Skokovic: Land Surface Emissivity according to Skokovic et al. 2014

View source: R/LST_terra.R

E_SkokovicR Documentation

Land Surface Emissivity according to Skokovic et al. 2014

Description

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

Usage

E_Skokovic(red = red, NDVI = NDVI, band = band)

Arguments

red

SpatRaster object, red band of remote sensing imagery

NDVI

SpatRaster 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

SpatRaster

References

Skoković, D., Sobrino, J.A., Jimenez-Munoz, J.C., Soria, G., Julien, Y., Mattar, C. and Cristóbal, J., 2014. Calibration and Validation of land surface temperature for Landsat8-TIRS sensor. Land product validation and evolution.

Examples

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

LST documentation built on April 4, 2025, 2:25 a.m.

Related to E_Skokovic in LST...