公告:所有在
2025 年 4 月 15 日之前注册使用 Earth Engine 的非商业项目都必须
验证是否符合非商业性质的资格条件,才能继续使用 Earth Engine。
ee.Filter
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
构造新的过滤条件。此构造函数接受以下实参:
- 其他过滤条件。
- 过滤条件列表(这些过滤条件之间是隐式 AND 关系)。
- 返回过滤器的 ComputedObject。用户不应创建这些对象;它们是由下面的生成器函数生成的。
参数 | 类型 | 详细信息 |
---|
filter | 过滤条件|List<Object>|对象,可选 | 要添加的可选过滤条件。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-25。
[null,null,["最后更新时间 (UTC):2025-07-25。"],[[["\u003cp\u003eCreates a new filter object, potentially based on an existing filter, a list of filters (combined with AND logic), or a ComputedObject.\u003c/p\u003e\n"],["\u003cp\u003eUsers typically won't create ComputedObjects directly; they're generated by specific functions.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eee.Filter()\u003c/code\u003e constructor can optionally take an existing filter or a list of filters as an argument.\u003c/p\u003e\n"]]],["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"],null,["# ee.Filter\n\n\u003cbr /\u003e\n\nConstructs a new filter. This constructor accepts the following args:\n\n\u003cbr /\u003e\n\n- Another filter.\n\n- A list of filters (which are implicitly ANDed together).\n\n- A ComputedObject returning a filter. Users shouldn't be making these; they're produced by the generator functions below.\n\n| Usage | Returns |\n|-------------------------|---------|\n| `ee.Filter(`*filter*`)` | Filter |\n\n| Argument | Type | Details |\n|----------|------------------------------------------|-------------------------|\n| `filter` | Filter\\|List\\\u003cObject\\\u003e\\|Object, optional | Optional filter to add. |"]]