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.distinct

  • Thedistinct method removes duplicate elements from aFeatureCollection.

  • Duplicates are identified by creating a strong hash of the serialized selected properties.

  • The method accepts a property name or a list of property names for comparison, including the.geo property for geometry comparison.

Removes duplicates from a collection. Note that duplicates are determined using a strong hash over the serialized form of the selected properties.

UsageReturns
FeatureCollection.distinct(properties)FeatureCollection
ArgumentTypeDetails
this:collectionFeatureCollectionThe input collection from which objects will be selected.
propertiesObjectA property name or a list of property names to use for comparison. The '.geo' property can be included to compare object geometries.

Examples

Code Editor (JavaScript)

// FeatureCollection of power plants in Belgium.varfc=ee.FeatureCollection('WRI/GPPD/power_plants').filter('country_lg == "Belgium"');print('FeatureCollection of power plants in Belgium',fc);// Remove duplicate features according to property values.print('Distinct based on a single property',fc.distinct('fuel1'));print('Distinct based on two properties',fc.distinct(['fuel1','source']));print('Distinct based on geometry',fc.distinct('.geo'));

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('FeatureCollection of power plants in Belgium:',fc)# Remove duplicate features according to property values.display('Distinct based on a single property:',fc.distinct('fuel1'))display('Distinct based on two properties:',fc.distinct(['fuel1','source']))display('Distinct based on geometry',fc.distinct('.geo'))

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.