MWA: Mono window algorithm

Description Usage Arguments Value Examples

View source: R/LST.R

Description

This function calculates Land Surface Temperature using mono window algorithm

Usage

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

Arguments

BT

Raster* object, brightness temperature

tau

Atmospheric transmittance

E

Raster* 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

RasterLayer

Examples

1
2
3
4
5
6
7
BTemp <- raster::raster(ncol=100, nrow=100)
set.seed(2)
raster::values(BTemp) = runif(10000, min=298, max=305)
E <- raster::raster(ncol=100, nrow=100)
set.seed(2)
raster::values(E) = runif(10000, min=0.96, max=0.99)
MWA(BT = BTemp, tau = 0.86, E = E, Ta = 26)

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

Related to MWA in LST...