Объявление : Все некоммерческие проекты, зарегистрированные для использования Earth Engine до
15 апреля 2025 года, должны
подтвердить некоммерческое право на сохранение доступа к Earth Engine.
ui.Chart.image.doySeries
Оптимизируйте свои подборки
Сохраняйте и классифицируйте контент в соответствии со своими настройками.
Создаёт диаграмму из коллекции изображений. Отображает полученные значения для каждой полосы в регионе для каждого дня года.
- Ось X: день года (от startDay до endDay, по умолчанию от 1 до 366).
- Ось Y: полученное значение диапазона (уменьшенное внутри региона и по годам).
- Серия: Названия групп.
Возвращает диаграмму.
Использование | Возврат | ui.Chart.image.doySeries(imageCollection, region , regionReducer , scale , yearReducer , startDay , endDay ) | ui.Chart |
Аргумент | Тип | Подробности | imageCollection | Коллекция изображений | Коллекция изображений для построения диаграммы. |
region | Feature|FeatureCollection|Геометрия, необязательно | Область для уменьшения. По умолчанию используется объединение всех геометрических объектов в коллекции изображений. |
regionReducer | Редуктор, опционально | Редуктор для агрегации значений диапазонов в пределах региона. Должен возвращать одно значение. По умолчанию — ee.Reducer.mean(). |
scale | Номер, необязательно | Масштаб для использования с редуктором региона в метрах. |
yearReducer | Редуктор, опционально | Редуктор для агрегации выходных данных regionReducer по годам (для заданного дня). Должен возвращать одно значение. Значение по умолчанию — ee.Reducer.mean(). |
startDay | Номер, необязательно | День года, с которого начинается серия. Должен быть от 1 до 366. |
endDay | Номер, необязательно | День года, в который заканчивается серия. Должен быть в диапазоне от startDay до 366. |
Если не указано иное, контент на этой странице предоставляется по лицензии Creative Commons "С указанием авторства 4.0", а примеры кода – по лицензии Apache 2.0. Подробнее об этом написано в правилах сайта. Java – это зарегистрированный товарный знак корпорации Oracle и ее аффилированных лиц.
Последнее обновление: 2025-07-24 UTC.
[null,null,["Последнее обновление: 2025-07-24 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. |"]]