Waterspout possible should set the tornado possible flag

This commit is contained in:
Dan Paulat 2024-07-16 23:28:30 -05:00
parent aa0bcd432e
commit a8cbfcebae

View file

@ -354,7 +354,8 @@ void ParseCodedInformation(std::shared_ptr<Segment> segment,
segment->observed_ = true;
}
else if (!segment->tornadoPossible_ && *it == "TORNADO...POSSIBLE")
else if (!segment->tornadoPossible_ &&
(*it == "TORNADO...POSSIBLE" || *it == "WATERSPOUT...POSSIBLE"))
{
segment->tornadoPossible_ = true;
}