diff --git a/wxdata/source/scwx/awips/text_product_message.cpp b/wxdata/source/scwx/awips/text_product_message.cpp index 5128aee8..541a1a1a 100644 --- a/wxdata/source/scwx/awips/text_product_message.cpp +++ b/wxdata/source/scwx/awips/text_product_message.cpp @@ -390,9 +390,21 @@ void ParseCodedInformation(std::shared_ptr segment, it->substr(threatTagIt->length()); ThreatCategory threatCategory = GetThreatCategory(threatCategoryName); - if (threatCategory == ThreatCategory::Unknown) + + switch (threatCategory) { + case ThreatCategory::Significant: + // "Significant" is no longer an official tag, and has largely been + // replaced with "Considerable". + threatCategory = ThreatCategory::Considerable; + break; + + case ThreatCategory::Unknown: threatCategory = ThreatCategory::Base; + break; + + default: + break; } segment->threatCategory_ = threatCategory;