Skip to content
Snippets Groups Projects
Commit 2a6ccab6 authored by Shavers, Nicholas H's avatar Shavers, Nicholas H
Browse files

ImagCDF Factory moved into Stream compatible block

parent 3af41f5c
No related branches found
No related tags found
1 merge request!368Imagcdf factory mvp
...@@ -636,8 +636,6 @@ def get_output_factory(args): ...@@ -636,8 +636,6 @@ def get_output_factory(args):
) )
elif output_type == "plot": elif output_type == "plot":
output_factory = PlotTimeseriesFactory() output_factory = PlotTimeseriesFactory()
elif output_type == "imagcdf":
output_factory = ImagCDFFactory(**output_factory_args)
else: else:
# stream compatible factories # stream compatible factories
if output_type == "binlog": if output_type == "binlog":
...@@ -668,6 +666,8 @@ def get_output_factory(args): ...@@ -668,6 +666,8 @@ def get_output_factory(args):
) )
elif output_type == "xml": elif output_type == "xml":
output_factory = xml.XMLFactory(**output_factory_args) output_factory = xml.XMLFactory(**output_factory_args)
elif output_type == "imagcdf":
output_factory = ImagCDFFactory(**output_factory_args)
# wrap stream # wrap stream
if output_stream is not None: if output_stream is not None:
output_factory = StreamTimeseriesFactory( output_factory = StreamTimeseriesFactory(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment