Google Earth Engine(GEE)——ee.Join.inner的使用方法(以两个MODIS影像集合为例组成一个MODIS多波段影像集合)

        要列举两个集合的元素之间的所有匹配,使用ee.Join.inner()。内联的输出是一个特征集合(即使是将一个ImageCollection连接到另一个ImageCollection)。

本次要使用到的函数:

ee.Join.inner(primaryKeysecondaryKeymeasureKey)

返回将主集合中的元素与辅助集合中的匹配元素配对的连接。每个结果都有一个包含来自主集合的元素的“primary”属性,以及一个包含来自辅助集合的匹配元素的“secondary”属性。如果指定了 measureKey,则连接度量也作为属性附加到对象。

Arguments:

primaryKey (String, default: "primary"):

The property name used to save the primary match.

secondaryKey (String, default: "secondary"):

The property name used to save the secondary match.

measureKey (String, default: null):

An optional property name used to save the measure of the join condition.

Returns: Join

猜你喜欢

转载自blog.csdn.net/qq_31988139/article/details/125049771