お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ui.Chart.image.doySeriesByRegion
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
ImageCollection からグラフを生成します。指定されたバンドの導出値を、各年の異なる地域でプロットします。
- X 軸: 年内の日付(startDay から endDay まで。デフォルトは 1 から 366)。
- Y 軸: 派生したバンド値(地域内および年間の削減)。
- シリーズ: 地域。
グラフを返します。
用途 | 戻り値 |
---|
ui.Chart.image.doySeriesByRegion(imageCollection, bandName, regions, regionReducer, scale, yearReducer, seriesProperty, startDay, endDay) | ui.Chart |
引数 | タイプ | 詳細 |
---|
imageCollection | ImageCollection | グラフ化する ImageCollection。 |
bandName | 数値|文字列 | グラフ化する帯域の名前。 |
regions | Feature|FeatureCollection|Geometry|List<Feature>|List<Geometry> | 削減するリージョン。 |
regionReducer | レデューサ(省略可) | リージョン内のバンド値を集計するリデューサー。単一の値を返す必要があります。デフォルトは ee.Reducer.mean() です。 |
scale | 数値、省略可 | リージョン リデューサーで使用するスケール(メートル単位)。 |
yearReducer | レデューサ(省略可) | 年間の帯域値を集計するリデューサー(特定の年の日)。単一の値を返す必要があります。デフォルトは ee.Reducer.mean() です。 |
seriesProperty | 文字列、省略可 | 系列ラベルに使用する opt_regions の特徴のプロパティ。デフォルトは「system:index」です。 |
startDay | 数値、省略可 | シリーズの開始日。1 ~ 366 の範囲で指定してください。 |
endDay | 数値、省略可 | シリーズを終了する年内の日付。startDay ~ 366 の範囲で指定する必要があります。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-25 UTC。
[null,null,["最終更新日 2025-07-25 UTC。"],[[["\u003cp\u003eGenerates a chart that visualizes the temporal variation of a specific band's value within different regions throughout a year, derived from an ImageCollection.\u003c/p\u003e\n"],["\u003cp\u003eThe chart displays the day of year on the x-axis, the derived band value on the y-axis, and uses separate series to represent different regions.\u003c/p\u003e\n"],["\u003cp\u003eUsers can customize the chart by specifying the band, regions, aggregation methods (reducers) for both region and year, scale, series labels, and the start and end days of the year to be included.\u003c/p\u003e\n"]]],["This function generates a chart from an ImageCollection, plotting band values across different regions and days of the year. It requires an `imageCollection`, `bandName`, and `regions`. It aggregates band values within regions using `regionReducer` and across years using `yearReducer`. The x-axis represents the day of the year (`startDay` to `endDay`), and the y-axis displays the reduced band value. Regions are represented as separate series, identified by `seriesProperty`. The function returns a `ui.Chart`.\n"],null,["# ui.Chart.image.doySeriesByRegion\n\n\u003cbr /\u003e\n\nGenerates a Chart from an ImageCollection. Plots the derived value of the given band in different regions at each day-of-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: Regions.\n\nReturns a chart.\n\n| Usage | Returns |\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|\n| `ui.Chart.image.doySeriesByRegion(imageCollection, bandName, regions, `*regionReducer* `, `*scale* `, `*yearReducer* `, `*seriesProperty* `, `*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| `regions` | Feature\\|FeatureCollection\\|Geometry\\|List\\\u003cFeature\\\u003e\\|List\\\u003cGeometry\\\u003e | The regions to reduce. |\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 band values across years (for a given day of year). Must return a single value. Defaults to ee.Reducer.mean(). |\n| `seriesProperty` | String, optional | Property of features in opt_regions to be used for series labels. Defaults to 'system:index'. |\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. |"]]