ee.String.evaluate

Không đồng bộ truy xuất giá trị của đối tượng này từ máy chủ và truyền giá trị đó đến hàm gọi lại được cung cấp.

Cách sử dụngGiá trị trả về
String.evaluate(callback)
Đối sốLoạiThông tin chi tiết
this: computedobjectComputedObjectĐối tượng ComputedObject.
callbackChức năngMột hàm có dạng function(success, failure), được gọi khi máy chủ trả về câu trả lời. Nếu yêu cầu thành công, đối số success sẽ chứa kết quả được đánh giá. Nếu yêu cầu không thành công, đối số failure sẽ chứa một thông báo lỗi.

Ví dụ

Trình soạn thảo mã (JavaScript)

/**
 * WARNING: this function transfers data from Earth Engine servers to the
 * client. Doing so can negatively affect request processing and client
 * performance. Server-side options should be used whenever possible.
 * Learn more about the distinction between server and client:
 * https://developers.google.com/earth-engine/guides/client_server
 */

// A server-side ee.String object fetched from a feature property.
var stringServer = ee.Feature(null, {lc: 'grassland'}).getString('lc');

// Use evaluate to transfer server-side string to client for use in ui.Label.
stringServer.evaluate(function(stringClient) {
  print('Client-side primitive data type', typeof stringClient);  // string
  print('Client-side string', stringClient);  // grassland
  print('Client-side string used in ui.Label',
        ui.Label('Land cover: ' + stringClient));  // Land cover: grassland
});

Thiết lập Python

Hãy xem trang Môi trường Python để biết thông tin về API Python và cách sử dụng geemap cho quá trình phát triển tương tác.

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.String objects.
# Use ee.String.getInfo() instead.