AI-generated Key Takeaways
-
The function generates a chart from an ImageCollection, plotting derived band values within a region for each day of the year.
-
The chart's X-axis represents the day of the year, and the Y-axis represents the derived band value, with band names as the series.
-
The function returns a
ui.Chart.
- X-axis: Day of year (startDay to endDay, defaults to 1 to 366).
- Y-axis: Derived band value (reduced within the region and across years).
- Series: Band names.
Returns a chart.
| Usage | Returns |
|---|---|
ui.Chart.image.doySeries(imageCollection, region
, regionReducer
, scale
, yearReducer
, startDay
, endDay
)
|
ui.Chart |
| Argument | Type | Details |
|---|---|---|
imageCollection
|
ImageCollection | The ImageCollection to chart. |
region
|
Feature|FeatureCollection|Geometry, optional | The region to reduce. Defaults to the union of all geometries in the image collection. |
regionReducer
|
Reducer, optional | Reducer for aggregating band values within the region. Must return a single value. Defaults to ee.Reducer.mean(). |
scale
|
Number, optional | Scale to use with the region reducer in meters. |
yearReducer
|
Reducer, optional | Reducer for aggregating regionReducer outputs across years (for a given day). Must return a single value. Defaults to ee.Reducer.mean(). |
startDay
|
Number, optional | Day of year to start the series. Must be between 1 and 366. |
endDay
|
Number, optional | Day of year to end the series. Must be between startDay and 366. |

