ee.Filter.and
Combine two or more filters using boolean AND.
Returns the constructed filter.
Usage | Returns |
---|
ee.Filter.and(var_args) | Filter |
Argument | Type | Details |
---|
var_args | VarArgs | The filters to combine. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["`ee.Filter.and()` combines two or more filters using a boolean AND operation to create a single, composite filter."],["This function accepts multiple filters as input (using var_args) and returns a new Filter object representing the combined condition."],["The returned filter will only include elements that satisfy all the individual filters provided as input."]]],["Combines multiple filters using a boolean AND operation. The function `ee.Filter.and(var_args)` accepts a variable number of filter arguments (`var_args`) and returns a single, combined `Filter` object. Each filter provided is joined, requiring all conditions to be met for a data element to pass the combined filter. This method is used to narrow down data based on multiple criteria.\n"]]