Earth Engine は、共有コンピューティング リソースを保護し、すべてのユーザーに信頼性の高いパフォーマンスを提供するために、
非商用割り当て階層を導入しています。すべての非商用プロジェクトは、
2026 年 4 月 27 日までに割り当て階層を選択する必要があります。選択しない場合は、デフォルトでコミュニティ階層が使用されます。階層の割り当ては、
2026 年 4 月 27 日に(階層の選択日に関係なく)すべてのプロジェクトで有効になります。
詳細
ee.List
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
新しいリストを構築します。
| 引数 | タイプ | 詳細 |
|---|
list | List[Object]|Object | リストまたは計算されたオブジェクト。 |
例
コードエディタ(JavaScript)
print(ee.List([])); // []
print(ee.List([null])); // [null]
print(ee.List([true])); // [true]
print(ee.List([1])); // [1]
print(ee.List([ee.Number(1)])); // [1]
print(ee.List(['a'])); // ["a"]
print(ee.List([[]])); // [[]]
print(ee.List([ee.List([])])); // [[]]
print(ee.List([[], [[]], [1, [], 'a']])); // [[],[[]],[1,[],"a"]]
Python の設定
Python API とインタラクティブな開発での geemap の使用については、
Python 環境ページをご覧ください。
import ee
import geemap.core as geemap
Colab(Python)
display(ee.List([])) # []
display(ee.List([None])) # [None]
display(ee.List([True])) # [True]
display(ee.List([1])) # [1]
display(ee.List([ee.Number(1)])) # [1]
display(ee.List(['a'])) # ['a']
display(ee.List([[]])) # [[]]
display(ee.List([ee.List([])])) # [[]]
display(ee.List([[], [[]], [1, [], 'a']])) # [[], [[]], [1, [], 'a']]
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2026-01-08 UTC。
[null,null,["最終更新日 2026-01-08 UTC。"],[],["The `ee.List()` function creates a new list object. It accepts a list or computed object as input and returns a `List`. The function can handle various data types within the list, including null, boolean, numbers, strings, and nested lists. Examples demonstrate creating lists with different contents in both JavaScript and Python, showing the structure and content of the newly created lists. The `getInfo()` is needed to retrieve the data in the python examples.\n"]]