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.
ee.Algorithms.TemporalSegmentation.LandTrendr
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Rilevamento basato su Landsat delle tendenze di disturbo e recupero: segmenta temporalmente una serie temporale di immagini estraendo le traiettorie spettrali del cambiamento nel tempo. La prima banda di ogni immagine viene utilizzata per trovare i punti di interruzione, che vengono utilizzati per eseguire l'adattamento su tutte le bande successive. I punti di interruzione vengono restituiti come matrice bidimensionale di 4 righe e tante colonne quante sono le immagini. Le prime due righe sono i valori X e Y originali. La terza riga contiene i valori Y adattati ai segmenti stimati, mentre la quarta riga contiene 1 se il punto corrispondente è stato utilizzato come vertice del segmento o 0 in caso contrario. Tutte le bande aggiuntive adattate vengono aggiunte come righe nell'output. L'adattamento del punto di interruzione presuppone che i valori crescenti rappresentino un disturbo e i valori decrescenti rappresentino il recupero.
Vedi: Kennedy, R.E., Yang, Z. and Cohen, W.B., 2010. Rilevamento delle tendenze di disturbo e recupero delle foreste utilizzando serie temporali Landsat annuali: 1. LandTrendr - Temporal segmentation algorithms. Remote Sensing of Environment, 114(12), pp.2897-2910.
Utilizzo | Resi |
---|
ee.Algorithms.TemporalSegmentation.LandTrendr(timeSeries, maxSegments, spikeThreshold, vertexCountOvershoot, preventOneYearRecovery, recoveryThreshold, pvalThreshold, bestModelProportion, minObservationsNeeded) | Immagine |
Argomento | Tipo | Dettagli |
---|
timeSeries | ImageCollection | Serie temporale annuale da cui estrarre i punti di interruzione. La prima banda viene utilizzata per trovare i punti di interruzione e tutte le bande successive vengono adattate utilizzando questi punti di interruzione. |
maxSegments | Numero intero | Numero massimo di segmenti da adattare alla serie temporale. |
spikeThreshold | Float, valore predefinito: 0,9 | Soglia per smorzare i picchi (1,0 significa nessun smorzamento). |
vertexCountOvershoot | Numero intero, valore predefinito: 3 | Il modello iniziale può superare il numero di vertici maxSegments + 1 di questo importo. In seguito, verrà ridotto a maxSegments + 1. |
preventOneYearRecovery | Booleano, valore predefinito: false | Impedisci i segmenti che rappresentano i recuperi di un anno. |
recoveryThreshold | Float, valore predefinito: 0,25 | Se un segmento ha un tasso di recupero più rapido di 1/recoveryThreshold (in anni), il segmento non è consentito. |
pvalThreshold | Virgola mobile, valore predefinito: 0,1 | Se il valore p del modello adattato supera questa soglia, il modello corrente viene eliminato e ne viene adattato un altro utilizzando l'ottimizzatore Levenberg-Marquardt. |
bestModelProportion | Float, valore predefinito: 0,75 | Consente di scegliere modelli con più vertici se il loro valore p non è superiore a (2 - bestModelProportion) volte il valore p del modello migliore. |
minObservationsNeeded | Numero intero, valore predefinito: 6 | Numero minimo di osservazioni necessarie per eseguire l'adattamento dell'output. |
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2025-07-26 UTC.
[null,null,["Ultimo aggiornamento 2025-07-26 UTC."],[[["\u003cp\u003eLandTrendr is a temporal segmentation algorithm designed to detect trends in disturbance and recovery within yearly Landsat time-series data.\u003c/p\u003e\n"],["\u003cp\u003eIt identifies breakpoints in spectral trajectories, using the first band of the image collection for initial detection and then fitting the breakpoints to all other bands.\u003c/p\u003e\n"],["\u003cp\u003eThese breakpoints, representing changes in land cover, are fitted to a model assuming increasing values indicate disturbance and decreasing values signify recovery.\u003c/p\u003e\n"],["\u003cp\u003eThe algorithm offers parameters for controlling spike dampening, segment recovery rates, model selection, and minimum data requirements to fine-tune the analysis.\u003c/p\u003e\n"],["\u003cp\u003eThe output is an image containing the original and fitted values, segment vertices, and optionally fitted values for additional bands.\u003c/p\u003e\n"]]],["The LandTrendr algorithm segments a time-series of images, using the first band to find breakpoints that identify spectral changes. These breakpoints are then applied to fit all other bands. Breakpoints are returned as a matrix, with the original data, fitted values, and segment vertex indicators. Increasing values suggest disturbance, while decreasing values suggest recovery. Users define parameters like maximum segments, spike dampening, and recovery rates to guide the fitting process. The algorithm outputs an image containing the results.\n"],null,["# ee.Algorithms.TemporalSegmentation.LandTrendr\n\nLandsat-based detection of Trends in Disturbance and Recovery: temporally segments a time-series of images by extracting the spectral trajectories of change over time. The first band of each image is used to find breakpoints, and those breakpoints are used to perform fitting on all subsequent bands. The breakpoints are returned as a 2-D matrix of 4 rows and as many columns as images. The first two rows are the original X and Y values. The third row contains the Y values fitted to the estimated segments, and the 4th row contains a 1 if the corresponding point was used as a segment vertex or 0 if not. Any additional fitted bands are appended as rows in the output. Breakpoint fitting assumes that increasing values represent disturbance and decreasing values represent recovery.\n\n\u003cbr /\u003e\n\nSee: Kennedy, R.E., Yang, Z. and Cohen, W.B., 2010. Detecting trends in forest disturbance and recovery using yearly Landsat time series: 1. LandTrendr - Temporal segmentation algorithms. Remote Sensing of Environment, 114(12), pp.2897-2910.\n\n| Usage | Returns |\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------|\n| `ee.Algorithms.TemporalSegmentation.LandTrendr(timeSeries, maxSegments, `*spikeThreshold* `, `*vertexCountOvershoot* `, `*preventOneYearRecovery* `, `*recoveryThreshold* `, `*pvalThreshold* `, `*bestModelProportion* `, `*minObservationsNeeded*`)` | Image |\n\n| Argument | Type | Details |\n|--------------------------|-------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `timeSeries` | ImageCollection | Yearly time-series from which to extract breakpoints. The first band is usedto find breakpoints, and all subsequent bands are fitted using those breakpoints. |\n| `maxSegments` | Integer | Maximum number of segments to be fitted on the time series. |\n| `spikeThreshold` | Float, default: 0.9 | Threshold for dampening the spikes (1.0 means no dampening). |\n| `vertexCountOvershoot` | Integer, default: 3 | The initial model can overshoot the maxSegments + 1 vertices by this amount. Later, it will be pruned down to maxSegments + 1. |\n| `preventOneYearRecovery` | Boolean, default: false | Prevent segments that represent one year recoveries. |\n| `recoveryThreshold` | Float, default: 0.25 | If a segment has a recovery rate faster than 1/recoveryThreshold (in years), then the segment is disallowed. |\n| `pvalThreshold` | Float, default: 0.1 | If the p-value of the fitted model exceeds this threshold, then the current model is discarded and another one is fitted using the Levenberg-Marquardt optimizer. |\n| `bestModelProportion` | Float, default: 0.75 | Allows models with more vertices to be chosen if their p-value is no more than (2 - bestModelProportion) times the p-value of the best model. |\n| `minObservationsNeeded` | Integer, default: 6 | Min observations needed to perform output fitting. |"]]