공지사항:
2025년 4월 15일 전에 Earth Engine 사용을 위해 등록된 모든 비상업용 프로젝트는 Earth Engine 액세스를 유지하기 위해
비상업용 자격 요건을 인증해야 합니다.
ee.data.listAssets
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
assets
배열과 선택적
nextPageToken
이 포함된 객체에서 애셋 컬렉션 또는 폴더의 콘텐츠 목록을 반환합니다.
사용 | 반환 값 |
---|
ee.data.listAssets(parent, params, callback) | api.ListAssetsResponse |
인수 | 유형 | 세부정보 |
---|
parent | 문자열 | 목록을 표시할 컬렉션 또는 폴더의 ID입니다. |
params | api.ProjectsAssetsListAssetsNamedParameters(선택사항) | 다음 값을 사용하여 선택적 요청 매개변수를 포함하는 객체
pageSize (문자열) 반환할 결과 수입니다. 지정하지 않으면 모든 결과가 반환됩니다. |
pageToken (문자열) 반환할 결과 페이지의 토큰입니다. |
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 | 함수(선택사항) | 제공되지 않으면 호출이 동기적으로 이루어집니다. |
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-26(UTC)
[null,null,["최종 업데이트: 2025-07-26(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. |"]]