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
FeatureCollection.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."],[[["`evaluate()` retrieves the value of a ComputedObject (like a FeatureCollection) from the Earth Engine server and passes it to a callback function."],["The callback function is structured as `function(success, failure)` where `success` contains the result if the request succeeds, and `failure` contains an error message if it fails."],["This method transfers data from the server to the client, potentially impacting performance; server-side options are generally preferred."],["For asynchronous evaluation of `ee.FeatureCollection` in the Earth Engine Python client library, use `getInfo()` instead of `evaluate()`."]]],[]]