ee.FeatureCollection.propertyNames

इस एलिमेंट की प्रॉपर्टी के नाम दिखाता है.

इस्तेमालरिटर्न
FeatureCollection.propertyNames()सूची
आर्ग्यूमेंटटाइपविवरण
यह: elementएलिमेंट

उदाहरण

कोड एडिटर (JavaScript)

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

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

Python सेटअप करना

Python API और इंटरैक्टिव डेवलपमेंट के लिए geemap का इस्तेमाल करने के बारे में जानकारी पाने के लिए, Python एनवायरमेंट पेज देखें.

import ee
import geemap.core as geemap

Colab (Python)

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

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