From 0a66e5adcba54dcdce516f2c367ff0cfd7808210 Mon Sep 17 00:00:00 2001
From: ldam <ldam@passcal.nmt.edu>
Date: Wed, 26 Feb 2025 10:29:51 -0700
Subject: [PATCH] Add A,B,C option to check_chan()

---
 sohstationviewer/controller/util.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sohstationviewer/controller/util.py b/sohstationviewer/controller/util.py
index b6846962..a46f6d39 100644
--- a/sohstationviewer/controller/util.py
+++ b/sohstationviewer/controller/util.py
@@ -349,7 +349,7 @@ def check_chan(chan_id: str, req_soh_chans: List[str], req_wf_chans: List[str],
     """
     if chan_id.startswith('VM'):
         if (not include_mp123zne and
-                chan_id[-1] in ['1', '2', '3', 'Z', 'N', 'E']):
+                chan_id[-1] in ['1', '2', '3', 'Z', 'N', 'E', 'A', 'B', 'C']):
             return False
         if (not include_mp456uvw
                 and chan_id[-1] in ['4', '5', '6', 'U', 'V', 'W']):
-- 
GitLab