Google Earth Engine(GEE)——中国2015年和2021年VIIRS 夜间灯光数据展示案例

443 篇文章 202 订阅 ¥199.90 ¥299.90
179 篇文章 506 订阅
本文通过Google Earth Engine (GEE)平台,展示了如何利用VIIRS数据对比分析中国2015年与2021年的夜间灯光变化情况,提供了一个详细的教程,揭示了夜间灯光在不同区域的发展趋势。
摘要由CSDN通过智能技术生成


// define the countries of interest in this list
var countryList = ["China"];
// import the country boundaries and filter for the countries of interest
var countries = ee.FeatureCollection('USDOS/LSIB_SIMPLE/2017').filter(ee.Filter.inList("country_na", countryList));
// add the layer to the map
Map.addLayer(countries,{},"countries of interest");


//导入夜光数据
var nightlight = ee.ImageCollection("NOAA/VIIRS/DNB/MONTHLY_V1/VCMSLCFG");


// 设置时间
var start = ee.Date.fromYMD(2015,1,1);
var end = ee.Date.fromYMD(2020,12,31);

// 时间过滤
var nightlights2014 = nightlight.filterDate(start,end);
// 以平均值这个操作将图像集合转化为一个图像
nightlights2014 = ee.Image(nightlights2014.mean());
// 选择这个波段
n
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

此星光明

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

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

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

打赏作者

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

抵扣说明:

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

余额充值