
- 目录所有者
- Awesome GEE Community Catalog
- 数据集可用时间
- 2000-01-04T00:00:00Z–2025-09-23T00:00:00Z
- 数据集提供方
- National Drought Mitigation Center
- 标签
说明
美国干旱监测图每周四发布,显示美国境内出现干旱的地区。该地图使用五种分类:异常干旱 (D0),表示可能正在进入或摆脱干旱的区域;以及四种干旱程度:中度 (D1)、严重 (D2)、极度 (D3) 和特旱 (D4)。自 1999 年推出以来,美国干旱监测系统一直由内布拉斯加大学林肯分校的国家干旱缓解中心 (NDMC)、美国国家海洋和大气管理局 (NOAA) 和美国农业部 (USDA) 共同开发。NDMC 负责托管干旱监测网站和相关数据,并向 NOAA、USDA 和其他机构提供地图和数据。您可前往 droughtmonitor.unl.edu 免费获取相关信息。
频段
像素大小
250 米
波段
名称 | 最小值 | 最大值 | 像素大小 | 说明 |
---|---|---|---|---|
DM |
0 | 4 | 米 | 干旱等级 |
使用条款
使用条款
该作品已获得开放数据许可,可供使用。美国干旱监测图由内布拉斯加大学林肯分校的国家干旱缓解中心、美国农业部和美国国家海洋和大气管理局联合制作。地图由 NDMC 提供。
引用
引用:
National Drought Mitigation Center;美国农业部;美国国家海洋和大气管理局 (2023)。美国干旱监测图。内布拉斯加大学林肯分校。https://droughtmonitor.unl.edu/。上次访问时间:2023-09-17
通过 Earth Engine 探索
代码编辑器 (JavaScript)
var usdm = ee.ImageCollection( "projects/sat-io/open-datasets/us-drought-monitor" ); /* Category Description DO Abnormally Dry D1 Moderate Drought D2 Severe Drought D3 Extreme Drought D4 Exceptional Drought */ var usdm = ee.Image(usdm.toList(usdm.size()).get(-1)); // Define a dictionary which will be used to make legend and visualize image on map var dict = { names: [ "DO Abnormally Dry", //1 "D1 Moderate Drought", //2 "D2 Severe Drought", //3 "D3 Extreme Drought", //4 "D4 Exceptional Drought", //5 ], colors: ["FFFF00", "FCD37F", "FFAA00", "E60000", "730000"], }; // Create a panel to hold the legend widget var legend = ui.Panel({ style: { position: "bottom-left", padding: "8px 15px", }, }); // Function to generate the legend function addCategoricalLegend(panel, dict, title) { // Create and add the legend title. var legendTitle = ui.Label({ value: title, style: { fontWeight: "bold", fontSize: "18px", margin: "0 0 4px 0", padding: "0", }, }); panel.add(legendTitle); var loading = ui.Label("Loading legend...", { margin: "2px 0 4px 0" }); panel.add(loading); // Creates and styles 1 row of the legend. var makeRow = function (color, name) { // Create the label that is actually the colored box. var colorBox = ui.Label({ style: { backgroundColor: color, // Use padding to give the box height and width. padding: "8px", margin: "0 0 4px 0", }, }); // Create the label filled with the description text. var description = ui.Label({ value: name, style: { margin: "0 0 4px 6px" }, }); return ui.Panel({ widgets: [colorBox, description], layout: ui.Panel.Layout.Flow("horizontal"), }); }; // Get the list of palette colors and class names from the image. var palette = dict["colors"]; var names = dict["names"]; loading.style().set("shown", false); for (var i = 0; i < names.length; i++) { panel.add(makeRow(palette[i], names[i])); } Map.add(panel); } /* // Display map and legend /////////////////////////////////////////////////////////////////////////////// */ // Add the legend to the map addCategoricalLegend(legend, dict, "US Drought Monitor"); // Add USDM Image image to the map Map.addLayer( usdm, { min: 0, max: 4, palette: dict["colors"] }, usdm.get("system:index").getInfo() );