Google Earth Engine(GEE)——反向连接ee.Join.inverted()

2024-02-02 08:02:57 浏览数 (1)

假设联接的目的是保留primary 集合中所有不在secondary集合中的图像。您可以使用ee.Join.inverted(). 使用简单连接示例中定义的过滤器 primarysecondary集合 ,将反向连接指定为:

函数:

ee.Join.inverted()相对于是连接取反

代码语言:javascript复制
返回一个连接,该连接生成主集合中不匹配辅助集合元素的元素。结果中没有添加任何属性。

Returns a join that produces the elements of the primary collection that match no elements of the secondary collection. No properties are added to the results.

No arguments.
Returns: Join

代码:

代码语言:javascript复制
//定义连接变量
var invertedJoin = ee.Join.inverted();

// 将定义的变量进行应用最后得到的结果
var invertedJoined = invertedJoin.apply(primary, secondary, filter);

结果:反向连接包含 4 月 3 日和 4 月 19 日的图像,表示存在于primary集合中但不存在于集合中 的图像secondary

0 人点赞