在gee怎么加载sentinel-2的RGB影像
时间: 2024-03-21 22:44:42 浏览: 165
python 利用sen2cor对sentinel-2 影像大气校正批处理
在Google Earth Engine (GEE)中加载Sentinel-2的RGB影像可以按照以下步骤进行:
1. 打开Google Earth Engine代码编辑器。
2. 在编辑器中输入以下代码,用于加载Sentinel-2的RGB影像:
```javascript
var image = ee.ImageCollection('COPERNICUS/S2_SR')
.filterDate('2019-01-01', '2019-12-31')
.filterBounds(ee.Geometry.Point(7.42, 43.73))
.map(function(image) {
return image.clip(geometry);
})
.median()
.select(['B4', 'B3', 'B2']);
Map.addLayer(image, {min:0, max:3000}, 'Sentinel-2 RGB');
```
3. 运行代码后,地球引擎将加载Sentinel-2的RGB影像,并在地图上显示。
需要注意的是,这里加载的是2019年的Sentinel-2影像,如果要加载其他时间的影像,可以在.filterDate()函数中指定相应的时间范围。此外,在.filterBounds()函数中指定的是感兴趣区域的点坐标,如果要加载其他区域的影像,可以更改这个坐标。
阅读全文