tempconv: Conversion to At Satellite Brightness Temperature

Description Usage Arguments Value Author(s) References Examples

View source: R/land8tools.R

Description

Conversion to At satellite brightness temperature of satellite data.

Usage

1
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

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

Example output



landsat8 documentation built on May 2, 2019, 9:11 a.m.

Related to tempconv in landsat8...