本代码主要是通过sentinel1应先改进型线性趋势分析
函数:
ee.Filter.listContains(
leftField
,
rightValue
,
rightField
,
leftValue
)
Creates a unary or binary filter that passes if the left operand, a list, contains the right operand.
创建一个一元或二元过滤器,如果左操作数(列表)包含右操作数,则通过。
Arguments:
leftField (String, default: null):
A selector for the left operand. Should not be specified if leftValue is specified.
rightValue (Object, default: null):
The value of the right operand. Should not be specified if rightField is specified.
rightField (String, default: null):
A selector for the right operand. Should not be specified if rightValue is specified.
leftValue (Object, default: null):
The value of the left operand. Should not be specified if leftField is specified.
Returns: Filter