お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Filter.and
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
ブール型の AND を使用して、2 つ以上のフィルタを組み合わせます。
作成されたフィルタを返します。
用途 | 戻り値 |
---|
ee.Filter.and(var_args) | フィルタ |
引数 | タイプ | 詳細 |
---|
var_args | VarArgs<Filter> | 結合するフィルタ。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-25 UTC。
[null,null,["最終更新日 2025-07-25 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. |"]]