containsBandNames#
- geetools.ImageCollectionAccessor.containsBandNames(bandNames, filter)#
Filter the
ee.ImageCollectionby band names using the provided filter.- Parameters:
- Returns:
A filtered
ee.ImageCollection- Return type:
Examples
import ee, geetools 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.containsBandNames(["B1", "B2"], "ALL") print(filtered.getInfo())