ee.FeatureCollection.evaluate

Mengambil nilai objek ini secara asinkron dari server dan meneruskannya ke fungsi callback yang disediakan.

PenggunaanHasil
FeatureCollection.evaluate(callback)
ArgumenJenisDetail
ini: computedobjectComputedObjectInstance ComputedObject.
callbackFungsiFungsi formulir function(success, failure), yang dipanggil saat server menampilkan jawaban. Jika permintaan berhasil, argumen keberhasilan berisi hasil yang dievaluasi. Jika permintaan gagal, argumen kegagalan akan berisi pesan error.

Contoh

Code Editor (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);
});

Penyiapan Python

Lihat halaman Lingkungan Python untuk mengetahui informasi tentang Python API dan penggunaan geemap untuk pengembangan interaktif.

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.