2014-12-01 17:41:39 +00:00
|
|
|
{
|
|
|
|
"name": "Plot view for telemetry",
|
|
|
|
"extensions": {
|
|
|
|
"views": [
|
|
|
|
{
|
|
|
|
"name": "Plot",
|
2015-01-06 18:03:24 +00:00
|
|
|
"key": "plot",
|
2015-01-27 22:50:45 +00:00
|
|
|
"glyph": "6",
|
2014-12-01 17:41:39 +00:00
|
|
|
"templateUrl": "templates/plot.html",
|
|
|
|
"needs": [ "telemetry" ],
|
2015-06-13 02:00:55 +00:00
|
|
|
"priority": "preferred",
|
2014-12-01 17:41:39 +00:00
|
|
|
"delegation": true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"directives": [
|
|
|
|
{
|
|
|
|
"key": "mctChart",
|
|
|
|
"implementation": "MCTChart.js",
|
2014-12-02 19:08:21 +00:00
|
|
|
"depends": [ "$interval", "$log" ]
|
2014-12-01 17:41:39 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"controllers": [
|
|
|
|
{
|
|
|
|
"key": "PlotController",
|
|
|
|
"implementation": "PlotController.js",
|
2015-06-20 18:30:20 +00:00
|
|
|
"depends": [
|
|
|
|
"$scope",
|
|
|
|
"telemetryFormatter",
|
|
|
|
"telemetryHandler",
|
|
|
|
"throttle",
|
|
|
|
"PLOT_FIXED_DURATION"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"constants": [
|
|
|
|
{
|
|
|
|
"key": "PLOT_FIXED_DURATION",
|
|
|
|
"value": 900000,
|
|
|
|
"priority": "fallback",
|
|
|
|
"comment": "Fifteen minutes."
|
2014-12-01 17:41:39 +00:00
|
|
|
}
|
2015-06-19 00:00:20 +00:00
|
|
|
],
|
|
|
|
"policies": [
|
|
|
|
{
|
|
|
|
"category": "view",
|
|
|
|
"implementation": "policies/PlotViewPolicy.js"
|
|
|
|
}
|
2014-12-01 17:41:39 +00:00
|
|
|
]
|
|
|
|
}
|
2015-06-19 00:00:20 +00:00
|
|
|
}
|