From ef097ebf6f34921bf59a9204495fa2291397d7ef Mon Sep 17 00:00:00 2001
From: Jeremy Fee <jmfee@usgs.gov>
Date: Thu, 26 Aug 2021 17:27:11 -0600
Subject: [PATCH 1/2] Make derived factory optional for controller

---
 geomagio/Controller.py | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/geomagio/Controller.py b/geomagio/Controller.py
index 2936101a..d05f45ae 100644
--- a/geomagio/Controller.py
+++ b/geomagio/Controller.py
@@ -548,7 +548,7 @@ def get_input_factory(args):
             input_factory = StreamTimeseriesFactory(
                 factory=input_factory, stream=input_stream
             )
-    return DerivedTimeseriesFactory(input_factory)
+    return input_factory
 
 
 def get_output_factory(args):
@@ -725,6 +725,8 @@ def _main(args):
     """
     # create controller
     input_factory = get_input_factory(args)
+    if args.input_derived:
+        input_factory = DerivedTimeseriesFactory(input_factory)
     output_factory = get_output_factory(args)
     algorithm = algorithms[args.algorithm]()
     algorithm.configure(args)
@@ -766,6 +768,12 @@ def parse_args(args):
         help='Input format (Default "edge")',
     )
 
+    input_group.add_argument(
+        "--input-derived",
+        action="store_true",
+        default=False,
+        help="Wrap the input factory in a DerivedTimeseriesFactory",
+    )
     input_group.add_argument(
         "--input-file", help="Read from specified file", metavar="FILE"
     )
-- 
GitLab


From 9195b41fec8cd5ed5ef8a16c8bf2b8a7152fb4a2 Mon Sep 17 00:00:00 2001
From: Jeremy Fee <jmfee@usgs.gov>
Date: Thu, 26 Aug 2021 17:30:41 -0600
Subject: [PATCH 2/2] Bump version to 1.4.2

---
 code.json      | 4 ++--
 pyproject.toml | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/code.json b/code.json
index f7ea8ea3..2d425280 100644
--- a/code.json
+++ b/code.json
@@ -3,7 +3,7 @@
     "name": "geomag-algorithms",
     "organization": "U.S. Geological Survey",
     "description": "Library for processing Geomagnetic timeseries data.",
-    "version": "1.4.1",
+    "version": "1.4.2",
     "status": "Development",
 
     "permissions": {
@@ -34,7 +34,7 @@
     },
 
     "date": {
-      "metadataLastUpdated": "2021-08-24"
+      "metadataLastUpdated": "2021-08-26"
     }
   }
 ]
diff --git a/pyproject.toml b/pyproject.toml
index 7849afdf..a3d76cee 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -17,7 +17,7 @@ packages = [
   {include = "geomagio" }
 ]
 repository="https://code.usgs.gov/ghsc/geomag/geomag-algorithms"
-version = "1.4.1"
+version = "1.4.2"
 
 
 [tool.poetry.dependencies]
-- 
GitLab