This dataset is a China terrace map at 30 m resolution in 2018. It was developed through supervised pixel-based classification using multisource and multi-temporal data based on the Google Earth Engine platform. The overall accuracy and kappa coefficient achieved 94% and 0.72, respectively. This first 30 m China terrace map can be used for studies on soil erosion, food security, biogeochemical cycle, biodiversity, and ecosystem service assessments.
该数据集是2018年30米分辨率的中国梯田地图。它是通过使用基于谷歌地球引擎平台的多源和多时空数据进行基于像素的监督性分类开发的。总体精度和卡帕系数分别达到94%和0.72。这张首个30米中国梯田地图可用于土壤侵蚀、粮食安全、生物地球化学循环、生物多样性和生态系统服务评估等方面的研究。
Dataset Availability
2018-01-01T00:00:00 - 2019-01-01T00:00:00
Dataset Provider
Department of Earth System Science, Tsinghua University (DESS, THU)
Collection Snippet
ee.Image("Tsinghua/DESS/ChinaTerraceMap/v1")
Bands Table
Name | Description | Resolution |
terrace | 1 when a terrace is present, 0 when it's not. | 30 meters |
Class Table: terrace
Value | Color | Color Value | Description |
0 | #ffffff | No terraces | |
1 | #a3ff74 | Terraces present |
引用:
Cao, B., Yu, L., Naipal, V., Ciais, P., Li, W., Zhao, Y., Wei, W., Chen, D., Liu, Z., and Gong, P.: A 30 m terrace mapping in China using Landsat 8 imagery and digital elevation model based on the Google Earth Engine, Earth Syst. Sci. Data, 13, 2437–2456, ESSD - A 30 m terrace mapping in China using Landsat 8 imagery and digital elevation model based on the Google Earth Engine, 2021.
代码:
var image = ee.Image('Tsinghua/DESS/ChinaTerraceMap/v1'); var image = image.updateMask(image); Map.addLayer( image, {min:0, max:1, palette: ['a3ff74']}, 'Terraces'); Map.setCenter(106.6, 30.4, 10); Map.setOptions("SATELLITE");