Announcement: All noncommercial projects registered to use Earth Engine beforeApril 15, 2025 mustverify noncommercial eligibility to maintain access. If you have not verified by September 26, 2025, your access may be on hold.
ee.FeatureCollection.size Stay organized with collections Save and categorize content based on your preferences.
Page Summary
The
FeatureCollection.size()method returns the number of elements in a collection.The method returns an Integer value.
It is applied to a
FeatureCollectiontype object.Examples in both JavaScript and Python demonstrate its usage to count features in a filtered collection.
| Usage | Returns |
|---|---|
FeatureCollection.size() | Integer |
| Argument | Type | Details |
|---|---|---|
this:collection | FeatureCollection | The collection to count. |
Examples
Code Editor (JavaScript)
// FeatureCollection of power plants in Belgium.varfc=ee.FeatureCollection('WRI/GPPD/power_plants').filter('country_lg == "Belgium"');print('Number of power plants in Belgium',fc.size());
Python setup
See the Python Environment page for information on the Python API and usinggeemap for interactive development.
importeeimportgeemap.coreasgeemap
Colab (Python)
# FeatureCollection of power plants in Belgium.fc=ee.FeatureCollection('WRI/GPPD/power_plants').filter('country_lg == "Belgium"')display('Number of power plants in Belgium:',fc.size())
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.