I don't think you need a node.js/JS library for this task. What you want to achieve can be done with a reduce function.
var a = [{
"time": "28-09-2018 21:29:04",
"value1": 1280,
"value2": 800
},
{
"time": "28-09-2018 21:38:56",
"value1": 600,
"value2": 700
},
{
"time": "29-09-2018 10:40:00",
"value1": 1100,
"value2": 300
},
{
"time": "29-09-2018 23:50:48",
"value1": 140
}];
var b = Object.values(a.reduce((container, current) => {
var date = current['time'].substring(0, 10);
if (!container[date])
container[date] = {time: date + ' 00:00:00', value1: current['value1'] || 0, value2: current['value2'] || 0};
else {
container[date]['value1'] += current['value1'] || 0;
container[date]['value2'] += current['value2'] || 0;
}
return container;
}, {}));
This function create an object with keys the date and aggregate the values. You need to take care if the date exists or not in that object. With || 0
you manage if the property is not in a element to not break anything; and with Object.values
you extract the values to have an array. Since you used the date as string I treated them as string but if they are Date object you have to adjust the common part where you declare date
.
Side note, as always you can reference to a prop in js with ['value1']
or also with .value1
. I stick to a more familiar pythonic syntax since it was mentioned.
Of course, this is just an example with daily resample, if you need a bigger/smaller quota you have to manipulate dates. Let's say we want to emulate a 12 hours resample, you write:
var resample = 12;
var b = Object.values(a.reduce((container, current) => {
var date = new Date(current['time'].replace(/(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)/, '$3-$2-$1T$4:$5:$6'));
date.setHours(Math.floor(date.getHours() / resample) * resample);
date.setMinutes(0);
date.setSeconds(0);
if (!container[date.toString()])
container[date.toString()] = {time: date, value1: current['value1'] || 0, value2: current['value2'] || 0};
else {
container[date.toString()]['value1'] += current['value1'] || 0;
container[date.toString()]['value2'] += current['value2'] || 0;
}
return container;
}, {}));
That regex replace
is because the dates are not in ISO format, you could use a library for that, like moment or others, I wanted to show that it is possible to do all with just plain JS.
Remember one thing when using JS dates: if you are in the browser the timezone is the one of the client, if you are in a server the timezone is the same of the server. If time
is timezone free I don't think there should be problems because it is all managed in the local timezone.