Re-implement the event generator as a new-style plugin - Mct4552 (#4620)

Updates Event Generator to ES6 classes and current API.

Co-authored-by: Andrew Henry <akhenry@gmail.com>
Co-authored-by: John Hill <john.c.hill@nasa.gov>
This commit is contained in:
Scott Bell
2022-01-20 19:23:40 +01:00
committed by GitHub
parent 384af89d4c
commit ba2a6030c2
11 changed files with 253 additions and 239 deletions

View File

@ -28,6 +28,7 @@ define([
'./ISOTimeFormat/plugin',
'./myItems/plugin',
'../../example/generator/plugin',
'../../example/eventGenerator/plugin',
'./autoflow/AutoflowTabularPlugin',
'./timeConductor/plugin',
'../../example/imagery/plugin',
@ -85,6 +86,7 @@ define([
ISOTimeFormat,
MyItems,
GeneratorPlugin,
EventGeneratorPlugin,
AutoflowPlugin,
TimeConductorPlugin,
ExampleImagery,
@ -196,6 +198,7 @@ define([
return GeneratorPlugin;
};
plugins.EventGeneratorPlugin = EventGeneratorPlugin.default;
plugins.ExampleImagery = ExampleImagery.default;
plugins.ImageryPlugin = ImageryPlugin;
plugins.Plot = PlotPlugin.default;