Announcement: All noncommercial projects registered to use Earth Engine before
April 15, 2025 must
verify noncommercial eligibility to maintain Earth Engine access.
ee.Filter.and
Stay organized with collections
Save and categorize content based on your preferences.
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<Filter> | 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 2025-07-08 UTC.
[null,null,["Last updated 2025-07-08 UTC."],[[["\u003cp\u003e\u003ccode\u003eee.Filter.and()\u003c/code\u003e combines two or more filters using a boolean AND operation to create a single, composite filter.\u003c/p\u003e\n"],["\u003cp\u003eThis function accepts multiple filters as input (using var_args) and returns a new Filter object representing the combined condition.\u003c/p\u003e\n"],["\u003cp\u003eThe returned filter will only include elements that satisfy all the individual filters provided as input.\u003c/p\u003e\n"]]],["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"],null,["# ee.Filter.and\n\n\u003cbr /\u003e\n\nCombine two or more filters using boolean AND.\n\n\u003cbr /\u003e\n\nReturns the constructed filter.\n\n| Usage | Returns |\n|---------------------------|---------|\n| `ee.Filter.and(var_args)` | Filter |\n\n| Argument | Type | Details |\n|------------|-------------------|-------------------------|\n| `var_args` | VarArgs\\\u003cFilter\\\u003e | The filters to combine. |"]]