The MOD14A2 V6 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:
MOD14A2 V6数据集提供了1公里分辨率的8天火灾掩码合成。它包含了在合成期间各个像素等级的最大值。与火灾掩码一起,还提供了一个相关的质量信息层。
文件。
用户指南
算法理论基础文件(ATBD)
一般文件
Dataset Availability
2000-02-18T00:00:00 - 2021-09-06T00:00:00
Dataset Provider
NASA LP DAAC at the USGS EROS Center
Collection Snippet
ee.ImageCollection("MODIS/006/MOD14A2")
Resolution
1000 meters
Bands Table
Name | Description |
FireMask | Confidence of fire |
FireMask Bitmask |
|
QA | Pixel quality indicators |
QA Bitmask |
|
使用说明:
MODIS data and products acquired through the LP DAAC have no restrictions on subsequent use, sale, or redistribution.
数据引用:
代码:
var dataset = ee.ImageCollection('MODIS/006/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');