Anuncio: Todos los proyectos no comerciales registrados para usar Earth Engine antes del 15 de abril de 2025 deben verificar su elegibilidad no comercial para mantener el acceso a Earth Engine.
Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
Supongamos que el objetivo de la unión es retener todas las imágenes de la colección primary
que no están en la colección secondary. Puedes realizar este tipo de unión invertida con ee.Join.inverted().
La unión inversa contiene las imágenes del 3 y el 19 de abril, lo que indica las imágenes que están presentes en la colección primary, pero no en la colección secondary.
[[["Fácil de comprender","easyToUnderstand","thumb-up"],["Resolvió mi problema","solvedMyProblem","thumb-up"],["Otro","otherUp","thumb-up"]],[["Falta la información que necesito","missingTheInformationINeed","thumb-down"],["Muy complicado o demasiados pasos","tooComplicatedTooManySteps","thumb-down"],["Desactualizado","outOfDate","thumb-down"],["Problema de traducción","translationIssue","thumb-down"],["Problema con las muestras o los códigos","samplesCodeIssue","thumb-down"],["Otro","otherDown","thumb-down"]],["Última actualización: 2025-02-18 (UTC)"],[[["`ee.Join.inverted()` allows you to keep images from a primary collection that do not have matching images in a secondary collection based on a specified filter."],["This example demonstrates how to use `ee.Join.inverted()` to identify Landsat 8 images from April that are not present in the May to July timeframe."],["An `ee.Filter.equals()` is employed to define matching criteria between the collections, typically using a common property like 'system:index'."],["The resulting collection contains only images unique to the primary collection, effectively isolating images not found in the secondary collection."]]],["The content demonstrates how to use `ee.Join.inverted()` to retain images from a `primary` collection that are absent in a `secondary` collection. It involves loading a Landsat 8 image collection and defining `primary` (April-June) and `secondary` (May-July) collections. An equals filter is used to match images by their system index. The `invertedJoin` is defined and applied, resulting in images present in the `primary` but not in the `secondary` collection, exemplified by images from April 3rd and 19th.\n"]]