AI-generated Key Takeaways
-
MYD14A2 V6.1 provides 8-day fire mask composites at 1km resolution, including fire mask and quality information layers.
-
The dataset covers the globe and is derived from the MODIS sensor on the Aqua satellite.
-
Data is available from July 4, 2002, to November 24, 2024, and has no restrictions on use, sale, or redistribution.
-
Users can explore and analyze this dataset within Google Earth Engine.
-
Fire mask pixel values represent confidence levels (low, nominal, high) or other classifications such as cloud, water, and land.

- Dataset Availability
- 2002-07-04T00:00:00Z–2025-09-22T00:00:00Z
- Dataset Provider
- NASA LP DAAC at the USGS EROS Center
- Cadence
- 8 Days
- Tags
Description
The MYD14A2 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/MYD14A2') .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');