
- בעלי הקטלוג
- Awesome GEE Community Catalog
- זמינות קבוצת הנתונים
- 2000-01-04T00:00:00Z–2025-09-23T00:00:00Z
- ספק קבוצת הנתונים
- National Drought Mitigation Center
- תגים
תיאור
ה-U.S. Drought Monitor (מעקב הבצורת בארה"ב) הוא מפה שמתפרסמת בכל יום חמישי, ומוצגים בה החלקים בארה"ב שסובלים מבצורת. במפה נעשה שימוש בחמש סיווגים: יובש חריג (D0), שבו מוצגים אזורים שאולי נכנסים לבצורת או יוצאים ממנה, וארבע רמות של בצורת: בינונית (D1), חמורה (D2), קיצונית (D3) וחריגה (D4). מאז הקמתה בשנת 1999, מערכת Drought Monitor היא תוצר של עבודת צוות משותפת של National Drought Mitigation Center (המרכז הלאומי להפחתת השפעות הבצורת, NDMC) באוניברסיטת נברסקה-לינקולן, National Oceanic and Atmospheric Administration (המינהל הלאומי לאוקיינוסים ולאטמוספירה, NOAA) ומשרד החקלאות של ארה"ב (USDA). ה-NDMC מארח את האתר של המעקב אחר הבצורת ואת הנתונים שקשורים אליו, ומספק את המפה והנתונים ל-NOAA, ל-USDA ולסוכנויות אחרות. הוא זמין בחינם באתר droughtmonitor.unl.edu.
תחום תדרים
גודל הפיקסל
250 מטרים
רצועות
שם | מינימום | מקסימום | גודל הפיקסל | תיאור |
---|---|---|---|---|
DM |
0 | 4 | מטרים | שיעורים בנושא בצורת |
תנאים והגבלות
תנאים והגבלות
העבודה הזו בשימוש במסגרת רישיון נתונים פתוחים. הנתונים של U.S. Drought Monitor (המעקב אחר הבצורת בארה"ב) מופקים בשיתוף פעולה של National Drought Mitigation Center (המרכז הלאומי להקלת השפעות הבצורת) באוניברסיטת נברסקה-לינקולן, מחלקת החקלאות של ארצות הברית ו-National Oceanic and Atmospheric Administration (הרשות הלאומית של ארה"ב לאוקיינוסים ולאטמוספירה). המפה באדיבות 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/. הגישה האחרונה: 2023-09-17
סיור עם פלטפורמת Earth Engine
Code Editor (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() );