Earth Engine は、共有コンピューティング リソースを保護し、すべてのユーザーに信頼性の高いパフォーマンスを提供するために、
非商用割り当て階層を導入しています。すべての非商用プロジェクトは、
2026 年 4 月 27 日までに割り当て階層を選択する必要があります。選択しない場合は、デフォルトでコミュニティ階層が使用されます。階層の割り当ては、
2026 年 4 月 27 日に(階層の選択日に関係なく)すべてのプロジェクトで有効になります。
詳細
ee.Join.saveAll
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
最初のコレクションの各要素を、2 番目のコレクションの一致する要素のグループとペアにする結合を返します。一致する要素のリストは、追加のプロパティとして各結果に追加されます。measureKey が指定されている場合、各一致には結合指標の値が添付されます。
結合指標は、withinDistance フィルタまたは maxDifference フィルタが結合条件として使用される場合に生成されます。
| 用途 | 戻り値 |
|---|
ee.Join.saveAll(matchesKey, ordering, ascending, measureKey, outer) | 結合 |
| 引数 | タイプ | 詳細 |
|---|
matchesKey | 文字列 | 一致する要素のリストの保存に使用するプロパティ名。 |
ordering | 文字列、デフォルト: null | 一致する要素のリストの並べ替えに使用するプロパティ。 |
ascending | ブール値、デフォルト: true | 並べ替えが昇順かどうか。 |
measureKey | 文字列、デフォルト: null | 各一致の結合条件の指標の保存に使用する省略可能なプロパティ名。 |
outer | ブール値、デフォルト: false | true の場合、一致する要素のないプライマリ行が結果に含まれます。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2026-04-20 UTC。
[null,null,["最終更新日 2026-04-20 UTC。"],[],["The `ee.Join.saveAll` function creates a join between two collections, pairing each element from the first with matching elements from the second. Matched elements are stored as a list under a specified `matchesKey`. Optionally, this list can be sorted by a given property (`ordering`) in ascending or descending order. If a join condition with distance or difference measures is used, the measurement values are attached using the `measureKey`. If `outer` is set to true elements from first collection without matches will be included in the result.\n"]]