diff --git a/wxdata/source/scwx/awips/text_product_message.cpp b/wxdata/source/scwx/awips/text_product_message.cpp index 2c49077b..a27e593d 100644 --- a/wxdata/source/scwx/awips/text_product_message.cpp +++ b/wxdata/source/scwx/awips/text_product_message.cpp @@ -245,7 +245,9 @@ void ParseCodedInformation(std::shared_ptr segment, } else if (codedMotionBegin != productContent.cend() && codedMotionEnd == productContent.cend() && - !it->starts_with(" ") /* Continuation line */) + !it->starts_with(" ") && + !std::regex_search(*it, std::regex {"^[0-9]"}) + /* Continuation lines */) { codedMotionEnd = it; }