天天看點

Google Earth Engine ——資料全解析專輯(“CSP/ERGo/1_0/Global/SRTM_landforms“)SRTM 90m地貌資料集

SRTM 地貌資料集提供了通過組合連續熱-日照負荷指數 (SRTM CHILI) 和多尺度地形位置指數 (SRTM mTPI) 資料集建立的地貌類。它基于 30m SRTM DEM(在 EE 中作為 USGS/SRTMGL1_003 提供)。

保護科學合作夥伴 (CSP) 生态相關地貌學 (ERGo) 資料集、地貌和地貌包含有關地貌和地貌(又名土地面)模式的詳細的多尺度資料。盡管這些資料有許多潛在用途,但這些資料的最初目的是開發适合氣候适應規劃的地貌和地貌類别的生态相關分類和地圖。由于未來氣候條件存在很大的不确定性,生态響應的不确定性甚至更大,是以提供有關不太可能發生變化的資訊為管理者制定穩健的氣候适應計劃提供了堅實的基礎。景觀的這些特征的量化對分辨率很敏感,是以在給定指數的範圍和特征的情況下,我們提供可能的最高分辨率。      

Dataset Availability

2006-01-24T00:00:00 - 2011-05-13T00:00:00

Dataset Provider

Conservation Science Partners

Collection Snippet

ee.Image("CSP/ERGo/1_0/Global/SRTM_landforms")

Resolution

90 meters

Bands Table

Name Description
constant SRTM-derived landform classes

Class Table: constant

Value Color Color Value Description
11 #141414 Peak/ridge (warm)
12 #383838 Peak/ridge
13 #808080 Peak/ridge (cool)
14 #EBEB8F Mountain/divide
15 #F7D311 Cliff
21 #AA0000 Upper slope (warm)
22 #D89382 Upper slope
23 #DDC9C9 Upper slope (cool)
24 #DCCDCE Upper slope (flat)
31 #1C6330 Lower slope (warm)
32 #68AA63 Lower slope
33 #B5C98E Lower slope (cool)
34 #E1F0E5 Lower slope (flat)
41 #a975ba Valley
42 #6f198c Valley (narrow)

代碼:

var dataset = ee.Image('CSP/ERGo/1_0/Global/SRTM_landforms');
var landforms = dataset.select('constant');
var landformsVis = {
  min: 11.0,
  max: 42.0,
  palette: [
    '141414', '383838', '808080', 'EBEB8F', 'F7D311', 'AA0000', 'D89382',
    'DDC9C9', 'DCCDCE', '1C6330', '68AA63', 'B5C98E', 'E1F0E5', 'a975ba',
    '6f198c'
  ],
};
Map.setCenter(-105.58, 40.5498, 11);
Map.addLayer(landforms, landformsVis, 'Landforms');
           
Google Earth Engine ——資料全解析專輯(“CSP/ERGo/1_0/Global/SRTM_landforms“)SRTM 90m地貌資料集