Earth Engine은 공유 컴퓨팅 리소스를 보호하고 모든 사용자에게 안정적인 성능을 보장하기 위해 비상업적 할당량 등급을 도입합니다. 모든 비상업용 프로젝트는 2026년 4월 27일까지 할당량 등급을 선택해야 하며, 선택하지 않으면 커뮤니티 등급이 기본적으로 사용됩니다. 등급 할당량은 등급 선택 날짜와 관계없이 2026년 4월 27일에 모든 프로젝트에 적용됩니다. 자세히 알아보기
ee.data.startProcessing
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
이미지를 내보내거나 사전 렌더링하는 처리 작업을 만듭니다.
콜백이 지정된 경우 반환 값은 null입니다.
다음 필드가 있는 객체를 반환합니다.
- taskId: 제출된 작업 ID (하이픈 제외)
- name: projects/X/operations/Y 형식의 전체 작업 이름
- 시작됨: 'OK'
- 참고: 동일한 미제출 ID를 가진 작업이 이미 있는 경우 'ALREADY_EXISTS' 값이 있을 수 있습니다.
사용
반환 값
ee.data.startProcessing(taskId, params, callback)
ProcessingResponse
인수
유형
세부정보
taskId
문자열
작업의 미제출 ID입니다 (newTaskId에서 가져옴). 중복된 작업을 식별하는 데 사용됩니다. null일 수 있습니다. 서버는 제출된 ID를 생성하고 반환합니다.
params
객체
처리 작업을 설명하는 객체입니다. 모든 처리 유형에 공통적인 필드만 여기에 문서화됩니다. type (문자열) 'EXPORT_IMAGE', 'EXPORT_FEATURES', 'EXPORT_VIDEO' 또는 'EXPORT_TILES' 중 하나입니다. json (문자열) 이미지의 JSON 설명입니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-07-26(UTC)"],[],["The `ee.data.startProcessing` function initiates a processing task to export or pre-render an image. It accepts a `taskId`, `params` object (specifying task type and JSON description), and an optional `callback`. The function returns a `ProcessingResponse` object with the submitted task ID, operation name, and start status, or `null` if a callback is provided. `taskId` is a user-defined ID, while the server generates the submitted ID, and `params` specify the task type. A note of `ALREADY_EXISTS` may be present.\n"]]