From fdf2d9673312ca755f3368afdb77dff32d78f51c Mon Sep 17 00:00:00 2001
From: pcain <pcain@usgs.gov>
Date: Thu, 16 Sep 2021 11:06:40 -0600
Subject: [PATCH] Check for E-Field channels in can_produce_data

---
 geomagio/algorithm/AdjustedAlgorithm.py | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/geomagio/algorithm/AdjustedAlgorithm.py b/geomagio/algorithm/AdjustedAlgorithm.py
index fcbe2dceb..7b9f0a4d4 100644
--- a/geomagio/algorithm/AdjustedAlgorithm.py
+++ b/geomagio/algorithm/AdjustedAlgorithm.py
@@ -161,6 +161,14 @@ class AdjustedAlgorithm(Algorithm):
         ):
             return True
 
+        # if E-E and E-N available
+        if (
+            "E-E" in channels
+            and "E-N" in channels
+            and super().can_produce_data(starttime, endtime, stream)
+        ):
+            return True
+
         # check validity of remaining channels
         for c in channels:
             if c != "F" and not (
-- 
GitLab