Stay organized with collections
Save and categorize content based on your preferences.
Retrieves the value of this object from the server.
If no callback function is provided, the request is made synchronously. If a callback is provided, the request is made asynchronously.
The asynchronous mode is preferred because the synchronous mode stops all other code (for example, the EE Code Editor UI) while waiting for the server. To make an asynchronous request, evaluate() is preferred over getInfo().
Returns the computed value of this object.
Usage
Returns
Dictionary.getInfo(callback)
Object
Argument
Type
Details
this: computedobject
ComputedObject
The ComputedObject instance.
callback
Function, optional
An optional callback. If not supplied, the call is made synchronously.
[[["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."],[[["Retrieves the value of a ComputedObject from the Earth Engine server, enabling client-side use."],["Offers synchronous and asynchronous retrieval modes, with asynchronous being preferred to avoid blocking other code execution."],["`evaluate()` is recommended for asynchronous requests, while `getInfo()` can be used with a callback or synchronously."],["Returns the computed value as a client-side object, allowing interaction with it using standard JavaScript or Python methods."],["Provides JavaScript and Python code examples to illustrate how to retrieve and utilize the object's value."]]],[]]