全球人口网格数据(1975-2030,间隔5年)GHS Settlement Layers

GHS Settlement Layers简介与Notebook示例

GHS Settlement Layers由 UN Statistical Commission 推荐的城市化程度(stage I )方法 在JRC形成全球人口网格数据(1975-2030,间隔5年)上的应用。通过整合从Landsat和Sentinel-2图像数据提取的建成区(GHS-BUILT-S R2022)和从CIESIN GPW v4.11衍生的人口数据(GHS-POP R2022)而生成。本产品根据GHS-BUILT-S和GHS-POP数据集的更新,在2019年发布的数据基础上进行了更新。具体信息可查阅前言 – 人工智能教程Global Human Settlement - GHS-SMOD_GLOBE_R2022A - European Commission

此数据集属于国际公开数据,任何商业和非商业目的都可以免费使用。

有关此数据产品正确引用的更多详细信息,请参阅 Global Human Settlement - GHS-SMOD_GLOBE_R2022A - European Commission

引用参考: Schiavina M., Melchiorri M., Pesaresi M. (2022): GHS-SMOD R2022A - GHS settlement layers, application of the Degree of Urbanisation methodology (stage I) to GHS-POP R2022A and GHS-BUILT-S R2022A, multitemporal (1975-2030)European Commission, Joint Research Centre (JRC) PID: Joint Research Centre Data Catalogue - GHS-SMOD R2022A - GHS settlement layers, applicati... - European Commission, doi: 10.2905/4606D58A-DC08-463C-86A9-D49EF461C47F European Commission, and Statistical Office of the European Union, 2021 Applying the Degree of Urbanisation — A methodological manual to define cities, towns and rural areas for international comparisons — 2021 edition Publications Office of the European Union, 2021; ISBN 978-92-76-20306-3 10.2785/706535

分辨率

1000

波段

名称波段说明最小值(估计值)最大值(估计值)
smod_codeSettlement classification of the cell-20030

smod_code Class Table

Value描述颜色
10Water grid cell0C1D60
11Very low density rural grid cellCCF57A
12Low density rural grid cellAACE65
13Rural cluster5E8040
21Suburban or peri-urbanFBFF55
22Semi-dense urban clusterB68F2F
23Dense urban clusterB68F2F
30Urban centreEB5E58
-200/Nodata

代码:

import aie
aie.Authenticate()
aie.Initialize()

# 指定需要检索的区域
feature_collection = aie.FeatureCollection('China_Province') \
                        .filter(aie.Filter.eq('province', '浙江省'))

geometry = feature_collection.geometry()


dataset = aie.ImageCollection('GHS_SMOD_GLOBE_R2022A') \
             .filterBounds(geometry) \
             .limit(10);

map = aie.Map(
    center=dataset.getCenter(),
    height=800,
    zoom=4
)

vis_params = {
    'bands': ['smod_code'],
    'min': 10,
    'max': 30,
    "palette":["#0C1D60","#CCF57A","#AACE65",
               "#5E8040","#FBFF55","#B68F2F",
               "#B68F2F","#EB5E58"]
}

map.addLayer(
    dataset,
    vis_params,
    'GHS_SMOD_GLOBE_R2022A',
    bounds=dataset.getBounds()
)
map

 

 单景影像加载:

import aie
aie.Authenticate()
aie.Initialize()

img = aie.Image('GHS_SMOD_E1975_GLOBE_R2022A_54009_1000_V1_0_R10_C1')

map = aie.Map(
    center=img.getCenter(),
    height=800,
    zoom=4
)

vis_params = {
    'bands': ['smod_code'],
    'min': 10,
    'max': 30,
    "palette":["#0C1D60","#CCF57A","#AACE65",
               "#5E8040","#FBFF55","#B68F2F",
               "#B68F2F","#EB5E58"]
}

map.addLayer(
    img,
    vis_params,
    'GHS_SMOD_GLOBE_R2022A',
    bounds=img.getBounds()
)
map

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

此星光明

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值