SCA: Single channel algorithm

View source: R/LST_terra.R

SCAR Documentation

Single channel algorithm

Description

This function calculates Land Surface Temperature using single channel algorithm

Usage

SCA(TIR = TIR, tau = tau, E = E, dlrad = dlrad, ulrad = ulrad, band = band)

Arguments

TIR

SpatRaster object, Landsat band 10 or 11

tau

Atmospheric transmittance

E

SpatRaster object, Land Surface Emissivity calculated according to Van de Griend and Owe 1993 or Valor and Caselles 1996 or Sobrino et al. 2008

dlrad

Downwelling radiance calculated from https://atmcorr.gsfc.nasa.gov/

ulrad

upwelling radiance calculated from https://atmcorr.gsfc.nasa.gov/

band

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

Value

SpatRaster

References

Jimenez-Munoz, J.C., Cristobal, J., Sobrino, J.A., Sòria, G., Ninyerola, M. and Pons, X., 2008. Revision of the single-channel algorithm for land surface temperature retrieval from Landsat thermal-infrared data. IEEE Transactions on geoscience and remote sensing, 47(1), pp.339-349.

Examples

TIR <- terra::rast(ncol=100, nrow=100)
set.seed(2)
terra::values(TIR) = runif(10000, min=27791, max=30878)
E <- terra::rast(ncol=100, nrow=100)
set.seed(2)
terra::values(E) = runif(10000, min=0.96, max=0.99)
Ts_SCA <- SCA(TIR = TIR, tau = 0.86, E = E,
		dlrad = 2.17, ulrad = 1.30, band = "band 11")

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

Related to SCA in LST...