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: ["14","15","16","17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13"],
datasets: [{
label: 'wind',
data: [2,1,1,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,3,4,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([2,1,1,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,3,4,3], 0, 6),
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: ["14","15","16","17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13"],
datasets: [{
label: 'wind',
data: [4,2,2,6,4,6,8,10,8,8,8,8,8,8,10,10,10,10,8,12,12,10,12,10],
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([4,2,2,6,4,6,8,10,8,8,8,8,8,8,10,10,10,10,8,12,12,10,12,10], 0, 14),
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: ["14","15","16","17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13"],
datasets: [{
label: 'wind',
data: [7.2,3.6,3.6,10.8,7.2,10.8,14.4,18,14.4,14.4,14.4,14.4,14.4,14.4,18,18,18,18,14.4,21.6,21.6,18,21.6,18],
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([7.2,3.6,3.6,10.8,7.2,10.8,14.4,18,14.4,14.4,14.4,14.4,14.4,14.4,18,18,18,18,14.4,21.6,21.6,18,21.6,18], 0, 23.6),
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: ["14","15","16","17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13"],
datasets: [{
label: 'wind',
data: [2,1,1,3,2,3,4,5,4,4,4,4,4,4,5,5,5,5,4,6,6,5,6,5],
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,1,1,3,2,3,4,5,4,4,4,4,4,4,5,5,5,5,4,6,6,5,6,5], 0, 8),
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: ["14","15","16","17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13"],
datasets: [{
label: 'luchtdruk',
data: [1013.5,1013.3,1013,1012.7,1012.5,1012.5,1012.4,1012.3,1012,1011.6,1011,1010.4,1010,1009.6,1009.2,1008.8,1008.4,1007.9,1007.6,1007.3,1006.5,1005.7,1005.2,1004.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([1013.5,1013.3,1013,1012.7,1012.5,1012.5,1012.4,1012.3,1012,1011.6,1011,1010.4,1010,1009.6,1009.2,1008.8,1008.4,1007.9,1007.6,1007.3,1006.5,1005.7,1005.2,1004.8], 1000, 1019),
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: ["14","15","16","17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13"],
datasets: [{
label: 'temperatuur',
data: [25,25,25,25,24,24,23,23,23,22,22,22,22,21,21,21,21,22,23,23,24,25,25,25],
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([25,25,25,25,24,24,23,23,23,22,22,22,22,21,21,21,21,22,23,23,24,25,25,25], 20, 27),
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: ["14","15","16","17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13"],
datasets: [{
label: 'wolken',
data: [1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9],
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: ["14","15","16","17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13"],
datasets: [{
label: 'wolken',
data: [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,96,100,21,1,1,10,64],
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: ["14","15","16","17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13"],
datasets: [{
label: 'wolken',
data: [0,0,74,98,100,100,100,100,95,79,1,15,44,0,100,100,100,89,100,99,100,100,99,99],
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: ["14","15","16","17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13"],
datasets: [{
label: 'neerslag',
data: [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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 + ' 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: ["14","15","16","17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13"],
datasets: [{
label: 'Global radiation',
data: [244,202,150,92,37,5,0,0,0,0,0,0,0,0,15,43,58,54,52,84,185,134,164,192],
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: ["14","15","16","17","18","19","20","21","22","23","00","01","02","03","04","05","06","07","08","09","10","11","12","13"],
datasets: [{
label: 'zicht',
data: [50000,50000,50000,50000,50000,47291,46190,47917,42597,42398,49591,50000,49990,49704,48890,49356,50000,50000,50000,50000,50000,50000,50000,50000],
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';
}
}
}
}
}
});