From 6910e41c199f9673f8d236b928ab988ef1c55be6 Mon Sep 17 00:00:00 2001 From: samapriya Date: Mon, 28 Oct 2024 23:54:45 -0500 Subject: [PATCH] - updated dataset - added NLCD Landcover Change --- community_datasets.json | 12 ++++++++++++ docs/projects/annual_nlcd.md | 1 + 2 files changed, 13 insertions(+) diff --git a/community_datasets.json b/community_datasets.json index 63e744b83..dbe61fee7 100644 --- a/community_datasets.json +++ b/community_datasets.json @@ -26582,6 +26582,18 @@ "thematic_group": "Regional Land Use and Land Cover", "thumbnail": "https://gee-community-catalog.org/thumbnails/annual_nlcd.png" }, + { + "title": "USGS Annual NLCD Land Cover Change Dataset", + "sample_code": "https://code.earthengine.google.com/?scriptPath=users/sat-io/awesome-gee-catalog-examples:regional-landuse-landcover/NLCD-ANNUAL-LANDCOVER", + "type": "image_collection", + "id": "projects/sat-io/open-datasets/USGS/ANNUAL_NLCD/LANDCOVER_CHANGE", + "provider": "U.S. Geological Survey (USGS)", + "tags": "Land Cover, Land Change, Landsat, Deep Learning, Annual NLCD, USGS, Environmental Monitoring", + "license": "Creative Commons Zero v1.0 Universal", + "docs": "https://gee-community-catalog.org/projects/annual_nlcd", + "thematic_group": "Regional Land Use and Land Cover", + "thumbnail": "https://gee-community-catalog.org/thumbnails/annual_nlcd.png" + }, { "title": "USGS Annual NLCD Fractional Impervious Surface", "sample_code": "https://code.earthengine.google.com/?scriptPath=users/sat-io/awesome-gee-catalog-examples:regional-landuse-landcover/NLCD-ANNUAL-LANDCOVER-LAYERS", diff --git a/docs/projects/annual_nlcd.md b/docs/projects/annual_nlcd.md index 988266147..fc19e568a 100644 --- a/docs/projects/annual_nlcd.md +++ b/docs/projects/annual_nlcd.md @@ -85,6 +85,7 @@ Sample Code: https://code.earthengine.google.com/?scriptPath=users/sat-io/awesom ```js var nlcd_landcover_confidence = ee.ImageCollection("projects/sat-io/open-datasets/USGS/ANNUAL_NLCD/LANDCOVER_CONFIDENCE"); +var nlcd_landcover_change = ee.ImageCollection("projects/sat-io/open-datasets/USGS/ANNUAL_NLCD/LANDCOVER_CHANGE"); var nlcd_fractional_impervious_surface = ee.ImageCollection("projects/sat-io/open-datasets/USGS/ANNUAL_NLCD/FRACTIONAL_IMPERVIOUS_SURFACE"); var nlcd_impervious_descriptor = ee.ImageCollection("projects/sat-io/open-datasets/USGS/ANNUAL_NLCD/IMPERVIOUS_DESCRIPTOR"); var nlcd_spectral_change_doy = ee.ImageCollection("projects/sat-io/open-datasets/USGS/ANNUAL_NLCD/SPECTRAL_CHANGE_DOY");