MWA: Mono window algorithm

View source: R/LST_terra.R

MWAR Documentation

Mono window algorithm

Description

This function calculates Land Surface Temperature using mono window algorithm

Usage

MWA(BT = BT, tau = tau, E = E, Ta = Ta)

Arguments

BT

SpatRaster object, brightness temperature

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

Ta

Mean atmospheric temperature (K) of the date when Landsat passed over the study area

Value

SpatRaster

References

Qin, Z., Karnieli, A. and Berliner, P., 2001. A mono-window algorithm for retrieving land surface temperature from Landsat TM data and its application to the Israel-Egypt border region. International journal of remote sensing, 22(18), pp.3719-3746.

Examples

BTemp <- terra::rast(ncol=100, nrow=100)
set.seed(2)
terra::values(BTemp) = runif(10000, min=298, max=305)
E <- terra::rast(ncol=100, nrow=100)
set.seed(2)
terra::values(E) = runif(10000, min=0.96, max=0.99)
MWA(BT = BTemp, tau = 0.86, E = E, Ta = 26)

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

Related to MWA in LST...