공지사항:
2025년 4월 15일 전에 Earth Engine 사용을 위해 등록된 모든 비상업용 프로젝트는 Earth Engine 액세스를 유지하기 위해
비상업용 자격 요건을 인증해야 합니다.
ui.Chart.image.doySeries
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
ImageCollection에서 차트를 생성합니다. 한 해의 각 날짜에 대해 지역의 각 밴드에서 파생된 값을 표시합니다.
- X축: 연중일 (startDay~endDay, 기본값은 1~366)
- Y축: 파생된 대역 값 (지역 내 및 연도에 걸쳐 감소됨)
- 계열: 밴드 이름
차트를 반환합니다.
사용 | 반환 값 |
---|
ui.Chart.image.doySeries(imageCollection, region, regionReducer, scale, yearReducer, startDay, endDay) | ui.Chart |
인수 | 유형 | 세부정보 |
---|
imageCollection | ImageCollection | 차트로 표시할 ImageCollection입니다. |
region | Feature|FeatureCollection|Geometry(선택사항) | 축소할 영역입니다. 기본값은 이미지 컬렉션에 있는 모든 도형의 합집합입니다. |
regionReducer | 감소기(선택사항) | 리전 내에서 대역 값을 집계하는 리듀서입니다. 단일 값을 반환해야 합니다. 기본값은 ee.Reducer.mean()입니다. |
scale | 숫자, 선택사항 | 미터 단위로 지역 리듀서와 함께 사용하도록 조정합니다. |
yearReducer | 감소기(선택사항) | 특정 날짜에 대해 연도별로 regionReducer 출력을 집계하는 리듀서입니다. 단일 값을 반환해야 합니다. 기본값은 ee.Reducer.mean()입니다. |
startDay | 숫자, 선택사항 | 시리즈를 시작할 연중 날짜입니다. 1~366 사이여야 합니다. |
endDay | 숫자, 선택사항 | 시리즈가 종료되는 날짜(연중 일수)입니다. startDay와 366 사이여야 합니다. |
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-26(UTC)
[null,null,["최종 업데이트: 2025-07-26(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. |"]]