[Telemetry] Add metadata and formatter support

Add TelemetryMetadataManager which assists developers in interrogating
telemetry metadata to find values that are useful for them.

Add TelemetryValueFormatter to simplify the parsing (retrieval of numerical
values) and formatting (retrieval of displayable string value) of datums.

https://github.com/nasa/openmct/issues/1310
This commit is contained in:
Pete Richards
2016-12-09 12:28:21 -08:00
committed by Henry
parent 43132ea6f8
commit 215e9b26a8
4 changed files with 318 additions and 2 deletions

View File

@ -192,7 +192,7 @@ define([
* @memberof module:openmct.MCT#
* @name telemetry
*/
this.telemetry = new api.TelemetryAPI();
this.telemetry = new api.TelemetryAPI(this);
this.TimeConductor = this.conductor; // compatibility for prototype
this.on('navigation', this.selection.clear.bind(this.selection));