前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine——FORMA火灾警报数据集是使用两个MODIS产品的组合来检测的。NDVI(归一化植被指数)和FIRMS(资源管理系统的火灾信息)。

Google Earth Engine——FORMA火灾警报数据集是使用两个MODIS产品的组合来检测的。NDVI(归一化植被指数)和FIRMS(资源管理系统的火灾信息)。

作者头像
此星光明
发布2024-02-02 10:57:58
1180
发布2024-02-02 10:57:58
举报

NOTE from WRI: WRI decided to stop updating FORMA alerts. The goal was to simplify the Global Forest Watch user experience and reduce redundancy. We found that Terra-i and GLAD were more frequently used. Moreover, using GLAD as a standard, found that Terra-i outperformed FORMA globally.

FORMA alerts are detected using a combination of two MODIS products: NDVI (Normalized Difference Vegetation Index) and FIRMS (Fires Information for Resource Management System). NDVI updates are processed every 16 days, while fire updates are processed daily. Models are developed individually for each ecogroup to relate the two inputs to the area of clearing, using the Hansen annual tree cover loss data to train the model. The minimum threshold to qualify as an alert is 25% of the pixel cleared, though thresholds vary by ecogroup to minimize false positives. Here is an example script for a quick introduction to the FORMA datasets.

The percentage of clearing takes a value of 0, no clearing detected, or in the range [ecogroup_bound:100), where ecogroup_bound is given by WRI/GFW/FORMA/thresholds . The time periods over which data is collected varies by N-days, where N is the number of days between the alert_date and the last MODIS NDVI update.

WRI的注意:WRI决定停止更新FORMA警报。其目的是简化全球森林观测的用户体验,减少冗余。我们发现,Terra-i和GLAD的使用频率更高。此外,以GLAD为标准,发现Terra-i在全球的表现优于FORMA。

FORMA警报是使用两个MODIS产品的组合来检测的。NDVI(归一化植被指数)和FIRMS(资源管理系统的火灾信息)。NDVI更新每16天处理一次,而火灾更新则每天处理一次。为每个生态组单独开发模型,将这两个输入与清理区域联系起来,使用汉森年度树木覆盖损失数据来训练模型。有资格成为警报的最低阈值是25%的像素被清除,尽管阈值因生态组而异,以尽量减少假阳性。下面是一个快速介绍FORMA数据集的脚本示例。

清除百分比的值为0,即没有检测到清除,或在[ecogroup_bound:100]范围内,其中ecogroup_bound由WRI/GFW/FORMA/thresholds给出。收集数据的时间段以N天为单位,其中N是警报_日期和最后一次MODIS NDVI更新之间的天数。

Dataset Availability

2012-01-01T00:00:00 - 2019-05-18T00:00:00

Dataset Provider

World Resources Institute / Global Forest Watch

Collection Snippet

ee.Image("WRI/GFW/FORMA/alerts")

Resolution

250 meters

Bands Table

Name

Description

Min

Max

Units

alert_delta

Percentage of clearing which during the 6 MODIS periods (96 + N days) preceding the corresponding alert_date value for the pixel

0

100

%

alert_date

Timestamp in milliseconds since 1970/01/01

ms

使用说明:

The FORMA datasets are available without restriction on use or distribution. WRI does request that the user give proper attribution and identify WRI and GFW, where applicable, as the source of the data.

代码:

代码语言:javascript
复制
var dataset = ee.Image('WRI/GFW/FORMA/alerts');
var formaAlerts = dataset.select('alert_delta');
var formaAlertsVis = {
  min: 25.0,
  max: 75.0,
  palette: ['d65898', 'da68a2'],
};
Map.setCenter(6.746, 46.529, 6);
Map.addLayer(formaAlerts, formaAlertsVis, 'FORMA Alerts');
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

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

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

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

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