お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ui.Chart.image.doySeriesByYear
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
ImageCollection からグラフを生成します。異なる年で、年内の各日について、指定されたバンドの導出値をリージョンにプロットします。
- X 軸: 年内の日付(startDay から endDay まで。デフォルトは 1 から 366)。
- Y 軸: 導出された帯域値(領域内で減少)。
- シリーズ: 年。
グラフを返します。
用途 | 戻り値 |
---|
ui.Chart.image.doySeriesByYear(imageCollection, bandName, region, regionReducer, scale, sameDayReducer, startDay, endDay) | ui.Chart |
引数 | タイプ | 詳細 |
---|
imageCollection | ImageCollection | グラフ化する ImageCollection。 |
bandName | 数値|文字列 | グラフ化する帯域の名前。 |
region | Feature|FeatureCollection|Geometry(省略可) | 縮小するリージョン。デフォルトでは、画像コレクション内のすべてのジオメトリの結合になります。 |
regionReducer | レデューサ(省略可) | リージョン内の帯域値を集計するリデューサー。単一の値を返す必要があります。デフォルトは ee.Reducer.mean() です。 |
scale | 数値、省略可 | リージョン リデューサーで使用するスケール(メートル単位)。 |
sameDayReducer | レデューサ(省略可) | 同じ(DoY、年)ペアの画像間でバンド値を集計するリデューサー。単一の値を返す必要があります。デフォルトは ee.Reducer.mean() です。 |
startDay | 数値、省略可 | シリーズの開始日。1 ~ 366 の範囲で指定してください。 |
endDay | 数値、省略可 | シリーズを終了する年内の日付。startDay ~ 366 の範囲で指定する必要があります。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003e\u003ccode\u003eui.Chart.image.doySeriesByYear\u003c/code\u003e generates a chart that displays the derived value of a specific band within a region over time, plotted by day-of-year across multiple years.\u003c/p\u003e\n"],["\u003cp\u003eThe chart's x-axis represents the day of year, the y-axis represents the derived band value (after regional reduction), and different series represent different years in the dataset.\u003c/p\u003e\n"],["\u003cp\u003eUsers can customize the chart by specifying the image collection, band name, region of interest, reducers for regional and same-day aggregation, and the start and end days of the year for the analysis.\u003c/p\u003e\n"],["\u003cp\u003eDefault values are provided for region, reducers, and start/end days, offering flexibility and convenience for generating the chart with minimal required input.\u003c/p\u003e\n"]]],[],null,["\u003cbr /\u003e\n\nGenerates a Chart from an ImageCollection. Plots the derived value of the given band in a region for each day-of-year across different years.\n\n\u003cbr /\u003e\n\n- X-axis: Day of year (startDay to endDay, defaults to 1 to 366).\n\n- Y-axis: Derived band value (reduced within the region).\n\n- Series: Years.\n\nReturns a chart.\n\n| Usage | Returns |\n|----------------------------------------------------------------------------------------------------------------------------------------------------------|----------|\n| `ui.Chart.image.doySeriesByYear(imageCollection, bandName, `*region* `, `*regionReducer* `, `*scale* `, `*sameDayReducer* `, `*startDay* `, `*endDay*`)` | ui.Chart |\n\n| Argument | Type | Details |\n|-------------------|------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------|\n| `imageCollection` | ImageCollection | The ImageCollection to chart. |\n| `bandName` | Number\\|String | The name of the band to chart. |\n| `region` | Feature\\|FeatureCollection\\|Geometry, optional | The region to reduce. Defaults to the union of all geometries in the image collection. |\n| `regionReducer` | Reducer, optional | Reducer for aggregating band values within the region. Must return a single value. Defaults to ee.Reducer.mean(). |\n| `scale` | Number, optional | Scale to use with the region reducer in meters. |\n| `sameDayReducer` | Reducer, optional | Reducer for aggregating band values across images with the same (DoY, year) pair. Must return a single value. Defaults to ee.Reducer.mean(). |\n| `startDay` | Number, optional | Day of year to start the series. Must be between 1 and 366. |\n| `endDay` | Number, optional | Day of year to end the series. Must be between startDay and 366. |"]]