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 للحصول على معلومات حول واجهة برمجة التطبيقات Python واستخدام geemap للتطوير التفاعلي.

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())