お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Geometry.evaluate
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
このオブジェクトの値をサーバーから非同期で取得し、指定されたコールバック関数に渡します。
用途 | 戻り値 |
---|
Geometry.evaluate(callback) | |
引数 | タイプ | 詳細 |
---|
これ: computedobject | ComputedObject | ComputedObject インスタンス。 |
callback | 関数 | サーバーが回答を返したときに呼び出される、function(success, failure) 形式の関数。リクエストが成功した場合、success 引数には評価結果が含まれます。リクエストが失敗した場合、failure 引数にエラー メッセージが含まれます。 |
例
コードエディタ(JavaScript)
// Define a callback function that prints a GeoJSON string.
var printGeoJSONString = function(geometry) {
geometry = ee.Geometry(geometry);
print(geometry.toGeoJSONString());
};
// Create a simple computed geometry.
var computedGeometry = ee.Geometry.Point(0, 0).buffer(10);
// Evaluate the callback function that asynchronously retrieves and prints
// the GeoJSON string representation of computed geometry.
computedGeometry.evaluate(printGeoJSONString);
Python の設定
Python API とインタラクティブな開発での geemap
の使用については、
Python 環境のページをご覧ください。
import ee
import geemap.core as geemap
Colab(Python)
# The Earth Engine Python client library does not have an evaluate method for
# asynchronous evaluation of ee.Geometry objects.
# Use ee.Geometry.getInfo() instead.
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003e\u003ccode\u003eGeometry.evaluate\u003c/code\u003e is a method used to asynchronously retrieve the value of a ComputedObject (like a Geometry) from the server.\u003c/p\u003e\n"],["\u003cp\u003eIt takes a callback function as an argument, which is executed upon receiving the server response, providing either the evaluated result or an error message.\u003c/p\u003e\n"],["\u003cp\u003eThe example demonstrates using \u003ccode\u003eGeometry.evaluate\u003c/code\u003e with a callback function to print the GeoJSON representation of a computed geometry.\u003c/p\u003e\n"],["\u003cp\u003eWhile the JavaScript example showcases \u003ccode\u003eGeometry.evaluate\u003c/code\u003e, the Python library uses \u003ccode\u003eGeometry.getInfo()\u003c/code\u003e for similar functionality.\u003c/p\u003e\n"]]],["The `evaluate` method asynchronously retrieves a `ComputedObject`'s value from the server and provides it to a callback function. The callback receives a success or failure argument, with the result or error message, respectively. The example in javascript shows how it is used with a `GeoJSON` string to display the result. In python, there is not an `evaluate` method, instead you have to use the `getInfo()` method.\n"],null,["# ee.Geometry.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| Geometry.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. |\n\nExamples\n--------\n\n### Code Editor (JavaScript)\n\n```javascript\n// Define a callback function that prints a GeoJSON string.\nvar printGeoJSONString = function(geometry) {\n geometry = ee.Geometry(geometry);\n print(geometry.toGeoJSONString());\n};\n\n// Create a simple computed geometry.\nvar computedGeometry = ee.Geometry.Point(0, 0).buffer(10);\n\n// Evaluate the callback function that asynchronously retrieves and prints\n// the GeoJSON string representation of computed geometry.\ncomputedGeometry.evaluate(printGeoJSONString);\n```\nPython setup\n\nSee the [Python Environment](/earth-engine/guides/python_install) page for information on the Python API and using\n`geemap` for interactive development. \n\n```python\nimport ee\nimport geemap.core as geemap\n```\n\n### Colab (Python)\n\n```python\n# The Earth Engine Python client library does not have an evaluate method for\n# asynchronous evaluation of ee.Geometry objects.\n# Use ee.Geometry.getInfo() instead.\n```"]]