-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplayWeatherData.js
183 lines (157 loc) · 5.55 KB
/
displayWeatherData.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
//Imports
import { getWeatherDescription } from './weatherCodes.js';
import { weatherParameterNames } from './weatherCodes.js';
export function displayWeatherData(currentWeather, dailyFilters, weatherData, weatherContainer, currentFilters) {
const timeLabels = weatherData.daily.time.map(time => new Date(time).toLocaleDateString());
const dailyCheckBoxes = document.querySelectorAll(".daily-filters > .filters input:checked");
const currentCheckBoxes = document.querySelectorAll(".current-filters > .filters input:checked");
const getCheckedFilters = (checkboxes) => {
return Array.from(checkboxes)
.filter(checkbox => checkbox.checked)
.map(checkbox => checkbox.value);
};
dailyFilters = getCheckedFilters(dailyCheckBoxes);
currentFilters = getCheckedFilters(currentCheckBoxes);
function getRandomColor() {
const letters = '0123456789ABCDEF';
let color = '#';
for (let i = 0; i < 6; i++) {
color += letters[Math.floor(Math.random() * 16)];
}
return color;
}
function createChart(containerId, categoryName, labels, datasets) {
const canvas = document.createElement('canvas');
canvas.id = containerId;
canvas.removeAttribute('width');
canvas.removeAttribute('height');
weatherContainer.appendChild(canvas);
new Chart(canvas, {
type: 'line',
data: {
labels: labels,
datasets: datasets
},
options: {
responsive: true,
plugins: {
title: {
display: true,
text: `${categoryName} Data`,
font: {
size: 20,
family: '"Fredoka", sans-serif'
}
},
legend: {
position: 'top',
labels: {
font: {
size: 20,
family: '"Fredoka", sans-serif'
}
}
},
tooltip: {
mode: 'index',
intersect: false,
}
},
scales: {
x: {
display: true,
title: {
display: true,
text: 'Date',
font: {
size: 20,
family: '"Fredoka", sans-serif',
}
},
ticks: {
font: {
size: 20,
family: '"Fredoka", sans-serif'
}
}
},
y: {
display: true,
title: {
display: true,
text: 'Value',
font: {
size: 20,
family: '"Fredoka", sans-serif',
}
},
ticks: {
font: {
size: 20,
family: '"Fredoka", sans-serif'
}
}
}
}
}
});
}
// Function to display current weather data (with filters)
function displayCurrentWeather(currentWeatherData, currentFilters) {
if (currentFilters.length > 0) {
const currentDetailed = document.createElement('div');
currentDetailed.className = 'daily-detailed-flex';
weatherContainer.appendChild(currentDetailed);
const currentTitle = document.createElement('h3');
currentTitle.innerText = 'Current Weather';
currentDetailed.appendChild(currentTitle);
currentWeatherData = weatherData.current;
currentFilters.forEach(filter => {
const currentData = currentWeatherData[filter];
const currentElement = document.createElement('div');
if (filter === 'weather_code') {
currentElement.innerText = `${weatherParameterNames[filter]}: ${getWeatherDescription(currentData)}`;
} else {
currentElement.innerText = `${weatherParameterNames[filter]}: ${currentData} ${weatherData.current_units[filter]}`;
}
currentDetailed.appendChild(currentElement);
});
}
}
// Display the current weather data based on currentFilters
displayCurrentWeather(currentWeather, currentFilters);
// Group daily filters and create charts
const temperatureGroup = ['temperature_2m_max', 'temperature_2m_min', 'apparent_temperature_max', 'apparent_temperature_min'];
const precipitationGroup = ['precipitation_sum', 'rain_sum', 'showers_sum', 'snowfall_sum', 'precipitation_hours'];
const sunAndWindGroup = ['wind_speed_10m_max', 'wind_gusts_10m_max', 'uv_index_max', 'uv_index_clear_sky_max'];
const dailyDetailed = document.createElement('div');
dailyDetailed.className = 'daily-detailed-flex';
weatherContainer.appendChild(dailyDetailed);
const dailyTitle = document.createElement('h3');
dailyTitle.innerText = 'Daily Forecast';
dailyDetailed.appendChild(dailyTitle);
const temperatureDatasets = temperatureGroup.map(filter => ({
label: weatherParameterNames[filter],
data: weatherData.daily[filter],
borderColor: getRandomColor(),
fill: false,
tension: 0.1
}));
createChart('temperatureChart', 'Temperature', timeLabels, temperatureDatasets);
const precipitationDatasets = precipitationGroup.map(filter => ({
label: weatherParameterNames[filter],
data: weatherData.daily[filter],
borderColor: getRandomColor(),
fill: false,
tension: 0.1
}));
createChart('precipitationChart', 'Precipitation', timeLabels, precipitationDatasets);
const sunAndWindDatasets = sunAndWindGroup.map(filter => ({
label: weatherParameterNames[filter],
data: weatherData.daily[filter],
borderColor: getRandomColor(),
fill: false,
tension: 0.1
}));
createChart('sunAndWindChart', 'Sunshine & Wind', timeLabels, sunAndWindDatasets);
}