Google Earth Engine ——MYD14A1/A2 V6数据集提供了从MODIS 4米和11米辐射值得出的1公里分辨率的每日火灾掩码合成,火灾识别数据集

简介: Google Earth Engine ——MYD14A1/A2 V6数据集提供了从MODIS 4米和11米辐射值得出的1公里分辨率的每日火灾掩码合成,火灾识别数据集

The MYD14A1 V6 dataset provides daily fire mask composites at 1km resolution derived from the MODIS 4- and 11-micrometer radiances. The fire detection strategy is based on absolute detection of a fire (when the fire strength is sufficient to detect), and on detection relative to its background (to account for variability of the surface temperature and reflection by sunlight). The product distinguishes between fire, no fire and no observation. This information is used for monitoring the spatial and temporal distribution of fires in different ecosystems, detecting changes in fire distribution and identifying new fire frontiers, wild fires, and changes in the frequency of the fires or their relative strength.

 

Documentation:


MYD14A1 V6数据集提供了从MODIS 4米和11米辐射值得出的1公里分辨率的每日火灾掩码合成。火灾探测策略是基于对火灾的绝对探测(当火灾强度足以探测时),以及相对于其背景的探测(考虑到表面温度的变化和太阳光的反射)。该产品区分了火灾、无火灾和无观测。这些信息用于监测不同生态系统中火灾的空间和时间分布,检测火灾分布的变化,识别新的火灾前沿、野火,以及火灾频率或其相对强度的变化。

Dataset Availability

2002-07-04T00:00:00 - 2021-09-21T00:00:00

Dataset Provider

NASA LP DAAC at the USGS EROS Center

Collection Snippet

ee.ImageCollection("MODIS/006/MYD14A1")

Resolution

1000 meters

Bands Table

Name Description Min Max Units Scale
FireMask Confidence of fire 0
FireMask Bitmask
  • Bits 0-3: Fire mask pixel classes
    • 1: Not processed (obsolete; not used since Collection 1)
    • 2: Not processed (other reason)
    • 3: Non-fire water pixel
    • 4: Cloud (land or water)
    • 5: Non-fire land pixel
    • 6: Unknown (land or water)
    • 7: Fire (low confidence, land or water)
    • 8: Fire (nominal confidence, land or water)
    • 9: Fire (high confidence, land or water)
MaxFRP Maximum fire radiative power 0 180000 Megawatts 0.1
sample Position of fire pixel within scan 0 1353 0
QA Pixel quality indicators 0
QA Bitmask
  • Bits 0-1: Land/water state
    • 0: Water
    • 1: Coast
    • 2: Land
    • 3: Missing data
  • Bit 2: Night/day
    • 0: Night
    • 1: Day

使用说明:

MODIS data and products acquired through the LP DAAC have no restrictions on subsequent use, sale, or redistribution.

引用:

LP DAAC - MYD14A1

代码:

var dataset = ee.ImageCollection('MODIS/006/MYD14A1')
                  .filter(ee.Filter.date('2018-01-01', '2018-05-01'));
var fireMaskVis = {
  min: 0.0,
  max: 6000.0,
  bands: ['MaxFRP', 'FireMask', 'FireMask'],
};
Map.setCenter(6.746, 46.529, 2);
Map.addLayer(dataset, fireMaskVis, 'Fire Mask');

The MYD14A2 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:

MYD14A2 V6数据集提供了1公里分辨率的8天火灾掩码合成。它包含了在合成期间各个像素等级的最大值。与火灾掩码一起,还提供了一个相关的质量信息层。

Dataset Availability

2002-07-04T00:00:00 - 2021-09-14T00:00:00

Dataset Provider

NASA LP DAAC at the USGS EROS Center

Collection Snippet

ee.ImageCollection("MODIS/006/MYD14A2")

A2代码:

var dataset = ee.ImageCollection('MODIS/006/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');


相关文章
|
2天前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
689 0
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
2天前
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
112 0
|
2天前
|
存储 编解码 数据可视化
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
【2月更文挑战第14天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,按照给定的地表分类数据,对每一种不同的地物类型,分别加以全球范围内随机抽样点自动批量选取的方法~
275 0
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
|
2天前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
33 0
|
2天前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
48 0
|
2天前
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
23 0
|
2天前
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
53 0
|
2天前
|
传感器 编解码 数据处理
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
28 0
|
2天前
Google Earth Engine(GEE)——当加载图表的时候出现错误No features contain non-null values of “system:time_start“.
Google Earth Engine(GEE)——当加载图表的时候出现错误No features contain non-null values of “system:time_start“.
46 0
|
2天前
|
编解码 定位技术
Google Earth Engine(GEE)——导出后的影像像素不同于原始Landsat影像的分辨率(投影差异)
Google Earth Engine(GEE)——导出后的影像像素不同于原始Landsat影像的分辨率(投影差异)
36 0

热门文章

最新文章