Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
Jak pokazano w sekcji Pierwsze kroki i sekcji Informacje o zbiorze obrazów, Earth Engine udostępnia różne wygodne metody filtrowania zbiorów obrazów.
W szczególności wiele typowych zastosowań obsługują funkcje imageCollection.filterDate() i imageCollection.filterBounds(). Do ogólnego filtrowania użyj funkcji imageCollection.filter() z argumentem ee.Filter. Poniższy przykład pokazuje, jak za pomocą metod ułatwiających i funkcji filter() rozpoznawać i usuwać z ImageCollection obrazy z dużą pokryciem chmur.
[[["Łatwo zrozumieć","easyToUnderstand","thumb-up"],["Rozwiązało to mój problem","solvedMyProblem","thumb-up"],["Inne","otherUp","thumb-up"]],[["Brak potrzebnych mi informacji","missingTheInformationINeed","thumb-down"],["Zbyt skomplikowane / zbyt wiele czynności do wykonania","tooComplicatedTooManySteps","thumb-down"],["Nieaktualne treści","outOfDate","thumb-down"],["Problem z tłumaczeniem","translationIssue","thumb-down"],["Problem z przykładami/kodem","samplesCodeIssue","thumb-down"],["Inne","otherDown","thumb-down"]],["Ostatnia aktualizacja: 2025-02-18 UTC."],[[["Earth Engine provides multiple methods for filtering image collections, including convenience functions like `filterDate()` and `filterBounds()` as well as the more general `filter()` method for custom filtering needs."],["This example demonstrates how to filter a Landsat 8 image collection by date, month, geographic bounds, and cloud cover using these methods."],["Filtering by cloud cover significantly improves the quality of composites derived from image collections, as shown by comparing a composite generated from unfiltered data with one generated from data filtered for zero cloud cover."],["The code example is provided in both JavaScript and Python, enabling users to apply these filtering techniques in their preferred programming environment within the Earth Engine platform."]]],["The content demonstrates filtering image collections in Earth Engine. It uses `filterDate()`, `filterBounds()`, and `filter()` to refine a Landsat 8 dataset. The data is filtered by date (2015-2018), month (November-February), and a specific location. Further filtering removes images with high cloud cover using `CLOUD_COVER`. Two composites, one filtered for low cloud cover and one unfiltered, are then created and displayed to illustrate the effect of filtering.\n"]]