首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >Google Earth Engine——全球摩擦面列举了北纬85度和南纬60度之间的所有陆地像素在2015年的名义年的陆地迁移速度。

Google Earth Engine——全球摩擦面列举了北纬85度和南纬60度之间的所有陆地像素在2015年的名义年的陆地迁移速度。

作者头像
此星光明
发布2024-02-02 10:02:12
发布2024-02-02 10:02:12
21700
代码可运行
举报
运行总次数:0
代码可运行

This global friction surface enumerates land-based travel speed for all land pixels between 85 degrees north and 60 degrees south for a nominal year 2015. This map was produced through a collaboration between the University of Oxford Malaria Atlas Project (MAP), Google, the European Union Joint Research Centre (JRC), and the University of Twente, Netherlands. The underlying datasets used to produce the map include roads (comprising the first ever global-scale use of Open Street Map and Google roads datasets), railways, rivers, lakes, oceans, topographic conditions (slope and elevation), landcover types, and national borders. These datasets were each allocated a speed or speeds of travel in terms of time to cross each pixel of that type. The datasets were then combined to produce this “friction surface”, a map where every pixel is allocated a nominal overall speed of travel based on the types occurring within that pixel, with the fastest travel mode intersecting the pixel being used to determine the speed of travel in that pixel (with some exceptions such as national boundaries, which have the effect of imposing a travel time penalty). This map represents the travel speed from this allocation process, expressed in units of minutes required to travel one meter. It forms the underlying dataset behind the global accessibility map described in the referenced paper.

Source dataset credits are as described in the accompanying paper.

这个全球摩擦面列举了北纬85度和南纬60度之间的所有陆地像素在2015年的名义年的陆地旅行速度。该地图是由牛津大学疟疾地图集项目(MAP)、谷歌、欧盟联合研究中心(JRC)和荷兰特文特大学合作制作的。用于制作该地图的基础数据集包括道路(包括首次在全球范围内使用开放街道地图和谷歌道路数据集)、铁路、河流、湖泊、海洋、地形条件(坡度和海拔)、土地覆盖类型以及国家边界。这些数据集都被分配了一个或多个旅行速度,即穿越该类型的每个像素的时间。然后,这些数据集被合并以产生 "摩擦面",在这张地图上,每个像素都被分配了一个基于该像素内发生的类型的名义总旅行速度,与该像素相交的最快旅行模式被用来确定该像素的旅行速度(有一些例外,如国家边界,它具有施加旅行时间处罚的效果)。这张地图代表了这个分配过程中的旅行速度,以旅行一米所需的分钟为单位表示。它构成了参考文件中描述的全球可及性地图的基础数据集。

源数据集的功劳在所附论文中描述。

Dataset Availability

2015-01-01T00:00:00 - 2016-01-01T00:00:00

Dataset Provider

Malaria Atlas Project

Collection Snippet

ee.Image("Oxford/MAP/friction_surface_2015_v1_0")

Bands Table

Name

Description

Min

Max

Resolution

Units

friction

Land-based travel speed.

0.0005

87.307472

927.67 meters

minutes/meter

引用:

D.J. Weiss, A. Nelson, H.S. Gibson, W. Temperley, S. Peedell, A. Lieber, M. Hancher, E. Poyart, S. Belchior, N. Fullman, B. Mappin, U. Dalrymple, J. Rozier, T.C.D. Lucas, R.E. Howes, L.S. Tusting, S.Y. Kang, E. Cameron, D. Bisanzio, K.E. Battle, S. Bhatt, and P.W. Gething. A global map of travel time to cities to assess inequalities in accessibility in 2015. Nature (2018). doi:10.1038/nature25181

代码:

代码语言:javascript
代码运行次数:0
运行
复制
var dataset = ee.Image('Oxford/MAP/friction_surface_2015_v1_0');
var landBasedTravelSpeed = dataset.select('friction');
var visParams = {
  min: 0.0022,
  max: 0.04,
  palette: [
    '313695', '4575b4', '74add1', 'abd9e9', 'e0f3f8', 'ffffbf', 'fee090',
    'fdae61', 'f46d43', 'd73027', 'a50026'
  ],
};
Map.setCenter(43.55, 36.98, 4);
Map.addLayer(landBasedTravelSpeed, visParams, 'Land-based travel speed');
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档