Announcement: All noncommercial projects registered to use Earth Engine before April 15, 2025 must verify noncommercial eligibility to maintain Earth Engine access.
Stay organized with collections
Save and categorize content based on your preferences.
Asynchronously retrieves the value of this object from the server and passes it to the provided callback function.
Usage
Returns
ImageCollection.evaluate(callback)
Argument
Type
Details
this: computedobject
ComputedObject
The ComputedObject instance.
callback
Function
A function of the form function(success, failure), called when the server returns an answer. If the request succeeded, the success argument contains the evaluated result. If the request failed, the failure argument will contains an error message.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["\u003cp\u003e\u003ccode\u003eImageCollection.evaluate()\u003c/code\u003e retrieves the value of the ComputedObject from the server.\u003c/p\u003e\n"],["\u003cp\u003eThe retrieved value is then passed to a user-defined callback function, which handles success or failure.\u003c/p\u003e\n"],["\u003cp\u003eThe callback function takes two arguments: \u003ccode\u003esuccess\u003c/code\u003e for the result if the request succeeds and \u003ccode\u003efailure\u003c/code\u003e for an error message if it fails.\u003c/p\u003e\n"]]],["The function asynchronously fetches a ComputedObject's value from the server. It uses a callback function with `success` and `failure` arguments. If successful, `success` holds the evaluated result; otherwise, `failure` provides an error message. This function is called on an `ImageCollection` with no return value. The `callback` is executed upon receiving a response from the server.\n"],null,["# ee.ImageCollection.evaluate\n\n\u003cbr /\u003e\n\nAsynchronously retrieves the value of this object from the server and passes it to the provided callback function.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------------------|---------|\n| ImageCollection.evaluate`(callback)` | |\n\n| Argument | Type | Details |\n|------------------------|----------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `computedobject` | ComputedObject | The ComputedObject instance. |\n| `callback` | Function | A function of the form function(success, failure), called when the server returns an answer. If the request succeeded, the success argument contains the evaluated result. If the request failed, the failure argument will contains an error message. |"]]