ee.Algorithms.TemporalSegmentation.LandTrendrFit
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
מבצעת אינטרפולציה של נתוני סדרת זמן באמצעות קבוצה של שנים שבהן חל שינוי במגמה של LandTrendr. לכל פס קלט בסדרת הזמן, הפונקציה מחזירה פס חדש עם ערכי מערך חד-ממדי שמכיל את ערכי הקלט שעברו אינטרפולציה בין זמני נקודות השבירה שזוהו על ידי תמונת הקודקודים. פרטים נוספים זמינים במאמר בנושא אלגוריתם LandTrendr.
שימוש | החזרות |
---|
ee.Algorithms.TemporalSegmentation.LandTrendrFit(timeSeries, vertices, spikeThreshold, minObservationsNeeded) | תמונה |
ארגומנט | סוג | פרטים |
---|
timeSeries | ImageCollection | פעולות על ציר הזמן שרוצים לבצע להן אינטרפולציה. |
vertices | תמונה | תמונה של קודקודים. מערך חד-ממדי של שנים שבהן חלו נקודות עצירה ב-LandTrendr. |
spikeThreshold | מספר ממשי (float), ברירת מחדל: 0.9 | סף לריכוך של עליות חדות בנתוני הקלט (1.0 פירושו ללא ריכוך). |
minObservationsNeeded | מספר שלם, ברירת מחדל: 6 | מינימום תצפיות נדרש. |
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-07-26 (שעון UTC).
[null,null,["עדכון אחרון: 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. |"]]