mirror of
https://github.com/nasa/openmct.git
synced 2025-06-14 13:18:15 +00:00
[Plot] Begin integrating with telemetry handler
Miscellaneous tweaks and fixes to begin showing merged real-time and historical telemetry, WTD-806.
This commit is contained in:
@ -75,10 +75,8 @@ define(
|
||||
buffer[index * 2 + 1] = rangeValue;
|
||||
// Track min/max of range values (min/max for
|
||||
// domain values can be read directly from buffer)
|
||||
rangeExtrema = [
|
||||
Math.min(rangeExtrema[0], rangeValue),
|
||||
Math.max(rangeExtrema[1], rangeValue)
|
||||
];
|
||||
rangeExtrema[0] = Math.min(rangeExtrema[0], rangeValue);
|
||||
rangeExtrema[1] = Math.max(rangeExtrema[1], rangeValue);
|
||||
}
|
||||
|
||||
return {
|
||||
|
Reference in New Issue
Block a user