
- Dataset Availability
- 1999-01-01T00:00:00Z–2021-12-19T00:00:00
- Dataset Provider
- Earth Engine Snippet
-
ee.ImageCollection("LANDSAT/LE07/C01/T1_32DAY_NBRT")
Sign up for Earth Engine
Earth Engine is free to use for research, education, and nonprofit use.
To access this dataset in Earth Engine, please sign up for Earth Engine then return to this page.
- Tags
Description
These Landsat 7 Collection 1 Tier 1 composites are made from Tier 1 orthorectified scenes, using the computed top-of-atmosphere (TOA) reflectance. See Chander et al. (2009) for details on the TOA computation.
The Normalized Burn Ratio Thermal (NBRT) index is generated from the Near-IR, Mid-IR (2215 nm), and Thermal bands, and has a range from -1.0 to 1.0. See Holden et al. (2005) for details.
These composites are created from all the scenes in each 32-day period beginning from the first day of the year and continuing to the 352nd day of the year. The last composite of the year, beginning on day 353, will overlap the first composite of the following year by 20 days. All the images from each 32-day period are included in the composite, with the most recent pixel as the composite value.
Bands
Bands
Name | Pixel Size | Description |
---|---|---|
NBRT |
30 meters | Normalized Burn Ratio Thermal |
Terms of Use
Terms of Use
Landsat datasets are federally created data and therefore reside in the public domain and may be used, transferred, or reproduced without copyright restriction.
Acknowledgement or credit of the USGS as data source should be provided by including a line of text citation such as the example shown below.
(Product, Image, Photograph, or Dataset Name) courtesy of the U.S. Geological Survey
Example: Landsat-7 image courtesy of the U.S. Geological Survey
See the USGS Visual Identity System Guidance for further details on proper citation and acknowledgement of USGS products.
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('LANDSAT/LE07/C01/T1_32DAY_NBRT') .filterDate('1999-01-01', '2002-12-31'); var colorized = dataset.select('NBRT'); var colorizedVis = { min: 0.9, max: 1.0, palette: ['000000', 'ffffff'], }; Map.setCenter(6.746, 46.529, 6); Map.addLayer(colorized, colorizedVis, 'Colorized');