Skip to content

Commit 37d97fd

Browse files
committed
Change aggregation to "MEAN"
1 parent e3e349a commit 37d97fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/components/WeatherGraphs/MedianTempGraph.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default {
4444
endDate: new Date(endDate.value).getTime() / 1000,
4545
location: "TEMPELHOFER_FELD",
4646
temporalResolution: "MONTHLY",
47-
aggregation: "MEDIAN",
47+
aggregation: "MEAN",
4848
};
4949
5050
try {
@@ -81,7 +81,7 @@ export default {
8181
8282
const renderPlot = () => {
8383
const layout = {
84-
title: 'Median Monthly Temperature (1990 - 2024)',
84+
title: 'Mean Monthly Temperature (1990 - 2024)',
8585
xaxis: { title: '', type: 'date', rangeslider: { visible: true } },
8686
yaxis: { title: 'Temperature (°C)' },
8787
template: 'plotly_white'

0 commit comments

Comments
 (0)