Shortcut to filter a collection by intersection with geometry. Items in the collection with a footprint that fails to intersect the given geometry will be excluded.
This is equivalent to this.filter(ee.Filter.bounds(...)).
Returns the filtered collection.
Usage | Returns |
---|---|
FeatureCollection.filterBounds(geometry) | Collection |
Argument | Type | Details |
---|---|---|
this: collection | Collection | The Collection instance. |
geometry | Geometry | The geometry to filter to. |
Examples
JavaScript
// Your example goes here!
Python
# Your example goes here!