Generates a Chart from an ImageCollection. Plots derived values of each band in a region across images. Usually a time series.
- X-axis: Image, labeled by xProperty value.
- Y-axis: Band value.
- Series: Band names.
Returns a chart.
Usage | Returns |
---|---|
ui.Chart.image.series(imageCollection, region, reducer, scale, xProperty) | ui.Chart |
Argument | Type | Details |
---|---|---|
imageCollection | ImageCollection | An ImageCollection with data to be included in the chart. |
region | Feature|FeatureCollection|Geometry | The region to reduce. |
reducer | Reducer, optional | Reducer that generates the values for the y-axis. Must return a single value. Defaults to ee.Reducer.mean(). |
scale | Number, optional | Scale to use with the reducer in meters. |
xProperty | String, optional | Property to be used as the label for each image on the x-axis. Defaults to 'system:time_start'. |
Examples
JavaScript
// Your example goes here!
Python
# Your example goes here!