ee.FeatureCollection.propertyNames

Bu öğedeki özelliklerin adlarını döndürür.

Kullanımİadeler
FeatureCollection.propertyNames()Liste
Bağımsız DeğişkenTürAyrıntılar
bu: elementÖğe

Örnekler

Kod Düzenleyici (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 kurulumu

Python API'si ve etkileşimli geliştirme için geemap kullanımı hakkında bilgi edinmek üzere Python Ortamı sayfasına bakın.

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