Add support for DTMBA

This commit is contained in:
Ian Renton
2026-08-31 08:59:49 +01:00
parent ba56acd7ac
commit 9083470482
17 changed files with 78 additions and 21 deletions
+5
View File
@@ -29,6 +29,11 @@ def get_sig_ref_info(sig, ref_id):
if sig.upper() == "DME":
ref_id = ref_id.zfill(5)
# DTMBA spotters sometimes include spaces and dashes, our regex allows them but they must be removed here so we
# can look up against the official list which doesn't have them
if sig.upper() == "DTMBA":
ref_id = ref_id.replace("-", "").replace(" ", "")
# If the SIG is HEMA, we have no current lookup for this so just skip the lookup here.
if sig.upper() == "HEMA":
sig_ref.ref_type = "Summit"