ee.Algorithms.TemporalSegmentation.LandTrendrFit
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Interpole une série temporelle à l'aide d'un ensemble d'années de points d'arrêt LandTrendr. Pour chaque bande d'entrée de la série temporelle, génère une nouvelle bande de valeurs de tableau 1D contenant les valeurs d'entrée interpolées entre les heures de point d'arrêt identifiées par l'image des sommets. Pour en savoir plus, consultez l'algorithme LandTrendr.
Utilisation | Renvoie |
---|
ee.Algorithms.TemporalSegmentation.LandTrendrFit(timeSeries, vertices, spikeThreshold, minObservationsNeeded) | Image |
Argument | Type | Détails |
---|
timeSeries | ImageCollection | Série temporelle à interpoler. |
vertices | Image | Image des sommets. Tableau 1D des années de points d'arrêt LandTrendr. |
spikeThreshold | Float, valeur par défaut : 0,9 | Seuil pour atténuer les pics d'entrée (1.0 signifie aucune atténuation). |
minObservationsNeeded | Entier, par défaut : 6 | Nombre minimal d'observations requises. |
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/07/26 (UTC).
[null,null,["Dernière mise à jour le 2025/07/26 (UTC)."],[[["\u003cp\u003eInterpolates time series data using LandTrendr breakpoint years to create a smoother output.\u003c/p\u003e\n"],["\u003cp\u003eTakes an image collection as input and generates an image containing interpolated values between breakpoints.\u003c/p\u003e\n"],["\u003cp\u003eUsers can adjust spike dampening and minimum observation requirements for customized interpolation.\u003c/p\u003e\n"],["\u003cp\u003eRelies on the LandTrendr algorithm for identifying breakpoints within the time series.\u003c/p\u003e\n"]]],["The core functionality involves interpolating a time series using LandTrendr breakpoint years. It utilizes a `timeSeries` ImageCollection and a `vertices` Image containing LandTrendr breakpoint years to produce a new interpolated band. The function, `LandTrendrFit`, accepts two optional parameters: `spikeThreshold` to dampen input spikes, and `minObservationsNeeded` specifying the minimum number of observations needed for the interpolation. The output is an Image containing the interpolated time series.\n"],null,["# ee.Algorithms.TemporalSegmentation.LandTrendrFit\n\nInterpolates a time series using a set of LandTrendr breakpoint years. For each input band in the timeSeries, outputs a new 1D array-valued band containing the input values interpolated between the breakpoint times identified by the vertices image. See the LandTrendr Algorithm for more details.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------------------------------------------------------------------------------------------------------|---------|\n| `ee.Algorithms.TemporalSegmentation.LandTrendrFit(timeSeries, vertices, `*spikeThreshold* `, `*minObservationsNeeded*`)` | Image |\n\n| Argument | Type | Details |\n|-------------------------|---------------------|----------------------------------------------------------------|\n| `timeSeries` | ImageCollection | Time series to interpolate. |\n| `vertices` | Image | Vertices image. A 1D array of LandTrendr breakpoint years. |\n| `spikeThreshold` | Float, default: 0.9 | Threshold for dampening input spikes (1.0 means no dampening). |\n| `minObservationsNeeded` | Integer, default: 6 | Min observations needed. |"]]