お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、アクセスを維持するために
非商用目的での利用資格を確認する必要があります。2025 年 9 月 26 日までに確認が完了していない場合、アクセスが保留されることがあります。
ee.Join.saveFirst
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
最初のコレクションの各要素を 2 番目のコレクションの一致する要素とペアにする結合を返します。最初の一致が追加のプロパティとして結果に追加されます。
| 用途 | 戻り値 |
|---|
ee.Join.saveFirst(matchKey, ordering, ascending, measureKey, outer) | 参加 |
| 引数 | タイプ | 詳細 |
|---|
matchKey | 文字列 | 照合結果の保存に使用されるプロパティ名。 |
ordering | 文字列、デフォルト: null | 最初の一致を選択する前に、一致を並べ替えるプロパティ。 |
ascending | ブール値。デフォルト値は true です。 | 順序が昇順かどうか。 |
measureKey | 文字列、デフォルト: null | 一致した結合条件の指標を保存するために使用されるオプションのプロパティ名。 |
outer | ブール値。デフォルト値は false です。 | true の場合、一致しないプライマリ行が結果に含まれます。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[],["The `ee.Join.saveFirst` function creates a join between two collections, pairing each element from the first with its first matching element from the second. The matched element is stored as a new property, specified by `matchKey`. Matches can be sorted by `ordering` in `ascending` order before the first is selected. `measureKey` can be used to save the measurement of the join. Setting `outer` to true includes unmatched primary rows.\n"]]