ee.String.evaluate

Asynchronicznie pobiera wartość tego obiektu z serwera i przekazuje ją do podanej funkcji wywołania zwrotnego.

WykorzystanieZwroty
String.evaluate(callback)
ArgumentTypSzczegóły
to: computedobjectComputedObjectInstancja ComputedObject.
callbackFunkcjaFunkcja w formacie function(success, failure), wywoływana, gdy serwer zwraca odpowiedź. Jeśli żądanie się powiodło, argument success zawiera oceniony wynik. Jeśli żądanie się nie powiedzie, argument failure będzie zawierać komunikat o błędzie.

Przykłady

Edytor kodu (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
});

Konfiguracja Pythona

Informacje o interfejsie Python API i używaniu geemap do interaktywnego programowania znajdziesz na stronie Środowisko 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.String objects.
# Use ee.String.getInfo() instead.