new-plot import (#1557)

Merge of new plot
* Introduces new Plot object and view
* Removes Old Plot
* Add LAD support and state type to generators
* Removes Telemetry Panel Type
* Telemetry API Updates
* UTCFormat.parse: passthrough numbers
* TelemetryAPI: default request arguments
* TelemetryAPI: fix enum formatting
* Markup and styling to support new plots
This commit is contained in:
Pete Richards
2018-03-02 14:29:34 -08:00
committed by Andrew Henry
parent 6145843e86
commit 5726fe6313
131 changed files with 6652 additions and 8247 deletions

View File

@@ -30,7 +30,8 @@ define([
'../../platform/import-export/bundle',
'./summaryWidget/plugin',
'./URLIndicatorPlugin/URLIndicatorPlugin',
'./telemetryMean/plugin'
'./telemetryMean/plugin',
'./plot/plugin'
], function (
_,
UTCTimeSystem,
@@ -41,7 +42,8 @@ define([
ImportExport,
SummaryWidget,
URLIndicatorPlugin,
TelemetryMean
TelemetryMean,
PlotPlugin
) {
var bundleMap = {
CouchDB: 'platform/persistence/couch',
@@ -126,6 +128,8 @@ define([
};
plugins.ExampleImagery = ExampleImagery;
plugins.Plot = PlotPlugin;
plugins.SummaryWidget = SummaryWidget;
plugins.TelemetryMean = TelemetryMean;
plugins.URLIndicatorPlugin = URLIndicatorPlugin;