摘要:
统计研究区内Landsat影像数量 2021-08-28 17:11:39 星期六 导出结果为数量csv文件 var ROI = ee.FeatureCollection("users/xxx/xxx"); function cloudmask(image) { // Remove edge pix 阅读全文
摘要:
GEE数据导出注意事项 一些设置: region: roi.geometry().bounds() crs: "EPSG:4326" maxPixels: 1e13 var gldas = ee.ImageCollection("NASA/GLDAS/V021/NOAH/G025/T3H"); // 阅读全文
摘要:
GEE影像集合ImageCollection中的统计计算 a. reduce(reducer,parallelScale) reducer:计算方法,如均值、最大值等 parallelScale:缩放比例,为一个后台优化参数,如果计算内存溢出可以设置2、4等 影像集合中的reduce主要是所有影像提 阅读全文