Page Summary
-
The function
ee.data.listAssetsreturns a list of contents in an asset collection or folder. -
The result includes an
assetsarray and an optionalnextPageToken. -
The function requires a
parent(String) argument for the ID of the collection or folder. -
Optional arguments include
params(api.ProjectsAssetsListAssetsNamedParameters) for pagination, filtering, and view, andcallback(Function) for asynchronous calls.
assets
array and an optional nextPageToken
. | Usage | Returns |
|---|---|
ee.data.listAssets(parent, params
, callback
)
|
api.ListAssetsResponse |
parent
params
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

