ee.FeatureCollection.evaluate

यह फ़ंक्शन, इस ऑब्जेक्ट की वैल्यू को सर्वर से एसिंक्रोनस तरीके से वापस पाता है और उसे दिए गए कॉलबैक फ़ंक्शन को पास करता है.

इस्तेमालरिटर्न
FeatureCollection.evaluate(callback)
आर्ग्यूमेंटटाइपविवरण
यह: computedobjectComputedObjectComputedObject इंस्टेंस.
callbackफ़ंक्शनयह फ़ंक्शन, फ़ंक्शन(success, failure) के फ़ॉर्म में होता है. जब सर्वर कोई जवाब देता है, तब इसे कॉल किया जाता है. अगर अनुरोध पूरा हो जाता है, तो success आर्ग्युमेंट में, आकलन किया गया नतीजा शामिल होता है. अगर अनुरोध पूरा नहीं होता है, तो गड़बड़ी के तर्क में गड़बड़ी का मैसेज दिखेगा.

उदाहरण

कोड एडिटर (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.