お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Algorithms.TemporalSegmentation.VCT
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
植生変化トラッカー。高密度の Landsat 時系列スタックを使用して、最近の森林撹乱の履歴を再構築する自動化されたアプローチ。
出力は、ピクセルごとに 2 次元配列で、6 行 × N 年が含まれます。出力行には、入力年、VCT 土地被覆マスク、UD 合成の大きさ、B4 の撹乱の大きさ、NDVI の撹乱の大きさ、dNBR の撹乱の大きさが含まれます。
Huang, C.、Goward, S.N.、Masek, J.G.、Thomas, N.、Zhu, Z.、Vogelmann, J.E.、2010 年。高密度の Landsat 時系列スタックを使用した最近の森林撹乱履歴を再構築する自動化されたアプローチ。Remote Sensing of Environment, 114(1), pp.183-198.
用途 | 戻り値 |
---|
ee.Algorithms.TemporalSegmentation.VCT(timeSeries, landCover, maxUd, minNdvi, forThrMax, nYears) | 画像 |
引数 | タイプ | 詳細 |
---|
timeSeries | ImageCollection | VCT の乱れを抽出するコレクション。バンド B3、B4、B5、B7、熱、NDVI、DNBR、COMP を含みます。このコレクションには、年ごとに 1 つの画像が時間順に並んで含まれていることが想定されます。 |
landCover | ImageCollection | VCT マスクを抽出するコレクション。このコレクションには、timeSeries 内の各画像に対応する画像が 1 つずつ含まれ、時間で並べ替えられていることが想定されます。 |
maxUd | 浮動小数点数、デフォルト: 4 | フォレストを検出するための Z スコアの最大複合値。 |
minNdvi | 浮動小数点数、デフォルト: 0.45 | 森林の最小 NDVI 値。 |
forThrMax | 浮動小数点数、デフォルト: 3 | フォレストの最大しきい値。 |
nYears | 整数、デフォルト: 30 | 最大年数。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003eThe Vegetation Change Tracker (VCT) automatically reconstructs forest disturbance history using dense Landsat time series stacks.\u003c/p\u003e\n"],["\u003cp\u003eVCT identifies disturbances by analyzing changes in spectral indices like NDVI, dNBR, and UD composite over time.\u003c/p\u003e\n"],["\u003cp\u003eThe output provides a per-pixel disturbance magnitude for each year within the analyzed Landsat time series.\u003c/p\u003e\n"],["\u003cp\u003eUsers can customize parameters like maximum UD composite value and minimum NDVI for forest detection.\u003c/p\u003e\n"],["\u003cp\u003eVCT requires input Landsat time series collections with specific bands, including B3, B4, B5, B7, thermal, NDVI, DNBR, and COMP.\u003c/p\u003e\n"]]],["Vegetation Change Tracker (VCT) reconstructs forest disturbance history using Landsat time series. It requires yearly image collections of `timeSeries` (containing specific bands) and `landCover` to produce a per-pixel 2D array. This array contains information for each year, including the VCT landcover mask, and the magnitude of disturbances based on UD composite, B4, NDVI, and dNBR. VCT's function can be customized by using arguments like `maxUd`, `minNdvi`, `forThrMax`, and `nYears`.\n"],null,["# ee.Algorithms.TemporalSegmentation.VCT\n\nVegetation Change Tracker, an automated approach for reconstructing recent forest disturbance history using dense Landsat time series stacks.\n\n\u003cbr /\u003e\n\nThe output is a 2D array per pixel containing 6 rows x N years. The output rows contain: input years, VCT landcover mask, magnitude in term of the UD composite, magnitude of distubance in B4, magnitude of distubance in NDVI, magnitude of distubance in dNBR.\n\nSee: Huang, C., Goward, S.N., Masek, J.G., Thomas, N., Zhu, Z. and Vogelmann, J.E., 2010. An automated approach for reconstructing recent forest disturbance history using dense Landsat time series stacks. Remote Sensing of Environment, 114(1), pp.183-198.\n\n| Usage | Returns |\n|-----------------------------------------------------------------------------------------------------------------------|---------|\n| `ee.Algorithms.TemporalSegmentation.VCT(timeSeries, landCover, `*maxUd* `, `*minNdvi* `, `*forThrMax* `, `*nYears*`)` | Image |\n\n| Argument | Type | Details |\n|--------------|----------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `timeSeries` | ImageCollection | Collection from which to extract VCT disturbances, containing the bands: B3, B4, B5, B7, thermal, NDVI, DNBR, and COMP. This collection is expected to contain 1 image for each year, sorted by time. |\n| `landCover` | ImageCollection | Collection from which to extract VCT masks. This collection is expected to contain 1 image for each image in the timeSeries, sorted by time. |\n| `maxUd` | Float, default: 4 | Maximum Z-score composite value for detecting forest. |\n| `minNdvi` | Float, default: 0.45 | Minimum NDVI value for forest. |\n| `forThrMax` | Float, default: 3 | Maximum threshold for forest. |\n| `nYears` | Integer, default: 30 | Maximum number of years. |"]]