Earth Engine は、共有コンピューティングリソースを保護し、すべてのユーザーに信頼性の高いパフォーマンスを提供するために、
非商用割り当て階層を導入しています。非商用プロジェクトではデフォルトでコミュニティ
ティアが使用されますが、プロジェクトのティアはいつでも変更できます。
Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
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 および関連会社の登録商標です。
最終更新日 2026-04-20 UTC。
[null,null,["最終更新日 2026-04-20 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"]]