From f53e1d42315144cfe3b31f98a68a2078ce934a4d Mon Sep 17 00:00:00 2001
From: spencer <swilbur@usgs.gov>
Date: Fri, 31 May 2024 07:48:41 -0600
Subject: [PATCH] Added necessary channel mapping to FDSNSNCL.py to allow for
 Channels X,Y, and Z

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

diff --git a/geomagio/edge/FDSNSNCL.py b/geomagio/edge/FDSNSNCL.py
index 0f0641c7..58c5e68c 100644
--- a/geomagio/edge/FDSNSNCL.py
+++ b/geomagio/edge/FDSNSNCL.py
@@ -72,9 +72,9 @@ def get_FDSN_channel(
 
 
 def _get_channel_end(element: str) -> str:
-    if element in ["H", "U"]:
+    if element in ["H", "U", "X"]:
         return "F2"
-    elif element in ["E", "V"]:
+    elif element in ["E", "V", "Y"]:
         return "F1"
     elif element in ["Z", "W"]:
         return "FZ"
-- 
GitLab