原始链接
结果展示
具体代码
/**
* @File : Landsat8 Collection2 SR
* @Time : 2021/5/24
* @Author : piesat
* @Version : 1.0
* @Contact : 400-890-0662
* @License : (C)Copyright 航天宏图信息技术股份有限公司
* @Desc : 加载Landsat8 Collection2 SR数据集
*/
//加载Landsat8 Collection2 SR数据集并日期、云量筛选
var img = pie.ImageCollection('LC08/02/SR')
.filterDate("2016-6-1", "2016-6-5")
.filter(pie.Filter.lt("cloud_cover", 2))
.first()
.select(["B2", "B3", "B4"])
.multiply(0.0000275)
.subtract(0.2);
print(img);
//按影像定位地图中心
Map.centerObject(img, 8);
//加载显示影像
Map.addLayer(img, {min: 0, max: 0.3, bands: ["B4", "B3", "B2"]}, "img");
标签:Engine,13,img,SR,pie,Collection2,Landsat8,加载
From: https://blog.csdn.net/qq_36253366/article/details/140913649