GlobFire Daily Fire Event Detection Based on MCD64A1

JRC/GWIS/GlobFire/v2/DailyPerimeters
در دسترس بودن مجموعه داده
2001-01-01T00:00:00Z–2021-01-01T00:00:00Z
ارائه دهنده مجموعه داده
برچسب ها
آتش سوزی در منطقه سوخته globfire mcd64a1 آتش سوزی ناشی از مدیس

توضیحات

مرزهای آتش بر اساس مجموعه داده MODIS MCD64A1. داده‌ها بر اساس الگوریتمی محاسبه شدند که بر رمزگذاری در ساختار نمودار یک رابطه فضا-زمان بین تکه‌های مناطق سوخته تکیه دارد.

هر آتش سوزی دارای یک شماره منحصر به فرد برای شناسایی رویداد است.

طرح واره جدول

طرح واره جدول

نام تایپ کنید توضیحات
شناسه INT

شناسه عددی آتش

تاریخ اولیه INT

تاریخ آتش سوزی اولیه بر حسب میلی ثانیه از 01-01-1970

شرایط استفاده

شرایط استفاده

CC-BY-4.0

نقل قول ها

نقل قول ها:
  • آرتس، تی.، اوم، دی.، دی ریگو، دی.، دورانت، تی.ح.، مایانتی، پی.، لیبرتا، جی.، و سان میگل-آیانز، جی. (2019). مجموعه داده جهانی آتش سوزی برای تجزیه و تحلیل رژیم های آتش سوزی و رفتار آتش سوزی. داده های علمی، 6(1)، 1-11. doi:10.1038/s41597-019-0312-2

DOI

با Earth Engine کاوش کنید

ویرایشگر کد (جاوا اسکریپت)

// 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);
در ویرایشگر کد باز کنید