お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、アクセスを維持するために
非商用目的での利用資格を確認する必要があります。2025 年 9 月 26 日までに確認が完了していない場合、アクセスが保留されることがあります。
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。"],[],["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"]]