Annuncio: tutti i progetti non commerciali registrati per l'utilizzo di Earth Engine prima del 15 aprile 2025 devono verificare l'idoneità non commerciale per mantenere l'accesso a Earth Engine.
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Restituisce un join che accoppia ogni elemento della prima raccolta con un elemento corrispondente della seconda raccolta. La corrispondenza con la migliore misura di join viene aggiunta a ogni risultato come proprietà aggiuntiva. Le misure di unione vengono prodotte quando i filtri withinDistance o maxDifference vengono utilizzati come condizione di unione.
Utilizzo
Resi
ee.Join.saveBest(matchKey, measureKey, outer)
Partecipa
Argomento
Tipo
Dettagli
matchKey
Stringa
La chiave utilizzata per salvare la partita.
measureKey
Stringa
La chiave utilizzata per salvare la misura della condizione di unione nella corrispondenza.
outer
Booleano, valore predefinito: false
Se il valore è true, le righe principali senza corrispondenze verranno incluse nel risultato.
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2025-07-26 UTC."],[[["The `saveBest` join pairs elements from two collections based on the best match according to a specified measure."],["A join measure, like distance or difference, is calculated when using `withinDistance` or `maxDifference` filters in the join condition."],["The best match and its corresponding measure are added as properties to the result using specified keys (`matchKey`, `measureKey`)."],["Optionally, unmatched primary elements can be included in the output by setting the `outer` parameter to `true`."]]],["This describes a join operation that pairs elements from two collections. It identifies the best match between elements based on filters like `withinDistance` or `maxDifference`, storing this match in a specified `matchKey`. The quality of the match is stored under `measureKey`. The `outer` argument determines if unmatched elements from the first collection are included in the output. The function, `ee.Join.saveBest`, returns a join object.\n"]]