ee.FeatureCollection.propertyNames

এই উপাদানের বৈশিষ্ট্যের নাম প্রদান করে।

ব্যবহার রিটার্নস
FeatureCollection. propertyNames () তালিকা
যুক্তি টাইপ বিস্তারিত
এই: element উপাদান

উদাহরণ

কোড এডিটর (জাভাস্ক্রিপ্ট)

// A global power plant FeatureCollection.
var fc = ee.FeatureCollection('WRI/GPPD/power_plants');

// View a list of FeatureCollection property names.
print(fc.propertyNames());

পাইথন সেটআপ

পাইথন এপিআই এবং ইন্টারেক্টিভ ডেভেলপমেন্টের জন্য geemap ব্যবহার করার জন্য পাইথন এনভায়রনমেন্ট পৃষ্ঠাটি দেখুন।

import ee
import geemap.core as geemap

Colab (পাইথন)

# A global power plant FeatureCollection.
fc = ee.FeatureCollection('WRI/GPPD/power_plants')

# View a list of FeatureCollection property names.
print(fc.propertyNames().getInfo())