ee.FeatureCollection.toList

Returns the elements of a collection as a list.

UsageReturns
FeatureCollection.toList(count, offset)List
ArgumentTypeDetails
this: collectionFeatureCollectionThe input collection to fetch.
countIntegerThe maximum number of elements to fetch.
offsetInteger, default: 0The number of elements to discard from the start. If set, (offset + count) elements will be fetched and the first offset elements will be discarded.

Examples

Code Editor (JavaScript)

// FeatureCollection of power plants in Belgium.
var fc = ee.FeatureCollection('WRI/GPPD/power_plants')
             .filter('country_lg == "Belgium"');

print('First 5 features to an ee.List', fc.toList(5));

print('Second 5 features to an ee.List', fc.toList(5, 5));

Python setup

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

import ee
import geemap.core as geemap

Colab (Python)

# FeatureCollection of power plants in Belgium.
fc = ee.FeatureCollection('WRI/GPPD/power_plants').filter(
    'country_lg == "Belgium"')

print('First 5 features to an ee.List:', fc.toList(5).getInfo())

print('Second 5 features to an ee.List:', fc.toList(5, 5).getInfo())