From 2a6ccab6c4f94a5180db90a39798880537b77a34 Mon Sep 17 00:00:00 2001
From: Nicholas Shavers <nshavers@contractor.usgs.gov>
Date: Thu, 19 Dec 2024 09:21:11 -0800
Subject: [PATCH] ImagCDF Factory moved into Stream compatible block

---
 geomagio/Controller.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/geomagio/Controller.py b/geomagio/Controller.py
index 199befdd..a5777a2f 100644
--- a/geomagio/Controller.py
+++ b/geomagio/Controller.py
@@ -636,8 +636,6 @@ def get_output_factory(args):
         )
     elif output_type == "plot":
         output_factory = PlotTimeseriesFactory()
-    elif output_type == "imagcdf":
-        output_factory = ImagCDFFactory(**output_factory_args)
     else:
         # stream compatible factories
         if output_type == "binlog":
@@ -668,6 +666,8 @@ def get_output_factory(args):
             )
         elif output_type == "xml":
             output_factory = xml.XMLFactory(**output_factory_args)
+        elif output_type == "imagcdf":
+            output_factory = ImagCDFFactory(**output_factory_args)
         # wrap stream
         if output_stream is not None:
             output_factory = StreamTimeseriesFactory(
-- 
GitLab