Description Usage Arguments Value References Examples
This function Convert Digital Numbers to Top of Atmosphere Brightness Temperature.
1 | thermal_oli(x, band = c(10, 11), units = c(Celsius, Kelvin, Fahrenheit))
|
x |
A raster containing the Landsat OLI band 10 or 11. |
band |
Specify if your raster is the Landsat OLI band 10 or 11 |
units |
specify if your desired units are Celsius, Kelvin, or Fahrenheit degrees |
A raster layer object with the Top of atmosphere brightness temperature.
https://www.usgs.gov/core-science-systems/nli/landsat/using-usgs-landsat-level-1-data-product.
1 2 3 4 5 | library(raster)
B10 <- raster(system.file("extdata/3047_20190517_B10.tif", package="nightmares"))
B11 <- raster(system.file("extdata/3047_20190517_B11.tif", package="nightmares"))
thermal_oli(B10, 10, "Celsius")
thermal_oli(B11, 11, "Fahrenheit")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.