Google Earth Engine ——MCD64A1.006 MODIS Burned Area Monthly Global 500m第6版燃烧区数据产品

本文主要是介绍Google Earth Engine ——MCD64A1.006 MODIS Burned Area Monthly Global 500m第6版燃烧区数据产品,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Terra和Aqua结合的MCD64A1第6版燃烧区数据产品是每月一次的全球网格化500米产品,包含每像素的燃烧区和质量信息。MCD64A1烧毁面积绘图方法采用了500米MODIS表面反射图像和1公里MODIS主动火灾观测。该算法使用对燃烧敏感的植被指数(VI)来创建动态阈值,应用于综合数据。VI是由MODIS短波红外大气校正表面反射带5和7得出的,带有时间纹理的测量。该算法确定了每个单独的MODIS瓦片中的500米网格单元的燃烧日期。日期被编码在一个单一的数据层中,作为焚烧发生的日历年的序日,其值被分配给未焚烧的土地像素,并为缺失的数据和水网格单元保留额外的特殊值。

The Terra and Aqua combined MCD64A1 Version 6 Burned Area data product is a monthly, global gridded 500m product containing per-pixel burned-area and quality information. The MCD64A1 burned-area mapping approach employs 500m MODIS Surface Reflectance imagery coupled with 1km MODIS active fire observations. The algorithm uses a burn sensitive vegetation index (VI) to create dynamic thresholds that are applied to the composite data. The VI is derived from MODIS shortwave infrared atmospherically corrected surface reflectance bands 5 and 7 with a measure of temporal texture. The algorithm identifies the date of burn for the 500m grid cells within each individual MODIS tile. The date is encoded in a single data layer as the ordinal day of the calendar year on which the burn occurred, with values assigned to unburned land pixels and additional special values reserved for missing data and water grid cells.

Documentation:

  • User's Guide

  • Algorithm Theoretical Basis Document (ATBD)

  • General Documentationhttps://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/6/MCD64A1

Dataset Availability

 2000-11-01T00:00:00 - 2021-07-01T00:00:00

Dataset Provider

NASA LP DAAC at the USGS EROS Center

Collection Snippet

Copied

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

Tags

burnfiregeophysicalmodismcd64a1monthlyglobalusgsnasa

DESCRIPTIONBANDSTERMS OF USECITATIONSDOIS

Resolution

500 meters

Bands Table

NameDescriptionMinMax
BurnDateBurn day of year. Possible values: 0 (unburned), 1-366 (approximate Julian day of burning).0366
UncertaintyEstimated uncertainty in burn day0100
QAQuality assurance indicators
QA Bitmask
  • Bit 0: Land/water
    • 0: Water grid cell
    • 1: Land grid cell
  • Bit 1: Valid data flag. A value of 1 indicates that there was sufficient valid data in the reflectance time series for the grid cell to be processed. (NB Water grid cells will always have this bit clear.)
    • 0: Insufficient valid data
    • 1: Sufficient valid data
  • Bit 2: Shortened mapping period. This flag indicates that the period of reliable mapping does not encompass the full one-month product period, i.e., burns could not be reliably mapped over the full calendar month.
    • 0: Mapping period not shortened
    • 1: Mapping period shortened
  • Bit 3: Grid cell was relabeled during the contextual relabeling phase of the algorithm.
    • 0: Grid cell was not relabeled
    • 1: Grid cell was relabeled
  • Bit 4: Spare bit
    • 0: N/A
  • Bits 5-7: Special condition code reserved for unburned grid cells. This code provides an explanation for any grid cells that were summarily classified as *unburned* by the detection algorithm due to special circumstances.
    • 0: None or not applicable (i.e., burned, unmapped, or water grid cell).
    • 1: Valid observations spaced too sparsely in time.
    • 2: Too few training observations or insufficient spectral separability between burned and unburned classes.
    • 3: Apparent burn date at limits of time series.
    • 4: Apparent water contamination.
    • 5: Persistent hot spot.
    • 6: Reserved for future use.
    • 7: Reserved for future use.
FirstDayFirst day of the year of reliable change detection0366
LastDayLast day of the year of reliable change detection0366

 使用说明:

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

通过LP DAAC获得的MODIS数据和产品对后续使用、销售或再分配没有限制。

引用:

LP DAAC - MCD12Q1LP DAAC - Land Processes Distributed Active Archive Center - Sioux Falls, SDhttps://doi.org/10.5067/MODIS/MCD12Q1.006

代码:

var dataset = ee.ImageCollection('MODIS/006/MCD64A1').filter(ee.Filter.date('2017-01-01', '2018-05-01'));
var burnedArea = dataset.select('BurnDate');
var burnedAreaVis = {min: 30.0,max: 341.0,palette: ['4e0400', '951003', 'c61503', 'ff1901'],
};
Map.setCenter(6.746, 46.529, 2);
Map.addLayer(burnedArea, burnedAreaVis, 'Burned Area');

这篇关于Google Earth Engine ——MCD64A1.006 MODIS Burned Area Monthly Global 500m第6版燃烧区数据产品的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/604153

相关文章

Java利用JSONPath操作JSON数据的技术指南

《Java利用JSONPath操作JSON数据的技术指南》JSONPath是一种强大的工具,用于查询和操作JSON数据,类似于SQL的语法,它为处理复杂的JSON数据结构提供了简单且高效... 目录1、简述2、什么是 jsONPath?3、Java 示例3.1 基本查询3.2 过滤查询3.3 递归搜索3.4

MySQL大表数据的分区与分库分表的实现

《MySQL大表数据的分区与分库分表的实现》数据库的分区和分库分表是两种常用的技术方案,本文主要介绍了MySQL大表数据的分区与分库分表的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有... 目录1. mysql大表数据的分区1.1 什么是分区?1.2 分区的类型1.3 分区的优点1.4 分

Mysql删除几亿条数据表中的部分数据的方法实现

《Mysql删除几亿条数据表中的部分数据的方法实现》在MySQL中删除一个大表中的数据时,需要特别注意操作的性能和对系统的影响,本文主要介绍了Mysql删除几亿条数据表中的部分数据的方法实现,具有一定... 目录1、需求2、方案1. 使用 DELETE 语句分批删除2. 使用 INPLACE ALTER T

Python Dash框架在数据可视化仪表板中的应用与实践记录

《PythonDash框架在数据可视化仪表板中的应用与实践记录》Python的PlotlyDash库提供了一种简便且强大的方式来构建和展示互动式数据仪表板,本篇文章将深入探讨如何使用Dash设计一... 目录python Dash框架在数据可视化仪表板中的应用与实践1. 什么是Plotly Dash?1.1

Redis 中的热点键和数据倾斜示例详解

《Redis中的热点键和数据倾斜示例详解》热点键是指在Redis中被频繁访问的特定键,这些键由于其高访问频率,可能导致Redis服务器的性能问题,尤其是在高并发场景下,本文给大家介绍Redis中的热... 目录Redis 中的热点键和数据倾斜热点键(Hot Key)定义特点应对策略示例数据倾斜(Data S

Python实现将MySQL中所有表的数据都导出为CSV文件并压缩

《Python实现将MySQL中所有表的数据都导出为CSV文件并压缩》这篇文章主要为大家详细介绍了如何使用Python将MySQL数据库中所有表的数据都导出为CSV文件到一个目录,并压缩为zip文件到... python将mysql数据库中所有表的数据都导出为CSV文件到一个目录,并压缩为zip文件到另一个

SpringBoot整合jasypt实现重要数据加密

《SpringBoot整合jasypt实现重要数据加密》Jasypt是一个专注于简化Java加密操作的开源工具,:本文主要介绍详细介绍了如何使用jasypt实现重要数据加密,感兴趣的小伙伴可... 目录jasypt简介 jasypt的优点SpringBoot使用jasypt创建mapper接口配置文件加密

使用Python高效获取网络数据的操作指南

《使用Python高效获取网络数据的操作指南》网络爬虫是一种自动化程序,用于访问和提取网站上的数据,Python是进行网络爬虫开发的理想语言,拥有丰富的库和工具,使得编写和维护爬虫变得简单高效,本文将... 目录网络爬虫的基本概念常用库介绍安装库Requests和BeautifulSoup爬虫开发发送请求解

Oracle存储过程里操作BLOB的字节数据的办法

《Oracle存储过程里操作BLOB的字节数据的办法》该篇文章介绍了如何在Oracle存储过程中操作BLOB的字节数据,作者研究了如何获取BLOB的字节长度、如何使用DBMS_LOB包进行BLOB操作... 目录一、缘由二、办法2.1 基本操作2.2 DBMS_LOB包2.3 字节级操作与RAW数据类型2.

MySQL使用binlog2sql工具实现在线恢复数据功能

《MySQL使用binlog2sql工具实现在线恢复数据功能》binlog2sql是大众点评开源的一款用于解析MySQLbinlog的工具,根据不同选项,可以得到原始SQL、回滚SQL等,下面我们就来... 目录背景目标步骤准备工作恢复数据结果验证结论背景生产数据库执行 SQL 脚本,一般会经过正规的审批