前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine ——MOD14A2.006: Terra Thermal Anomalies & Fire 8-Day Global 1km提供了1公里分辨率的8天火灾合成数据

Google Earth Engine ——MOD14A2.006: Terra Thermal Anomalies & Fire 8-Day Global 1km提供了1公里分辨率的8天火灾合成数据

作者头像
此星光明
发布2024-02-02 10:40:43
960
发布2024-02-02 10:40:43
举报

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

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 pixel4: Cloud (land or water)5: Non-fire land pixel6: 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)

QA

Pixel quality indicators

QA Bitmask

Bits 0-1: Land/water state 0: Water1: Coast2: Land3: Missing dataBit 2: Night/day 0: Night1: Day

  • 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)

QAPixel quality indicatorsQA 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 - MOD14A2

https://doi.org/10.5067/MODIS/MOD14A2.006

代码:

代码语言:javascript
复制
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');
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2021-10-12,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档