ee.Filter
Constructs a new filter. This constructor accepts the following args:
- Another filter.
- A list of filters (which are implicitly ANDed together).
- A ComputedObject returning a filter. Users shouldn't be making these; they're produced by the generator functions below.
Usage | Returns |
---|
ee.Filter(filter) | Filter |
Argument | Type | Details |
---|
filter | Filter|List, optional | Optional filter to add. |
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."],[[["Creates a new filter object, potentially based on an existing filter, a list of filters (combined with AND logic), or a ComputedObject."],["Users typically won't create ComputedObjects directly; they're generated by specific functions."],["The `ee.Filter()` constructor can optionally take an existing filter or a list of filters as an argument."]]],["The `ee.Filter` constructor creates a new filter, accepting either another filter, a list of filters (treated as an AND operation), or a ComputedObject that returns a filter. Users can provide an optional filter, which can be either a single filter or a list. The function returns a new `Filter` object. The `ee.Filter` function is used as `ee.Filter(*filter*)`.\n"]]