ee.FeatureCollection.first

Returns the first entry from a given collection.

UsageReturns
FeatureCollection.first()Element
ArgumentTypeDetails
this: collectionFeatureCollectionThe collection from which to select the first entry.
// A global power plant FeatureCollection.
var fc = ee.FeatureCollection('WRI/GPPD/power_plants');

print('The first feature (power plant) in the collection', fc.first());

See the Python Environment page for information on the Python API and using geemap for interactive development.

import ee
import geemap.core as geemap
from pprint import pprint

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

print('The first feature (power plant) in the collection:')
pprint(fc.first().getInfo())