Google Earth Engine ——数据全解析专辑(CSP/ERGo/1_0/Global/ALOS_landforms)ALOS 地貌数据集

简介: Google Earth Engine ——数据全解析专辑(CSP/ERGo/1_0/Global/ALOS_landforms)ALOS 地貌数据集

The ALOS Landform dataset provides landform classes created by combining the Continuous Heat-Insolation Load Index (ALOS CHILI) and the multi-scale Topographic Position Index (ALOS mTPI) datasets. It is based on the 30m "AVE" band of JAXA's ALOS DEM (available in EE as JAXA/ALOS/AW3D30_V1_1).

 

The Conservation Science Partners (CSP) Ecologically Relevant Geomorphology (ERGo) Datasets, Landforms and Physiography contain detailed, multi-scale data on landforms and physiographic (aka land facet) patterns. Although there are many potential uses of these data, the original purpose for these data was to develop an ecologically relevant classification and map of landforms and physiographic classes that are suitable for climate adaptation planning. Because there is large uncertainty associated with future climate conditions and even more uncertainty around ecological responses, providing information about what is unlikely to change offers a strong foundation for managers to build robust climate adaptation plans. The quantification of these features of the landscape is sensitive to the resolution, so we provide the highest resolution possible given the extent and characteristics of a given index.


ALOS 地貌数据集提供了通过组合连续热辐射负荷指数 (ALOS CHILI) 和多尺度地形位置指数 (ALOS mTPI) 数据集而创建的地貌类。它基于 JAXA 的 ALOS DEM(在 EE 中作为 JAXA/ALOS/AW3D30_V1_1 可用)的 30m“AVE”频段。


保护科学合作伙伴 (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/ALOS_landforms")

Resolution

90 meters

Bands Table

Name Description
constant ALOS-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)


数据引用:

Theobald, D. M., Harrison-Atlas, D., Monahan, W. B., & Albano, C. M. (2015). Ecologically-relevant maps of landforms and physiographic diversity for climate adaptation planning. PloS one, 10(12), e0143619

代码:

var dataset = ee.Image('CSP/ERGo/1_0/Global/ALOS_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');


相关文章
|
5天前
|
SQL 分布式计算 监控
Sqoop数据迁移工具使用与优化技巧:面试经验与必备知识点解析
【4月更文挑战第9天】本文深入解析Sqoop的使用、优化及面试策略。内容涵盖Sqoop基础,包括安装配置、命令行操作、与Hadoop生态集成和连接器配置。讨论数据迁移优化技巧,如数据切分、压缩编码、转换过滤及性能监控。此外,还涉及面试中对Sqoop与其他ETL工具的对比、实际项目挑战及未来发展趋势的讨论。通过代码示例展示了从MySQL到HDFS的数据迁移。本文旨在帮助读者在面试中展现Sqoop技术实力。
75 2
|
5天前
|
Python
选择和过滤数据DataFrame信息案例解析
该文介绍了如何使用pandas处理DataFrame数据。首先,通过创建字典并调用pd.DataFrame()函数转换为DataFrame。接着展示了使用loc[]选择年龄大于30的记录,iloc[]选取特定位置行,以及query()根据字符串表达式筛选(年龄大于30且城市为北京)数据的方法。
68 1
|
5天前
|
JSON 前端开发 Java
Json格式数据解析
Json格式数据解析
|
5天前
|
存储 JSON 数据格式
LuaJIT编写的解析十六进制数据
LuaJIT编写的解析十六进制数据
21 1
|
5天前
|
安全 Java 数据库连接
jdbc解析excel文件,批量插入数据至库中
jdbc解析excel文件,批量插入数据至库中
21 0
|
5天前
|
自然语言处理 数据可视化 数据挖掘
带你飞上云端,轻松解析数据——gopup库详细解析--包含安装库教程
本文介绍了Python库gopup,它是一个用于轻松爬取互联网数据的工具,简化了数据收集和处理的过程。文章提供了gopup的安装教程,特别强调了安装时需注意setuptools版本,并给出了PyCharm和命令行两种安装方法。gopup库能获取包括指数、百度和谷歌数据等多种类型的数据。文中还展示了如何使用gopup获取微博指数和豆瓣新片榜数据,并通过代码示例呈现数据和图表。此外,文章提醒了使用时的风险和部分接口的失效情况,并提供了库文档链接以供深入学习。gopup库适用于数据可视化和数据分析,是进行文本挖掘和自然语言处理项目的理想工具。
带你飞上云端,轻松解析数据——gopup库详细解析--包含安装库教程
|
5天前
|
存储 JSON 数据处理
从JSON数据到Pandas DataFrame:如何解析出所需字段
从JSON数据到Pandas DataFrame:如何解析出所需字段
19 1
|
5天前
|
存储 缓存 Linux
xenomai内核解析--xenomai与普通linux进程之间通讯XDDP(三)--实时与非实时数据交互
本文介绍了Xenomai中的XDDP(Xenomai Distributed Data Protocol)通信机制,XDDP用于实时和非实时进程之间的数据交换。XDDP在Xenomai内核中涉及的数据结构和管理方式,以及创建XDDP通道后的实时端和非实时端连接过程。
27 0
xenomai内核解析--xenomai与普通linux进程之间通讯XDDP(三)--实时与非实时数据交互
|
5天前
|
XML 存储 开发框架
c#教你网站数据轻松解析抓取,HtmlAgilityPack解析的奇妙之处
c#教你网站数据轻松解析抓取,HtmlAgilityPack解析的奇妙之处
13 0
|
5天前
|
JSON 安全 前端开发
解析FormData格式数据:Python实践指南
解析FormData格式数据:Python实践指南
17 1

推荐镜像

更多