帮我写一下一个下载山东省2020年降水数据的js版本gee代码
时间: 2023-02-28 13:40:35 浏览: 217
GEE批量下载代码_gee下载landsat_MODIS_LANDSAT_gee_
5星 · 资源好评率100%
好的,以下是一个下载山东省2020年降水数据的JS版本GEE代码:
```
// 引入需要的库
var gee = require('users/gena/packages:gee');
var modis = ee.ImageCollection('MODIS/061/MOD13A2');
// 设定山东省的地理范围
var shandong = ee.FeatureCollection('TIGER/2018/States').filter(ee.Filter.eq('NAME', 'Shandong')).geometry();
// 选择2020年的降水数据
var precipitation = modis.filterBounds(shandong).filterDate('2020-01-01', '2020-12-31').select('Precipitation');
// 下载数据
Export.table.toDrive({
collection: precipitation,
description: 'shandong_precipitation_2020',
fileFormat: 'CSV'
});
```
希望这段代码能够帮到您。
阅读全文