Implemention of basic averaging telemetry filter

This commit is contained in:
Henry
2017-10-27 14:12:44 -07:00
committed by Victor Woeltjen
parent 01d93306f3
commit 0a9ea48355
5 changed files with 288 additions and 3 deletions

View File

@ -121,6 +121,9 @@ define([
};
UTCTimeFormat.prototype.parse = function (text) {
if (typeof text === 'number') {
return text;
}
return moment.utc(text, DATE_FORMATS).valueOf();
};