Stay organized with collections
Save and categorize content based on your preferences.
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
ImageCollection.filterBounds(geometry)
Collection
Argument
Type
Details
this: collection
Collection
The Collection instance.
geometry
ComputedObject|FeatureCollection|Geometry
The geometry, feature or collection to intersect with.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["`filterBounds()` filters an ImageCollection, returning only images that intersect a specified geometry, Feature, or FeatureCollection."],["This method effectively removes images with footprints that do not overlap the provided geometry."],["Using a large or complex geometry for filtering can significantly impact performance and should be minimized for efficiency."],["`filterBounds()` provides a spatial filter similar to using `filter(ee.Filter.bounds(...))`."]]],[]]