- 目录所有者
- MapBiomas
- 数据集可用时间
- 1985-01-01T00:00:00Z–2024-12-31T00:00:00Z
- 数据集生产者
- MapBiomas
- 联系人
- contato@mapbiomas.org
- 标签
说明
厄瓜多尔的 MapBiomas 土地利用和土地覆盖 (LULC) 数据集由 MapBiomas 项目每年使用 Landsat 卫星图像和机器学习分类技术生成。该数据集提供了一致的年度土地覆盖地图,分辨率为 30 米,涵盖 1985 年至 2024 年期间。
厄瓜多尔的领土包含四个截然不同的自然区域:亚马逊(东方)、安第斯山脉高地(山脉)、太平洋沿岸(海岸)和加拉帕戈斯群岛。这种地理多样性体现在分类图例中,其中包含厄瓜多尔特有的生态系统类别,例如安第斯山脉草本和灌木植被、安第斯山脉洪泛草本、红树林和香蕉种植园。
集合中的每个影像都包含一个名为“classification”的波段,其中包含表示相应年份的分类土地覆盖类别的整数值。分类基于 Landsat 5 (TM)、Landsat 7 (ETM+)、Landsat 8 和 9 (OLI/TIRS) 的地表反射率数据,这些数据经过预处理,可生成年度无云合成影像。分类流程使用经过参考样本训练并由区域专家验证的自动化决策树。
如需详细了解分类图例、方法和准确性评估,请访问 MapBiomas 网站。
频段
波段
像素大小:30 米(所有波段)
| 名称 | 像元大小 | 说明 |
|---|---|---|
classification |
30 米 | 土地利用和土地覆盖分类,整数值对应于 MapBiomas Ecuador 图例类别。 |
分类类别表
| 值 | 颜色 | 说明 |
|---|---|---|
| 1 | #1f8d49 | 天然森林 |
| 3 | #1f8d49 | 森林 |
| 4 | #7dc975 | 疏林 |
| 5 | #04381d | Mangrove |
| 6 | #026975 | 水淹森林 |
| 9 | #7a5900 | 造林学 |
| 10 | #d6bc74 | 非森林自然地貌 |
| 11 | #519799 | 非森林湿地 |
| 12 | #d6bc74 | 草地 |
| 13 | #d89f5c | 其他非森林自然地貌 |
| 14 | #ffefc3 | 农业和造林 |
| 21 | #ffefc3 | 用途多样 |
| 22 | #d4271e | 无植被区域 |
| 23 | #ffa07a | 海滩、沙丘和沙地 |
| 24 | #d4271e | 城市基础设施 |
| 25 | #db4d4f | 其他人为非植被区 |
| 26 | #2532e4 | 水 |
| 27 | #ffffff | 未观测到 |
| 29 | #ffaa5f | 岩石露头 |
| 30 | #9c0027 | 矿业 |
| 31 | #091077 | 水产业 |
| 33 | #2532e4 | 河流、湖泊和海洋 |
| 34 | #93dfe6 | Glacier |
| 68 | #e97a7a | 其他无植被的自然区域 |
| 74 | #be83f7 | 香蕉 |
| 81 | #dfeb62 | 安第斯草本和灌木植被 |
| 82 | #6fc179 | 被淹没的安第斯草本植物 |
图片属性
图像属性
| 名称 | 类型 | 说明 |
|---|---|---|
| 年 | INT | 土地利用和土地覆盖分类的年份。 |
| 版本 | STRING | 土地利用和土地覆盖分类的版本。 |
| collection_id | 双精度 | 土地利用和土地覆盖分类的集合标识符。 |
使用条款
使用条款
引用
Souza 等人 (2020) - Reconstructing Three Decades of Land Use and Land Cover Changes in Brazilian Biomes with Landsat Archive and Earth Engine - Remote Sensing, Volume 12, Issue 17, 10.3390/rs12172735.
DOI
通过 Earth Engine 探索
代码编辑器 (JavaScript)
/** MapBiomas Ecuador - Land Use and Land Cover V1 */ var assetPath = 'projects/mapbiomas-public/assets/ecuador/lulc/v1'; var year = 2024; var collection = ee.ImageCollection(assetPath) .filter(ee.Filter.eq('year', year)); var visParams = { min: 0, max: 82, palette: [ '000000', // [0] -- '1f8d49', // [1] Natural forest '000000', // [2] -- '1f8d49', // [3] Forest '7dc975', // [4] Open forest '04381d', // [5] Mangrove '026975', // [6] Flooded forest '000000', // [7] -- '000000', // [8] -- '7a5900', // [9] Silviculture 'd6bc74', // [10] Non-forest natural formation '519799', // [11] Non forest wetland 'd6bc74', // [12] Grassland 'd89f5c', // [13] Other non-forest natural formation 'ffefc3', // [14] Farming and silviculture '000000', // [15] -- '000000', // [16] -- '000000', // [17] -- '000000', // [18] -- '000000', // [19] -- '000000', // [20] -- 'ffefc3', // [21] Mosaic of uses 'd4271e', // [22] Non-vegetated area 'ffa07a', // [23] Beach, dune and sand spot 'd4271e', // [24] Urban infrastructure 'db4d4f', // [25] Other anthropic non-vegetated area '2532e4', // [26] Water 'ffffff', // [27] Not observed '000000', // [28] -- 'ffaa5f', // [29] Rocky outcrop '9c0027', // [30] Mining '091077', // [31] Aquaculture '000000', // [32] -- '2532e4', // [33] River, lake and ocean '93dfe6', // [34] Glacier '000000', // [35] -- '000000', // [36] -- '000000', // [37] -- '000000', // [38] -- '000000', // [39] -- '000000', // [40] -- '000000', // [41] -- '000000', // [42] -- '000000', // [43] -- '000000', // [44] -- '000000', // [45] -- '000000', // [46] -- '000000', // [47] -- '000000', // [48] -- '000000', // [49] -- '000000', // [50] -- '000000', // [51] -- '000000', // [52] -- '000000', // [53] -- '000000', // [54] -- '000000', // [55] -- '000000', // [56] -- '000000', // [57] -- '000000', // [58] -- '000000', // [59] -- '000000', // [60] -- '000000', // [61] -- '000000', // [62] -- '000000', // [63] -- '000000', // [64] -- '000000', // [65] -- '000000', // [66] -- '000000', // [67] -- 'e97a7a', // [68] Other natural non-vegetated area '000000', // [69] -- '000000', // [70] -- '000000', // [71] -- '000000', // [72] -- '000000', // [73] -- 'be83f7', // [74] Banana '000000', // [75] -- '000000', // [76] -- '000000', // [77] -- '000000', // [78] -- '000000', // [79] -- '000000', // [80] -- 'dfeb62', // [81] Andean Herbaceous and Shrubby Vegetation '6fc179', // [82] Flooded Andean Herbaceous ], }; Map.addLayer(collection, visParams, 'MapBiomas Ecuador LULC ' + year); Map.centerObject(collection, 7);