お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ui.Chart.image.doySeries
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
ImageCollection からグラフを生成します。1 年の各日について、リージョン内の各バンドの導出値をプロットします。
- X 軸: 年内の日付(startDay から endDay まで。デフォルトは 1 から 366)。
- Y 軸: 派生したバンド値(地域内および年間の削減)。
- シリーズ: 帯域名。
グラフを返します。
用途 | 戻り値 |
---|
ui.Chart.image.doySeries(imageCollection, region, regionReducer, scale, yearReducer, startDay, endDay) | ui.Chart |
引数 | タイプ | 詳細 |
---|
imageCollection | ImageCollection | グラフ化する ImageCollection。 |
region | Feature|FeatureCollection|Geometry(省略可) | 縮小するリージョン。デフォルトでは、画像コレクション内のすべてのジオメトリの結合になります。 |
regionReducer | レデューサ(省略可) | リージョン内の帯域値を集計するリデューサー。単一の値を返す必要があります。デフォルトは ee.Reducer.mean() です。 |
scale | 数値、省略可 | リージョン リデューサーで使用するスケール(メートル単位)。 |
yearReducer | レデューサ(省略可) | 年ごとに regionReducer の出力を集計するリデューサー(特定の日付の場合)。単一の値を返す必要があります。デフォルトは 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\u003eGenerates a chart displaying the derived values of each band in a specified region for every day of the year.\u003c/p\u003e\n"],["\u003cp\u003eThe chart uses day of the year as the X-axis, derived band values as the Y-axis, and separate series for each band name.\u003c/p\u003e\n"],["\u003cp\u003eUsers can customize the region, data aggregation methods, and the time range displayed on the chart.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eui.Chart.image.doySeries\u003c/code\u003e function is used to create this type of chart within the Google Earth Engine platform.\u003c/p\u003e\n"]]],["This function creates a chart from an ImageCollection, plotting derived band values for each day of the year. It reduces values within a specified region using `regionReducer` (defaulting to mean) and across years with `yearReducer` (also defaulting to mean). The x-axis represents the day of the year (from `startDay` to `endDay`), the y-axis represents the derived band values, and the series represents band names. Users provide an ImageCollection and optional region, reducers, scale, and day range.\n"],null,["# ui.Chart.image.doySeries\n\n\u003cbr /\u003e\n\nGenerates a Chart from an ImageCollection. Plots derived values of each band in a region for a each day of the year.\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 and across years).\n\n- Series: Band names.\n\nReturns a chart.\n\n| Usage | Returns |\n|---------------------------------------------------------------------------------------------------------------------------------------|----------|\n| `ui.Chart.image.doySeries(imageCollection, `*region* `, `*regionReducer* `, `*scale* `, `*yearReducer* `, `*startDay* `, `*endDay*`)` | ui.Chart |\n\n| Argument | Type | Details |\n|-------------------|------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------|\n| `imageCollection` | ImageCollection | The ImageCollection 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| `yearReducer` | Reducer, optional | Reducer for aggregating regionReducer outputs across years (for a given day). 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. |"]]