お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.List.zip
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
2 つのリストの要素をペアにして、2 要素のリストのリストを作成します。入力リストのサイズが異なる場合、最終的なリストのサイズは最も短いリストと同じになります。
引数 | タイプ | 詳細 |
---|
これ: list | リスト | |
other | リスト | |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003e\u003ccode\u003eList.zip\u003c/code\u003e combines two lists by pairing corresponding elements, creating a new list of two-element lists.\u003c/p\u003e\n"],["\u003cp\u003eThe resulting list's length is determined by the shorter of the two input lists, ensuring all elements have a pair.\u003c/p\u003e\n"]]],["Combines two lists into a single list of two-element lists, pairing corresponding elements. The resulting list's length matches the shorter of the two input lists. The `List.zip(other)` function takes two list arguments: `this`, representing the initial list, and `other`, the second list. It returns a new List containing paired elements. If the lists are of differing lengths, extra items in the longer list are not included.\n"],null,["# ee.List.zip\n\nPairs the elements of two lists to create a list of two-element lists. When the input lists are of different sizes, the final list has the same size as the shortest one.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------|---------|\n| List.zip`(other)` | List |\n\n| Argument | Type | Details |\n|--------------|------|---------|\n| this: `list` | List | |\n| `other` | List | |"]]