containsAllBands#

geetools.ImageCollectionAccessor.containsAllBands(bandNames, bandNamesProperty='system:band_names')#

Filter the ee.ImageCollection keeping only the images with all the provided bands.

Parameters:
  • bandNames (list[str] | ee.List) – List of band names to filter.

  • bandNamesProperty (str | ee.String) – the name of the property that contains the band names. Defaults to GEE native default: ‘system:band_name’.

Returns:

A filtered ee.ImageCollection.

Return type:

ee.ImageCollection

Examples

import ee, geetools

ee.Initialize()

collection = (
    ee.ImageCollection("LANDSAT/LC08/C01/T1_TOA")
    .filterBounds(ee.Geometry.Point(-122.262, 37.8719))
    .filterDate("2014-01-01", "2014-12-31")
)

filtered = collection.geetools.containsAllBands(["B1", "B2"])
print(filtered.getInfo())