Skip to content
Snippets Groups Projects
Commit 794d0eed authored by Yan, Andrew N.'s avatar Yan, Andrew N.
Browse files

adjustments to time range for statistical data

parent 594663a4
No related branches found
No related tags found
No related merge requests found
......@@ -266,8 +266,9 @@ const plotAllMedianPoints = function (elem, {visible, xscale, yscale, seriesMap,
const container = elem
.append('g')
.attr('id', 'median-points');
console.log(seriesMap);
for (const [index, seriesID] of Object.keys(seriesMap).entries()) {
console.log(seriesMap[seriesID]);
const points = coerceStatisticalSeries(seriesMap[seriesID]);
plotMedianPoints(container, {xscale, yscale, modulo: index % 6, points, showLabel, variable});
}
......
......@@ -31,6 +31,8 @@ export const coerceStatisticalSeries = function (series) {
let sortedPoints = plotablePoints.sort(function(a, b) {
return a.dateTime - b.dateTime;
});
console.log(series.startTime);
console.log(series.endTime);
let filtered = sortedPoints.filter(x => series.startTime <= x.dateTime && x.dateTime <= series.endTime);
let first = filtered[0];
if (first.dateTime > series.startTime) {
......
......@@ -137,8 +137,8 @@ export const Actions = {
}).then(
series => {
const collection = normalize(series, tsKey);
dispatch(Actions.addSeriesCollection(tsKey, collection));
dispatch(Actions.updateStartTime(startTime));
dispatch(Actions.addSeriesCollection(tsKey, collection));
},
() => {
console.log(`Unable to fetch data for period ${period} and parameter code ${parmCd}`);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment