Announcement: All noncommercial projects registered to use Earth Engine beforeApril 15, 2025 mustverify noncommercial eligibility to maintain access. If you have not verified by September 26, 2025, your access may be on hold.

ee.data.startProcessing

Create processing task that exports or pre-renders an image.

Return value is null if a callback is specified.

Returns an object with fields:

  - taskId: Submitted task ID (without hyphens).

  - name: Full operation name in the format projects/X/operations/Y

  - started: will be 'OK'

  - note: may have value 'ALREADY_EXISTS' if an identical task with the same unsubmitted ID already exists.

UsageReturns
ee.data.startProcessing(taskId, params,callback)ProcessingResponse
ArgumentTypeDetails
taskIdStringUnsubmitted ID for the task (obtained from newTaskId). Used to identify duplicated tasks; may be null. The server will create and return a submitted ID.
paramsObjectThe object that describes the processing task; only fields that are common for all processing types are documented here. type (string) Either 'EXPORT_IMAGE', 'EXPORT_FEATURES', 'EXPORT_VIDEO' or 'EXPORT_TILES'. json (string) JSON description of the image.
callbackFunction, optionalAn optional callback. If not supplied, the call is made synchronously.

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2023-10-06 UTC.