お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.data.listImages
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
画像コレクション内のコンテンツのリストを、
images
配列とオプションの
nextPageToken
を含むオブジェクトで返します。
用途 | 戻り値 |
---|
ee.data.listImages(parent, params, callback) | ListImagesResponse |
引数 | タイプ | 詳細 |
---|
parent | 文字列 | 一覧表示する画像コレクションの ID。 |
params | オブジェクト、省略可 | 次の値を使用できるオプションのリクエスト パラメータを含むオブジェクト。
pageSize (文字列)返す結果の数。指定しない場合は、すべての結果が返されます。 |
pageToken (文字列)返される結果のトークン ページ。 |
startTime (ISO 8601 文字列)最小開始時刻(包括的)。 |
endTime (ISO 8601 文字列)最大終了時刻(排他的)。 |
region (GeoJSON または WKT 文字列)フィルタするリージョン。 |
properties (文字列のリスト)適用するプロパティ フィルタのリスト(例: ["classification=urban", "size>=2"])。 |
filter (文字列): 適用する追加のフィルタ クエリ。クエリの例: properties.my_property>=1 AND properties.my_property<2 AND startTime >= "2019-01-01T00:00:00.000Z" AND endTime < "2020-01-01T00:00:00.000Z" AND intersects("{'type':'Point','coordinates':[0,0]}") クエリの作成方法については、https://google.aip.dev/160 をご覧ください。 |
view (文字列): リストで返される詳細情報の量を指定します。すべての画像プロパティの「FULL」(デフォルト)または「BASIC」。 |
|
callback | 関数(省略可) | 指定しない場合、呼び出しは同期的に行われます。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003eReturns a list of image contents within a specified image collection, including image details and a page token for navigation.\u003c/p\u003e\n"],["\u003cp\u003eUtilizes the \u003ccode\u003eee.data.listImages()\u003c/code\u003e function, accepting parameters like parent collection ID, optional filters, and a callback function.\u003c/p\u003e\n"],["\u003cp\u003eOptional parameters allow filtering by date, region, properties, and view, enabling retrieval of specific image subsets.\u003c/p\u003e\n"],["\u003cp\u003eResults are provided within a \u003ccode\u003eListImagesResponse\u003c/code\u003e object, containing an array of images and a token for accessing further pages if available.\u003c/p\u003e\n"]]],["The function `ee.data.listImages` retrieves a list of image collection contents. It requires a `parent` ID and optionally accepts `params` for filtering results, including `pageSize`, `pageToken`, time ranges (`startTime`, `endTime`), `region`, `properties`, and a custom `filter`. The `view` parameter controls the detail level returned. Results are returned in a `ListImagesResponse` object, which contains an `images` array and an optional `nextPageToken`. A `callback` function can be used for asynchronous calls.\n"],null,[]]