お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.ImageCollection.formaTrend
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
時系列の長期トレンドと短期トレンドを計算します。必要に応じて、時系列と共変量の比率のトレンドを計算します。長期的な傾向は、時系列全体に対する回帰の線形項から推定されます。短期的な傾向は、時系列のウィンドウ化された最小値として計算されます。
時系列と共変量系列にはそれぞれ 1 つの帯域が含まれ、時系列は時間的に均等に配置されていることが想定されます。出力は 4 つの浮動帯域です。長期と短期のトレンド、時系列に対する長期トレンドの t 検定、パラメータの安定性の Bruce Hansen 検定です。
用途 | 戻り値 |
---|
ImageCollection.formaTrend(covariates, windowSize) | 画像 |
引数 | タイプ | 詳細 |
---|
これ: timeSeries | ImageCollection | トレンドを抽出するコレクション。 |
covariates | ImageCollection、デフォルト: null | 傾向分析で使用する共変量。 |
windowSize | 整数、デフォルト: 6 | 短期的な傾向分析のウィンドウ サイズ(画像数)。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003eCalculates long-term and short-term trends of a time series, optionally considering a covariate for ratio trends.\u003c/p\u003e\n"],["\u003cp\u003eLong-term trends are determined through linear regression over the entire series, while short-term trends use a windowed minimum approach.\u003c/p\u003e\n"],["\u003cp\u003eOutputs include the long and short-term trends, a t-test for the long-term trend's significance, and a stability test.\u003c/p\u003e\n"],["\u003cp\u003eRequires an evenly spaced time series ImageCollection and an optional covariate ImageCollection.\u003c/p\u003e\n"],["\u003cp\u003eUsers can customize the short-term trend analysis by adjusting the window size.\u003c/p\u003e\n"]]],[],null,["# ee.ImageCollection.formaTrend\n\nComputes the long and short term trends of a time series or optionally, the trends of the ratio of the time series and a covariate. The long term trend is estimated from the linear term of a regression on the full time series. The short term trend is computed as the windowed minimum over the time series.\n\n\u003cbr /\u003e\n\nThe time series and covariate series are expected to contain a single band each, and the time series is expected to be evenly spaced in time. The output is 4 float bands: the long and short term trends, the t-test of the long term trend against the time series, and the Bruce Hansen test of parameter stability.\n\n| Usage | Returns |\n|---------------------------------------------------------------|---------|\n| ImageCollection.formaTrend`(`*covariates* `, `*windowSize*`)` | Image |\n\n| Argument | Type | Details |\n|--------------------|--------------------------------|---------------------------------------------------|\n| this: `timeSeries` | ImageCollection | Collection from which to extract trends. |\n| `covariates` | ImageCollection, default: null | Cofactors to use in the trend analysis. |\n| `windowSize` | Integer, default: 6 | Short term trend analysis window size, in images. |"]]