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)');
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: [3,3,3,3,3,3,3,3,3,3,2,2,3,3,3,3,3,3,2,2,2,2,1,1],
backgroundColor: gradient,
borderColor: gradient,
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: false,
min: 0,
max: 5,
callback: function(label, index, labels) {
return label+' bft';
}
}
}]
},
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
title: function(tooltipItems, data) {
return tooltipItems[0].xLabel + ' uur';
},
label: function(tooltipItems, data) {
return tooltipItems.yLabel + ' 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: [8,8,8,8,8,10,10,8,8,8,6,6,8,8,8,8,8,8,6,4,4,4,2,2],
backgroundColor: gradient,
borderColor: gradient,
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: false,
min: 0,
max: 12,
callback: function(label, index, labels) {
return label+' knp';
}
}
}]
},
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
title: function(tooltipItems, data) {
return tooltipItems[0].xLabel + ' uur';
},
label: function(tooltipItems, data) {
return tooltipItems.yLabel + ' 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: [14.4,14.4,14.4,14.4,14.4,18,18,14.4,14.4,14.4,10.8,10.8,14.4,14.4,14.4,14.4,14.4,14.4,10.8,7.2,7.2,7.2,3.6,3.6],
backgroundColor: gradient,
borderColor: gradient,
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: false,
min: 0,
max: 20,
callback: function(label, index, labels) {
return label+' km/h';
}
}
}]
},
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
title: function(tooltipItems, data) {
return tooltipItems[0].xLabel + ' uur';
},
label: function(tooltipItems, data) {
return tooltipItems.yLabel + ' 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: [4,4,4,4,4,5,5,4,4,4,3,3,4,4,4,4,4,4,3,2,2,2,1,1],
backgroundColor: gradient,
borderColor: gradient,
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: false,
min: 0,
max: 7,
callback: function(label, index, labels) {
return label+' m/s';
}
}
}]
},
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
title: function(tooltipItems, data) {
return tooltipItems[0].xLabel + ' uur';
},
label: function(tooltipItems, data) {
return tooltipItems.yLabel + ' 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: [1024.7,1024.4,1024.1,1023.8,1023.5,1023.5,1023.5,1023.7,1024,1024.2,1024.2,1024.2,1024.1,1024.1,1024.2,1024.4,1024.8,1025.1,1025.6,1026.1,1026.7,1027.3,1028,1028.6],
backgroundColor: gradient,
borderColor: gradient,
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: false,
min: 1019,
max: 1034,
callback: function(label, index, labels) {
return label+' hPa';
}
}
}]
},
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
title: function(tooltipItems, data) {
return tooltipItems[0].xLabel + ' uur';
},
label: function(tooltipItems, data) {
return tooltipItems.yLabel + ' 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: [13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,13,14,14,14,14,14,14,14,14],
backgroundColor: gradient,
borderColor: gradient,
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: false,
min: 12,
max: 16,
callback: function(label, index, labels) {
return label+' ºC';
}
}
}]
},
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
title: function(tooltipItems, data) {
return tooltipItems[0].xLabel + ' uur';
},
label: function(tooltipItems, data) {
return tooltipItems.yLabel + ' º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: [100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100],
backgroundColor: gradient,
borderColor: gradient,
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: true,
callback: function(label, index, labels) {
return label+' %';
}
}
}]
},
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
title: function(tooltipItems, data) {
return tooltipItems[0].xLabel + ' uur';
},
label: function(tooltipItems, data) {
return tooltipItems.yLabel + ' %';
}
}
},
}
});
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,0,0,0,0,0,0,0,0,0,0,0,0],
backgroundColor: gradient,
borderColor: gradient,
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: true,
callback: function(label, index, labels) {
return label+' %';
}
}
}]
},
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
title: function(tooltipItems, data) {
return tooltipItems[0].xLabel + ' uur';
},
label: function(tooltipItems, data) {
return tooltipItems.yLabel + ' %';
}
}
},
}
});
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,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,100,59,0,6],
backgroundColor: gradient,
borderColor: gradient,
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: true,
callback: function(label, index, labels) {
return label+' %';
}
}
}]
},
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
title: function(tooltipItems, data) {
return tooltipItems[0].xLabel + ' uur';
},
label: function(tooltipItems, data) {
return tooltipItems.yLabel + ' %';
}
}
},
}
});
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,0,0,0,0,0],
backgroundColor: gradient,
borderColor: gradient,
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: false,
min: 0,
max: 2,
callback: function(label, index, labels) {
return label+' mm';
}
}
}]
},
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
title: function(tooltipItems, data) {
return tooltipItems[0].xLabel + ' uur';
},
label: function(tooltipItems, data) {
return tooltipItems.yLabel + ' 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,0,0,0,0,0,3,5,7,14,15,12,11,7,4,0,0,0,0,0,0,0],
backgroundColor: gradient,
borderColor: gradient,
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: false,
min: 0,
max: 20,
callback: function(label, index, labels) {
return label+' W/m2';
}
}
}]
},
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
title: function(tooltipItems, data) {
return tooltipItems[0].xLabel + ' uur';
},
label: function(tooltipItems, data) {
return tooltipItems.yLabel + ' 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: [14930,50000,50000,14258,50000,14333,14903,15013,12510,11722,50000,11435,11001,50000,10279,10471,11269,9852,9245,50000,8721,50000,50000,8770],
backgroundColor: gradient,
borderColor: gradient,
borderWidth: 1
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero: false,
min: 0,
max: 55000,
callback: function(label, index, labels) {
return label+' m';
}
}
}]
},
tooltips: {
enabled: true,
mode: 'single',
callbacks: {
title: function(tooltipItems, data) {
return tooltipItems[0].xLabel + ' uur';
},
label: function(tooltipItems, data) {
return tooltipItems.yLabel + ' m';
}
}
},
}
});