
- 数据集可用性
- 2001-01-01T00:00:00Z–2021-01-01T00:00:00Z
- 数据集提供商
- 欧盟委员会联合研究中心,全球野火信息系统
- 标签
说明
基于 MODIS 数据集 MCD64A1 的火灾边界。这些数据是根据一种算法计算得出的,该算法依赖于在图结构中对烧毁区域斑块之间的时空关系进行编码。
每起火灾都有一个唯一编号来标识相应事件。
表架构
表架构
名称 | 类型 | 说明 |
---|---|---|
ID | INT | 火灾的数字 ID |
InitialDate | INT | 初始触发日期(以自 1970 年 1 月 1 日起的毫秒数表示) |
使用条款
使用条款
引用
引用:
Artés, T.、Oom, D.、De Rigo, D.,Durrant, T. H.,Maianti, P.,Libertà, G.,& San-Miguel-Ayanz, J. (2019)。用于分析火灾状况和火灾行为的全球野火数据集。Scientific data, 6(1), 1-11. doi:10.1038/s41597-019-0312-2
DOI
使用 Earth Engine 探索
代码编辑器 (JavaScript)
// Folder name for a series of tables. var folder = 'JRC/GWIS/GlobFire/v2/DailyPerimeters'; // List available tables using ee.data.listAssets with asynchronous callback. function printAssetList(listAssetsOutput) { print('Asset list:', listAssetsOutput['assets']); } ee.data.listAssets(folder, {}, printAssetList); // Define a table name (table id) identified from the list of available tables. var tableName = 'JRC/GWIS/GlobFire/v2/DailyPerimeters/2020'; var computeArea = function(f) { return f.set({'area': f.area()}); }; // Import a selected table as a FeatureCollection. var features = ee.FeatureCollection(tableName).map(computeArea); // Visualization parameters for linear fire area gradient. var visParams = { palette: ['f5ff64', 'b5ffb4', 'beeaff', 'ffc0e8', '8e8dff', 'adadad'], min: 0, max: 600000000, opacity: 0.8, }; // Paint fire perimeters to an image using computed fire area as the value property. var image = ee.Image().float().paint(features, 'area'); // Display the image to the map (include features for exploring with Inspector). Map.addLayer(image, visParams, 'GlobFire 2020'); Map.addLayer(features, null, 'For Inspector', false); Map.setCenter(-121.23, 39.7, 12);