简介

本文的主要解决的问题是如何去除和过滤Landsat和sentinel等系列影像集合中的空影像?这个主要源于一下的问题:

“从图像集中删除空图像”是什么意思?您的脚本将图像集合过滤到没有图像的日期,这会产生包含 0 个图像的图像集合:https: https://code.earthengine.google.com/70996f25dbc6d320f2d765b28699aad5

要删除 Google Earth Engine 中的空图像,您可以使用以下步骤:

方法1.

过滤图像集合:首先过滤图像集合以删除空或不包含数据的图像。您可以使用 ee.Filter() 和 ee.ImageCollection.filter() 函数来实现此目的。例如,您可以使用“ee.Filter.notNull()”函数根据特定波段或属性过滤图像。

函数:

ee.Filter.notNull(properties)

Returns a filter that passes if all the named properties are not null.

Arguments:

properties (List)

Returns: Filter

代码:

// 根据特定波段过滤图像集合

var start &
10-02 09:34