BT | R Documentation |
This function calculates at-Sensor Temperature or brightness temperature
BT(Landsat_10, Landsat_11)
Landsat_10 |
SpatRaster object, Landsat band 10 |
Landsat_11 |
SpatRaster object, Landsat band 11 |
A list containing brightness temperature corresponding to Landsat band 10 and Landsat band 11
a <- terra::rast(ncol=100, nrow=100)
set.seed(2)
terra::values(a) = runif(10000, min=27791, max=30878)
b <- terra::rast(ncol=100, nrow=100)
set.seed(2)
terra::values(b) = runif(10000, min=25686, max=28069)
BT(Landsat_10 = a, Landsat_11 = b)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.