AI-generated Key Takeaways
-
The MOD14A2 V6.1 dataset provides 8-day fire mask composites at 1km resolution.
-
The dataset includes a fire mask layer indicating confidence of fire and a QA layer with pixel quality indicators.
-
Data is available from 2000-02-18 to 2025-10-08 and updates every 8 days.
-
MODIS data and products from LP DAAC have no restrictions on use, sale, or redistribution.
- Dataset Availability
- 2000-02-18T00:00:00Z–2025-10-08T00:00:00Z
- Dataset Provider
- NASA LP DAAC at the USGS EROS Center
- Cadence
- 8 Days
- Tags
Description
The MOD14A2 V6.1 dataset provides 8-day fire mask composites at 1km resolution. It contains the maximum value of the individual pixel classes over the compositing period. Along with the fire mask, an associated quality information layer is also provided.
Documentation:
Bands
Pixel Size
1000 meters
Bands
| Name | Pixel Size | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
FireMask |
meters | Confidence of fire |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
QA |
meters | Pixel quality indicators |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Terms of Use
Terms of Use
MODIS data and products acquired through the LP DAAC have no restrictions on subsequent use, sale, or redistribution.
Citations
Please visit LP DAAC 'Citing Our Data' page for information on citing LP DAAC datasets.
DOIs
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.ImageCollection('MODIS/061/MOD14A2') .filter(ee.Filter.date('2018-01-01', '2018-05-01')); var fireMask = dataset.select('FireMask'); var fireMaskVis = { min: 3.0, max: 8.0, }; Map.setCenter(6.746, 46.529, 2); Map.addLayer(fireMask, fireMaskVis, 'Fire Mask');