var windv = document.getElementById('windc').getContext('2d');
var windkmh = document.getElementById('windkmh').getContext('2d');
var windms = document.getElementById('windms').getContext('2d');
var windknp = document.getElementById('windknp').getContext('2d');
var luchtdruk = document.getElementById('luchtdruk').getContext('2d');
var temperatuur = document.getElementById('temperatuur').getContext('2d');
var wolken = document.getElementById('bewolking').getContext('2d');
var mwolken = document.getElementById('mbewolking').getContext('2d');
var hwolken = document.getElementById('hbewolking').getContext('2d');
var neerslag = document.getElementById('neerslag').getContext('2d');
var straling = document.getElementById('straling').getContext('2d');
var zicht = document.getElementById('zicht').getContext('2d');
// $("#windr").html("test");
document.getElementById("windr").innerHTML="
 |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |  |
";
var gradient = windv.createLinearGradient(0, 0, 0, 400);
gradient.addColorStop(0, 'rgba(0,111,174,0.8)');
gradient.addColorStop(1, 'rgba(21,31,38,0.5)');
// Functie om min/max waarden te berekenen met 25% marge
function calculateYAxisRange(data, minValue, maxValue) {
const range = maxValue - minValue;
const margin = range * 0.25;
return {
min: Math.max(0, minValue - margin), // Nooit onder nul
max: maxValue + margin
};
}
var windChart = new Chart(windv, {
type: 'line',
data: {
labels: ["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],
datasets: [{
label: 'wind',
data: [2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,1,2,2,2,2],
backgroundColor: 'rgba(0,111,174,0.8)',
borderColor: 'rgba(0,111,174,1)',
borderWidth: 1,
fill: true
}]
},
options: {
plugins: {
legend: {
display: false
}
},
scales: {
y: {
...calculateYAxisRange([2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,1,2,2,2,2], 0, 5),
ticks: {
callback: function(value, index, ticks) {
return value + ' bft';
}
}
}
},
plugins: {
tooltip: {
enabled: true,
mode: 'index',
intersect: false,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label + ' uur';
},
label: function(tooltipItem) {
return tooltipItem.raw + ' bft';
}
}
}
}
}
});
var windknpChart = new Chart(windknp, {
type: 'line',
data: {
labels: ["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],
datasets: [{
label: 'wind',
data: [6,6,6,6,6,6,6,6,8,8,10,10,10,10,10,10,10,10,8,2,4,6,6,6],
backgroundColor: 'rgba(0,111,174,0.8)',
borderColor: 'rgba(0,111,174,1)',
borderWidth: 1,
fill: true
}]
},
options: {
plugins: {
legend: {
display: false
}
},
scales: {
y: {
...calculateYAxisRange([6,6,6,6,6,6,6,6,8,8,10,10,10,10,10,10,10,10,8,2,4,6,6,6], 0, 12),
ticks: {
callback: function(value, index, ticks) {
return value + ' knp';
}
}
}
},
plugins: {
tooltip: {
enabled: true,
mode: 'index',
intersect: false,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label + ' uur';
},
label: function(tooltipItem) {
return tooltipItem.raw + ' knp';
}
}
}
}
}
});
var windkmhChart = new Chart(windkmh, {
type: 'line',
data: {
labels: ["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],
datasets: [{
label: 'wind',
data: [10.8,10.8,10.8,10.8,10.8,10.8,10.8,10.8,14.4,14.4,18,18,18,18,18,18,18,18,14.4,3.6,7.2,10.8,10.8,10.8],
backgroundColor: 'rgba(0,111,174,0.8)',
borderColor: 'rgba(0,111,174,1)',
borderWidth: 1,
fill: true
}]
},
options: {
plugins: {
legend: {
display: false
}
},
scales: {
y: {
...calculateYAxisRange([10.8,10.8,10.8,10.8,10.8,10.8,10.8,10.8,14.4,14.4,18,18,18,18,18,18,18,18,14.4,3.6,7.2,10.8,10.8,10.8], 0, 20),
ticks: {
callback: function(value, index, ticks) {
return value + ' km/h';
}
}
}
},
plugins: {
tooltip: {
enabled: true,
mode: 'index',
intersect: false,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label + ' uur';
},
label: function(tooltipItem) {
return tooltipItem.raw + ' km/h';
}
}
}
}
}
});
var windmsChart = new Chart(windms, {
type: 'line',
data: {
labels: ["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],
datasets: [{
label: 'wind',
data: [3,3,3,3,3,3,3,3,4,4,5,5,5,5,5,5,5,5,4,1,2,3,3,3],
backgroundColor: 'rgba(0,111,174,0.8)',
borderColor: 'rgba(0,111,174,1)',
borderWidth: 1,
fill: true
}]
},
options: {
plugins: {
legend: {
display: false
}
},
scales: {
y: {
...calculateYAxisRange([3,3,3,3,3,3,3,3,4,4,5,5,5,5,5,5,5,5,4,1,2,3,3,3], 0, 7),
ticks: {
callback: function(value, index, ticks) {
return value + ' m/s';
}
}
}
},
plugins: {
tooltip: {
enabled: true,
mode: 'index',
intersect: false,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label + ' uur';
},
label: function(tooltipItem) {
return tooltipItem.raw + ' m/s';
}
}
}
}
}
});
var luchtdChart = new Chart(luchtdruk, {
type: 'line',
data: {
labels: ["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],
datasets: [{
label: 'luchtdruk',
data: [1011.8,1011.3,1010.9,1010.6,1010.3,1010,1009.7,1009.4,1008.8,1008.2,1007.7,1007.1,1006.4,1005.8,1005.1,1004.4,1004,1003.9,1004.8,1005.5,1005.9,1005.9,1006.1,1006.2],
backgroundColor: 'rgba(0,111,174,0.8)',
borderColor: 'rgba(0,111,174,1)',
borderWidth: 1,
fill: true
}]
},
options: {
plugins: {
legend: {
display: false
}
},
scales: {
y: {
...calculateYAxisRange([1011.8,1011.3,1010.9,1010.6,1010.3,1010,1009.7,1009.4,1008.8,1008.2,1007.7,1007.1,1006.4,1005.8,1005.1,1004.4,1004,1003.9,1004.8,1005.5,1005.9,1005.9,1006.1,1006.2], 999, 1017),
ticks: {
callback: function(value, index, ticks) {
return value + ' hPa';
}
}
}
},
plugins: {
tooltip: {
enabled: true,
mode: 'index',
intersect: false,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label + ' uur';
},
label: function(tooltipItem) {
return tooltipItem.raw + ' hPa';
}
}
}
}
}
});
var tempChart = new Chart(temperatuur, {
type: 'line',
data: {
labels: ["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],
datasets: [{
label: 'temperatuur',
data: [18,18,18,18,18,19,21,23,25,26,27,28,29,29,29,30,30,30,26,24,22,21,20,20],
backgroundColor: 'rgba(0,111,174,0.8)',
borderColor: 'rgba(0,111,174,1)',
borderWidth: 1,
fill: true
}]
},
options: {
plugins: {
legend: {
display: false
}
},
scales: {
y: {
...calculateYAxisRange([18,18,18,18,18,19,21,23,25,26,27,28,29,29,29,30,30,30,26,24,22,21,20,20], 17, 32),
ticks: {
callback: function(value, index, ticks) {
return value + ' ºC';
}
}
}
},
plugins: {
tooltip: {
enabled: true,
mode: 'index',
intersect: false,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label + ' uur';
},
label: function(tooltipItem) {
return tooltipItem.raw + ' ºC';
}
}
}
}
}
});
var wolkenChart = new Chart(wolken, {
type: 'bar',
data: {
labels: ["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],
datasets: [{
label: 'wolken',
data: [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,22,0,0,0,1,1],
backgroundColor: 'rgba(0,111,174,0.8)',
borderColor: 'rgba(0,111,174,1)',
borderWidth: 1
}]
},
options: {
plugins: {
legend: {
display: false
}
},
scales: {
y: {
beginAtZero: true,
ticks: {
callback: function(value, index, ticks) {
return value + ' %';
}
}
}
},
plugins: {
tooltip: {
enabled: true,
mode: 'index',
intersect: false,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label + ' uur';
},
label: function(tooltipItem) {
return tooltipItem.raw + ' %';
}
}
}
}
}
});
var mwolkenChart = new Chart(mwolken, {
type: 'bar',
data: {
labels: ["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],
datasets: [{
label: 'wolken',
data: [0,0,0,0,0,0,0,0,0,0,0,0,100,43,100,69,95,100,100,100,84,0,0,0],
backgroundColor: 'rgba(0,111,174,0.8)',
borderColor: 'rgba(0,111,174,1)',
borderWidth: 1
}]
},
options: {
plugins: {
legend: {
display: false
}
},
scales: {
y: {
beginAtZero: true,
ticks: {
callback: function(value, index, ticks) {
return value + ' %';
}
}
}
},
plugins: {
tooltip: {
enabled: true,
mode: 'index',
intersect: false,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label + ' uur';
},
label: function(tooltipItem) {
return tooltipItem.raw + ' %';
}
}
}
}
}
});
var hwolkenChart = new Chart(hwolken, {
type: 'bar',
data: {
labels: ["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],
datasets: [{
label: 'wolken',
data: [0,0,0,0,0,6,100,100,100,97,41,100,100,100,100,30,96,100,100,100,100,2,0,0],
backgroundColor: 'rgba(0,111,174,0.8)',
borderColor: 'rgba(0,111,174,1)',
borderWidth: 1
}]
},
options: {
plugins: {
legend: {
display: false
}
},
scales: {
y: {
beginAtZero: true,
ticks: {
callback: function(value, index, ticks) {
return value + ' %';
}
}
}
},
plugins: {
tooltip: {
enabled: true,
mode: 'index',
intersect: false,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label + ' uur';
},
label: function(tooltipItem) {
return tooltipItem.raw + ' %';
}
}
}
}
}
});
var neerslagChart = new Chart(neerslag, {
type: 'bar',
data: {
labels: ["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],
datasets: [{
label: 'neerslag',
data: [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1,0.5,0,0,0],
backgroundColor: 'rgba(0,111,174,0.8)',
borderColor: 'rgba(0,111,174,1)',
borderWidth: 1
}]
},
options: {
plugins: {
legend: {
display: false
}
},
scales: {
y: {
beginAtZero: true,
ticks: {
callback: function(value, index, ticks) {
return value + ' mm';
}
}
}
},
plugins: {
tooltip: {
enabled: true,
mode: 'index',
intersect: false,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label + ' uur';
},
label: function(tooltipItem) {
return tooltipItem.raw + ' mm';
}
}
}
}
}
});
var stralingChart = new Chart(straling, {
type: 'bar',
data: {
labels: ["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],
datasets: [{
label: 'Global radiation',
data: [0,0,0,1,21,65,110,137,172,223,233,249,199,168,95,155,53,45,8,1,0,0,0,0],
backgroundColor: 'rgba(0,111,174,0.8)',
borderColor: 'rgba(0,111,174,1)',
borderWidth: 1
}]
},
options: {
plugins: {
legend: {
display: false
}
},
scales: {
y: {
beginAtZero: true,
ticks: {
callback: function(value, index, ticks) {
return value + ' W/m2';
}
}
}
},
plugins: {
tooltip: {
enabled: true,
mode: 'index',
intersect: false,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label + ' uur';
},
label: function(tooltipItem) {
return tooltipItem.raw + ' W/m2';
}
}
}
}
}
});
var zichtChart = new Chart(zicht, {
type: 'line',
data: {
labels: ["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],
datasets: [{
label: 'zicht',
data: [11698,10443,9322,8761,10818,16335,22029,26239,29645,34647,36597,37336,37835,37203,36269,37635,35942,32980,13593,4950,6348,6852,5990,5504],
backgroundColor: 'rgba(0,111,174,0.8)',
borderColor: 'rgba(0,111,174,1)',
borderWidth: 1,
fill: true
}]
},
options: {
plugins: {
legend: {
display: false
}
},
scales: {
y: {
min: 0,
max: 55000,
ticks: {
callback: function(value, index, ticks) {
return value + ' m';
}
}
}
},
plugins: {
tooltip: {
enabled: true,
mode: 'index',
intersect: false,
callbacks: {
title: function(tooltipItems) {
return tooltipItems[0].label + ' uur';
},
label: function(tooltipItem) {
return tooltipItem.raw + ' m';
}
}
}
}
}
});