Last data update: 2014.03.03

R: Conversion to At Satellite Brightness Temperature
tempconvR Documentation

Conversion to At Satellite Brightness Temperature

Description

Conversion to At satellite brightness temperature of satellite data.

Usage

tempconv(x, Ml, Al, K1, K2)

Arguments

x

Image to be converted, in matrix, data frame, or SpatialGridDataFrame format.

Ml

band specific multiplicative rescaling factor from the metadata (MTL file) (RADIANCE_MULT_BAND_x, where x is the band number).

Al

Mp band specific additive rescaling factor from the metadata (MTL file) (RADIANCE_ADD_BAND_x, where x is the band number).

K1

band specific thermal conversion constant from the metadata (MTL file) (K1_CONSTANT_BAND_x, where x is the band number, 10 or 11).

K2

band specific thermal conversion constant from the metadata (MTL file) (K2_CONSTANT_BAND_x, where x is the band number, 10 or 11).

Value

At satellite brightness temperature in Kelvin (K).

Author(s)

Alexandre dos Santos

References

U.S. Geological Survey. 2015. Landsat 8 (L8) data users handbook. Version 1.0. 97p.

Examples

data(band11)
band11.dn<- as(band11, 'SpatialGridDataFrame')
band11.tempK<-tempconv(band11.dn,3.3420E-04,0.10000, 480.89, 1201.14)

Results