From a8cbfcebaede684ba051e33228fa3888e885bc7f Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Tue, 16 Jul 2024 23:28:30 -0500 Subject: [PATCH] Waterspout possible should set the tornado possible flag --- wxdata/source/scwx/awips/text_product_message.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wxdata/source/scwx/awips/text_product_message.cpp b/wxdata/source/scwx/awips/text_product_message.cpp index cccd9e07..541c6806 100644 --- a/wxdata/source/scwx/awips/text_product_message.cpp +++ b/wxdata/source/scwx/awips/text_product_message.cpp @@ -354,7 +354,8 @@ void ParseCodedInformation(std::shared_ptr segment, segment->observed_ = true; } - else if (!segment->tornadoPossible_ && *it == "TORNADO...POSSIBLE") + else if (!segment->tornadoPossible_ && + (*it == "TORNADO...POSSIBLE" || *it == "WATERSPOUT...POSSIBLE")) { segment->tornadoPossible_ = true; }