একটি কালেকশনের বিবরণ ফেরত দেয় যার ফিল্ডগুলোর মধ্যে রয়েছে:
- বৈশিষ্ট্যসমূহ: সংগ্রহে থাকা বৈশিষ্ট্যগুলোর মেটাডেটা সম্বলিত একটি তালিকা।
- properties: একটি ঐচ্ছিক ডিকশনারি, যাতে কালেকশনটির মেটাডেটা প্রোপার্টিগুলো থাকে।
| ব্যবহার | ফেরত |
|---|---|
FeatureCollection. getInfo ( callback ) | বৈশিষ্ট্য সংগ্রহ বিবরণ|বস্তু |
| যুক্তি | প্রকার | বিস্তারিত |
|---|---|---|
এই: featurecollection | ফিচার কালেকশন | FeatureCollection ইনস্ট্যান্স। |
callback | ফাংশন, ঐচ্ছিক | একটি ঐচ্ছিক কলব্যাক। এটি সরবরাহ করা না হলে, কলটি সিনক্রোনাসভাবে করা হয়। এটি সরবরাহ করা হলে, সফল হলে প্রথম প্যারামিটার দিয়ে এবং অসফল হলে দ্বিতীয় প্যারামিটার দিয়ে কল করা হবে। |
উদাহরণ
কোড এডিটর (জাভাস্ক্রিপ্ট)
/** * 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.FeatureCollection of power plants in Belgium. var fcServer = ee.FeatureCollection('WRI/GPPD/power_plants') .filter('country_lg == "Belgium"'); // Use getInfo to transfer server-side feature collection to the client. The // result is an object. var fcClient = fcServer.getInfo(); 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 of first feature', fcClient.features[0].properties);
import ee import geemap.core as geemap
কোলাব (পাইথন)
"""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.FeatureCollection of power plants in Belgium. fc_server = ee.FeatureCollection('WRI/GPPD/power_plants').filter( 'country_lg == "Belgium"') # Use getInfo to transfer server-side feature collection to the client. The # result is an object. fc_client = fc_server.getInfo() display('Client-side feature collection is a dictionary:', type(fc_client)) display('Feature collection dictionary keys:', fc_client.keys()) display('Array of features:', fc_client['features']) display('Properties of first feature:', fc_client['features'][0]['properties'])