ee.FeatureCollection.evaluate

Асинхронно извлекает значение этого объекта с сервера и передает его предоставленной функции обратного вызова.

Использование Возврат
FeatureCollection. evaluate (callback)
Аргумент Тип Подробности
это: computedobject ComputedObject Экземпляр ComputedObject.
callback Функция Функция вида function(success, failure), вызываемая при возврате ответа сервером. Если запрос выполнен успешно, аргумент success содержит вычисленный результат. Если запрос не удался, аргумент failure содержит сообщение об ошибке.

Примеры

Редактор кода (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
 */

// FeatureCollection of power plants in Belgium.
var fcServer = ee.FeatureCollection('WRI/GPPD/power_plants')
             .filter('country_lg == "Belgium"');

fcServer.evaluate(function(fcClient) {
  print('Client-side feature collection is an object', typeof fcClient);
  print('Feature collection object keys', Object.keys(fcClient));
  print('Array of features', fcClient.features);
  print('Properties for first feature', fcClient.features[0].properties);
});

Настройка Python

Информацию об API Python и использовании 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.FeatureCollection objects.
# Use ee.FeatureCollection.getInfo() instead.