
- 資料集可用性
- 2001-01-01T00:00:00Z–2017-01-01T00:00:00Z
- 資料集來源
- iSDA
- 標記
說明
土壤深度 0-20 公分和 20-50 公分的 USDA 質地類別。 在叢林密布的區域 (通常位於中非),模型準確度較低,因此可能會出現帶狀 (條紋) 等構件。
土壤性質預測是由 Innovative Solutions for Decision Agriculture Ltd. (iSDA) 進行,採用機器學習技術搭配遙測資料,以及超過 10 萬個分析過的土壤樣本訓練集,以 30 公尺的像素大小進行預測。
詳情請參閱常見問題和技術資訊說明文件。如要提交問題或要求支援,請前往iSDAsoil 網站。
頻帶
像素大小
30 公尺
頻帶
名稱 | 像素大小 | 說明 |
---|---|---|
texture_0_20 |
公尺 | 0 到 20 公分深度的 USDA 質地類別 |
texture_20_50 |
公尺 | 20 至 50 公分深度的 USDA 質地類別 |
texture_0_20 類別表
值 | 顏色 | 說明 |
---|---|---|
1 | #d5c36b | 黏土 |
2 | #b96947 | 粉質黏土 |
3 | #9d3706 | Sandy Clay |
4 | #ae868f | 黏壤土 |
5 | #f86714 | 粉質黏壤土 |
6 | #46d143 | 砂質黏壤土 |
7 | #368f20 | 壤土 |
8 | #3e5a14 | 粉質壤土 |
9 | #ffd557 | 砂壤土 |
10 | #fff72e | Silt |
11 | #ff5a9d | 壤質砂土 |
12 | #ff005b | 沙 |
texture_20_50 課程表
值 | 顏色 | 說明 |
---|---|---|
1 | #d5c36b | 黏土 |
2 | #b96947 | 粉質黏土 |
3 | #9d3706 | Sandy Clay |
4 | #ae868f | 黏壤土 |
5 | #f86714 | 粉質黏壤土 |
6 | #46d143 | 砂質黏壤土 |
7 | #368f20 | 壤土 |
8 | #3e5a14 | 粉質壤土 |
9 | #ffd557 | 砂壤土 |
10 | #fff72e | Silt |
11 | #ff5a9d | 壤質砂土 |
12 | #ff005b | 沙 |
使用條款
使用條款
引用內容
引用內容:
Hengl, T.、Miller, M.A.E.、Križan, J. 等人。African soil properties and nutrients mapped at 30 m spatial resolution using two-scale ensemble machine learning.Sci Rep 11, 6130 (2021). doi:10.1038/s41598-021-85639-y
使用 Earth Engine 探索
程式碼編輯器 (JavaScript)
var raw = ee.Image("ISDASOIL/Africa/v1/texture_class"); Map.addLayer( raw.select(0), {}, "Texture class, 0-20 cm"); Map.addLayer( raw.select(1), {}, "Texture class, 20-50 cm"); Map.setCenter(25, -3, 2);