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