ee.Algorithms.TemporalSegmentation.LandTrendrFit
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
LandTrendr के ब्रेकपॉइंट के सालों के सेट का इस्तेमाल करके, टाइम सीरीज़ का अनुमान लगाता है. timeSeries में मौजूद हर इनपुट बैंड के लिए, यह फ़ंक्शन एक नई 1D ऐरे-वैल्यू वाला बैंड दिखाता है. इसमें वर्टेक्स इमेज से पहचाने गए ब्रेकपॉइंट के बीच इंटरपोलेट की गई इनपुट वैल्यू शामिल होती हैं. ज़्यादा जानकारी के लिए, LandTrendr एल्गोरिदम देखें.
इस्तेमाल | रिटर्न |
---|
ee.Algorithms.TemporalSegmentation.LandTrendrFit(timeSeries, vertices, spikeThreshold, minObservationsNeeded) | इमेज |
आर्ग्यूमेंट | टाइप | विवरण |
---|
timeSeries | ImageCollection | इंटरपोलेट करने के लिए टाइम सीरीज़. |
vertices | इमेज | वर्टिसिस इमेज. LandTrendr ब्रेकपॉइंट के सालों का 1D ऐरे. |
spikeThreshold | फ़्लोट, डिफ़ॉल्ट: 0.9 | इनपुट में अचानक होने वाली बढ़ोतरी को कम करने के लिए थ्रेशोल्ड (1.0 का मतलब है कि बढ़ोतरी को कम नहीं किया जाएगा). |
minObservationsNeeded | पूर्णांक, डिफ़ॉल्ट: 6 | कम से कम इतने ऑब्ज़र्वेशन ज़रूरी हैं. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 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. |"]]