ee.FeatureCollection.evaluate

เรียกค่าของออบเจ็กต์นี้จากเซิร์ฟเวอร์แบบไม่พร้อมกันและส่งไปยังฟังก์ชันเรียกกลับที่ระบุ

การใช้งานการคืนสินค้า
FeatureCollection.evaluate(callback)
อาร์กิวเมนต์ประเภทรายละเอียด
ดังนี้ computedobjectComputedObjectอินสแตนซ์ ComputedObject
callbackฟังก์ชันฟังก์ชันของรูปแบบ function(success, failure) ซึ่งจะเรียกใช้เมื่อเซิร์ฟเวอร์ส่งคำตอบกลับมา หากคำขอสำเร็จ อาร์กิวเมนต์ความสำเร็จจะมีผลลัพธ์ที่ประเมินแล้ว หากคำขอไม่สำเร็จ อาร์กิวเมนต์ 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

ดูข้อมูลเกี่ยวกับ 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.FeatureCollection objects.
# Use ee.FeatureCollection.getInfo() instead.