- Właściciel katalogu
- Awesome GEE Community Catalog
- Dostępność zbioru danych
- 2000-01-04T00:00:00Z–2026-04-14T00:00:00Z
- Producent zbioru danych
- National Drought Mitigation Center
- Tagi
Opis
U.S. Drought Monitor to mapa publikowana co czwartek, która pokazuje obszary Stanów Zjednoczonych dotknięte suszą. Mapa wykorzystuje 5 klasyfikacji: nienormalnie sucho (D0), która pokazuje obszary, które mogą być dotknięte suszą lub z niej wychodzą, oraz 4 poziomy suszy: umiarkowana (D1), poważna (D2), ekstremalna (D3) i wyjątkowa (D4). Drought Monitor jest wynikiem współpracy zespołowej od momentu jego powstania w 1999 r. Jest on tworzony wspólnie przez National Drought Mitigation Center (NDMC) na University of Nebraska-Lincoln, National Oceanic and Atmospheric Administration (NOAA) oraz U.S. Department of Agriculture (USDA). NDMC hostuje witrynę Drought Monitor i powiązane dane oraz udostępnia mapę i dane NOAA, USDA i innym agencjom. Jest ona dostępna bezpłatnie na stronie droughtmonitor.unl.edu.
Pasma
Pasma
Rozmiar piksela: 250 metrów (wszystkie pasma)
| Nazwa | Minimum | Maks. | Rozmiar piksela | Opis |
|---|---|---|---|---|
DM |
0 | 4 | 250 metrów | Klasy suszy |
Warunki korzystania z usługi
Warunki korzystania z usługi
Praca jest licencjonowana na podstawie licencji Open Data. U.S. Drought Monitor jest tworzony wspólnie przez National Drought Mitigation Center na University of Nebraska-Lincoln, United States Department of Agriculture oraz National Oceanic and Atmospheric Administration. Mapa dzięki uprzejmości NDMC.
Cytaty
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/. Dostęp: 2023-09-17
Odkrywaj za pomocą Earth Engine
Edytor kodu (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() );