
- เจ้าของแคตตาล็อก
- แคตตาล็อกชุมชน GEE ที่ยอดเยี่ยม
- ความพร้อมใช้งานของชุดข้อมูล
- 2000-01-04T00:00:00Z–2025-09-23T00:00:00Z
- ผู้ให้บริการชุดข้อมูล
- National Drought Mitigation Center
- แท็ก
คำอธิบาย
เครื่องมือติดตามภัยแล้งของสหรัฐอเมริกาเป็นแผนที่ที่เผยแพร่ทุกวันพฤหัสบดี ซึ่งแสดงส่วนต่างๆ ของสหรัฐอเมริกาที่กำลังประสบปัญหาภัยแล้ง แผนที่ใช้การจัดประเภท 5 ระดับ ได้แก่ แห้งแล้งผิดปกติ (D0) ซึ่งแสดงพื้นที่ที่อาจกำลังเข้าสู่หรือพ้นจากภาวะแห้งแล้ง และภาวะแห้งแล้ง 4 ระดับ ได้แก่ ปานกลาง (D1) รุนแรง (D2) รุนแรงมาก (D3) และรุนแรงที่สุด (D4) Drought Monitor เป็นผลงานของทีมตั้งแต่เริ่มก่อตั้งในปี 1999 โดยผลิตร่วมกันระหว่าง National Drought Mitigation Center (NDMC) ที่ University of Nebraska-Lincoln, National Oceanic and Atmospheric Administration (NOAA) และกระทรวงเกษตรของสหรัฐอเมริกา (USDA) NDMC เป็นผู้โฮสต์เว็บไซต์ของ Drought Monitor และข้อมูลที่เกี่ยวข้อง รวมถึงจัดทำแผนที่และข้อมูลให้กับ NOAA, USDA และหน่วยงานอื่นๆ ซึ่งพร้อมให้ใช้งานได้ฟรีที่ droughtmonitor.unl.edu
ย่านความถี่
ขนาดพิกเซล
250 เมตร
ย่านความถี่
ชื่อ | ต่ำสุด | สูงสุด | ขนาดพิกเซล | คำอธิบาย |
---|---|---|---|---|
DM |
0 | 4 | เมตร | ชั้นเรียนการดริฟต์ |
ข้อกำหนดในการใช้งาน
ข้อกำหนดในการใช้งาน
ผลงานนี้ได้รับอนุญาตภายใต้สัญญาอนุญาตให้ใช้ข้อมูลแบบเปิด U.S. Drought Monitor เป็นผลงานร่วมกันของศูนย์บรรเทาภัยแล้งแห่งชาติ ที่มหาวิทยาลัยเนบราสกา-ลินคอล์น กระทรวงเกษตรของสหรัฐอเมริกา และสำนักงานบริหารมหาสมุทรและชั้นบรรยากาศแห่งชาติ แผนที่จาก NDMC
การอ้างอิง
National Drought Mitigation Center; U.S. Department of Agriculture; National Oceanic and Atmospheric Administration (2023) United States Drought Monitor University of Nebraska-Lincoln. https://droughtmonitor.unl.edu/ เข้าถึงเมื่อวันที่ 17-09-2023
สำรวจด้วย 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() );