Announcement: All noncommercial projects registered to use Earth Engine before
April 15, 2025 must
verify noncommercial eligibility to maintain Earth Engine access.
ee.data.listAssets
Stay organized with collections
Save and categorize content based on your preferences.
Returns a list of the contents in an asset collection or folder, in an object that includes an
assets
array and an optional
nextPageToken
.
Usage | Returns | ee.data.listAssets(parent, params, callback) | api.ListAssetsResponse |
Argument | Type | Details | parent | String | The ID of the collection or folder to list. |
params | api.ProjectsAssetsListAssetsNamedParameters, optional | An object containing optional request parameters with the following possible values:
pageSize (string) The number of results to return. If not specified, all results are returned. |
pageToken (string) The token for the page of results to return. |
filter (string) An additional filter query to apply. Example query: 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]}") See https://google.aip.dev/160 for how to construct a query. |
view (string) Specifies how much detail is returned in the list. Either "FULL" (default) for all image properties or "BASIC". |
|
callback | Function, optional | If not supplied, the call is made synchronously. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-06-05 UTC.
[null,null,["Last updated 2024-06-05 UTC."],[[["\u003cp\u003eRetrieves the contents within an Earth Engine asset collection or folder, returning an object containing an \u003ccode\u003eassets\u003c/code\u003e array and potentially a \u003ccode\u003enextPageToken\u003c/code\u003e for accessing further results.\u003c/p\u003e\n"],["\u003cp\u003eAccepts the parent collection/folder ID, optional parameters like page size and filters, and an optional callback function for asynchronous execution.\u003c/p\u003e\n"],["\u003cp\u003eEnables customization of the query by allowing users to filter results based on properties, time ranges, or geographic intersections using the \u003ccode\u003efilter\u003c/code\u003e parameter.\u003c/p\u003e\n"],["\u003cp\u003eOffers two viewing options, "FULL" for comprehensive image property details and "BASIC" for a more concise representation.\u003c/p\u003e\n"],["\u003cp\u003eFacilitates navigation through large result sets via pagination, utilizing \u003ccode\u003epageSize\u003c/code\u003e to limit results per page and \u003ccode\u003enextPageToken\u003c/code\u003e to access subsequent pages.\u003c/p\u003e\n"]]],[],null,["# ee.data.listAssets\n\n\u003cbr /\u003e\n\nReturns a list of the contents in an asset collection or folder, in an object that includes an `assets` array and an optional `nextPageToken`.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------------------------------------------|------------------------|\n| `ee.data.listAssets(parent, `*params* `, `*callback*`)` | api.ListAssetsResponse |\n\n| Argument | Type | Details |\n|------------|-------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `parent` | String | The ID of the collection or folder to list. |\n| `params` | api.ProjectsAssetsListAssetsNamedParameters, optional | An object containing optional request parameters with the following possible values: |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | ` pageSize ` (string) The number of results to return. If not specified, all results are returned. | | ` pageToken ` (string) The token for the page of results to return. | | ` filter ` (string) An additional filter query to apply. Example query: `properties.my_property\u003e=1 AND properties.my_property\u003c2 AND startTime \u003e= \"2019-01-01T00:00:00.000Z\" AND endTime \u003c \"2020-01-01T00:00:00.000Z\" AND intersects(\"{'type':'Point','coordinates':[0,0]}\")` See https://google.aip.dev/160 for how to construct a query. | | ` view ` (string) Specifies how much detail is returned in the list. Either \"FULL\" (default) for all image properties or \"BASIC\". | |\n| `callback` | Function, optional | If not supplied, the call is made synchronously. |"]]