Announcement: All noncommercial projects registered to use Earth Engine before
April 15, 2025 must
verify noncommercial eligibility to maintain Earth Engine access.
ee.Geometry.MultiPolygon.evaluate
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 | MultiPolygon.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. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["\u003cp\u003e\u003ccode\u003eMultiPolygon.evaluate()\u003c/code\u003e allows you to retrieve the value of a ComputedObject representing a MultiPolygon from the server.\u003c/p\u003e\n"],["\u003cp\u003eThis method takes a callback function that will be executed once the server responds, providing either the evaluated result or an error message.\u003c/p\u003e\n"],["\u003cp\u003eThe callback function should have two arguments: one for success (containing the evaluated MultiPolygon) and one for failure (containing an error message).\u003c/p\u003e\n"]]],["The `evaluate` method of a `MultiPolygon` object asynchronously retrieves its value from the server. It accepts a `callback` function that is invoked upon receiving a server response. This callback has two arguments: `success` containing the result if successful, or `failure` containing an error message if the request failed. The method is applied to a `ComputedObject` instance.\n"],null,["# ee.Geometry.MultiPolygon.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| MultiPolygon.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. |"]]