'Severe Thunderstorms' Are Coming for St. Louis and Maybe Tornadoes Too (2024)

Batten down the hatches: Severe thunderstorms are likely coming for St. Louis tonight.

The National Weather Service says there will be two rounds of severe scattered thunderstorms in St. Louis — one from 5 to 11 p.m. on Wednesday, March 13, and the next Thursday afternoon and evening. The first is largely centered in central and northeast Missouri (yep, that's us), as well as west central Illinois. It includes a good chance of hail from 5 to 7 p.m. and (brace yourself!) possibly a tornado or two before the storm moves east.

Then, on Thursday, March 14, the National Weather Service says most of Missouri and Illinois could see more thunderstorms, with very large hail, damaging winds and again the possibility of tornadoes. Egads!

That said, while the risk is real, it's worth noting that on the National Weather Service maps, St. Louis is located in an area of "slight risk" tonight — things get worse due west of here (including Warrensburg and Chillicothe).

The latest update for the increasing threat for severe t-storms this evening: storms will form between 5-7 PM 🙴 move northward. Threats are golf ball sized hail, damaging winds up to 60 mph, 🙴 a tornado or two. #mowx #ilwx #stlwx #midmowx pic.twitter.com/pOp2QPnUIj

— NWS St. Louis (@NWSStLouis) March 13, 2024

The specifics for tomorrow are still in flux, but you'll want to keep an eye out for further updates:

There will be two rounds of potential severe weather between now and tomorrow night. One will occur this evening and the other will occur Thursday afternoon and evening. #stlwx #midmowx #mowx #ilwx pic.twitter.com/h7XhgkYiPi

— NWS St. Louis (@NWSStLouis) March 13, 2024

As it turns out, the St. Louis area is uniquely positioned to get positively creamed by tornadoes, being located in an area of high risk at the same time we have a comparatively high population and lots of old houses that haven't been retrofitted to withstand cyclones. So, we're basically sitting ducks.

Keep an eye on the National Weather Service for updates. And when they tell you to seek shelter in your basem*nt, maybe turn off the TV and listen. This one could get ugly.

Related

St. Louis Should Be Very Worried About Tornadoes, New Study Finds: Be afraid. Be very afraid

Related

Who Owns 'First Alert Weather'? KMOV's Owner Sues KSDK Over Use: Gray Media Group says they trademarked the phrase in 2007


Related

St. Louis Was Surrounded by 12 Tornadoes Last Weekend: What in the Final Destination was happening here?

Subscribe to Riverfront Times newsletters.

Follow us: Apple News | Google News | NewsBreak | Reddit | Instagram | Facebook | Twitter | Or sign up for our RSS Feed

') let lineHeight = jQuery('[line-height-check]').get(0).clientHeight; jQuery('[line-height-check]').remove() if (jQuery(element).prop('tagName').match(/HIDDEN/i) !== null) { jQuery(element).children('div').last().css({ marginBottom: `${lineHeight*2}px` }); } else { jQuery(element).css({ marginTop: `${lineHeight*2}px`, marginBottom: `${lineHeight}px` }); } // const insertionBlockClass = `fdn-paragraph-insertion-block`; const styleElementHook = `fdn-paragraph-insertion-styles`; jQuery(element).addClass(insertionBlockClass); if (jQuery(`[${styleElementHook}]`).length === 0) { jQuery('div.fdn-content-body, div #storyBody').append('

') const paragraphLineHeight = jQuery('[line-height-check]').get(0).clientHeight; jQuery('[line-height-check]').remove() const styleElement = jQuery(`

`); const styleText = ` div.fdn-content-body br+.${insertionBlockClass}:not([hidden]), div #storyBody br+.${insertionBlockClass}:not([hidden]) { margin-top: ${paragraphLineHeight*2}px; margin-bottom: ${paragraphLineHeight}px; } div.fdn-content-body br+.${insertionBlockClass}[hidden] > div:last-of-type, div #storyBody br+.${insertionBlockClass}[hidden] > div:last-of-type { margin-bottom: ${paragraphLineHeight*2}px; } ` styleElement.text(styleText); jQuery('head').append(styleElement); } // } } jQuery(element).insertBefore(this.paragraphEndNodes[index]); } else { console.warn('Foundation.ParagraphTool.insertElemenAt: invalid insertion index', index); } } this.insertElemenAtEnd = function (element) { if (this.paragraphEndNodes.length) { let lastNode = this.getNodeAtIndex(this.paragraphEndNodes.length -1); if (this.isDoubleBrParagraphBreak(lastNode) || this.isBrParagraphBreakBeforeBlockElement(lastNode)) { if (jQuery(element).get(0).tagName.match(/SCRIPT/i) !== null) { jQuery('
').insertAfter(this.paragraphEndNodes[index]); jQuery('
').insertAfter(this.paragraphEndNodes[index]); } else { jQuery('div.fdn-content-body, div #storyBody').append('

') let lineHeight = jQuery('[line-height-check]').get(0).clientHeight; jQuery('[line-height-check]').remove() if (jQuery(element).prop('tagName').match(/HIDDEN/i) !== null) { jQuery(element).children('div').last().css({ marginBottom: `${lineHeight*2}px` }); } else { jQuery(element).css({ marginTop: `${lineHeight*2}px`, marginBottom: `${lineHeight}px` }); } } } } this.bodyContainer.append(element); } this.getNodeAtIndex = function (index) { return this.paragraphEndNodes[index]; } }

`); } var paragraphCount = myParagraphTool.getParagraphEndNodeCount(); // No need to insert if there aren't enough paragaphs if (paragraphCount >= parseInt(item.requiredCountToDisplay)) { // Matches specific paragraph insertion indexes if (item.insertPoint.match(/^\d+$/) !== null) { var insertIndex = parseInt(item.insertPoint) - 1; // Insert within content if (insertIndex < paragraphCount) { myParagraphTool.insertElemenAtIndex(componentElement, insertIndex); } // Append to the end if the insert point is beyond the paragraph count else { myParagraphTool.insertElemenAtEnd(componentElement) } } // Matches for 1/2, 1/4, 2/3, 5/6, etc else if (item.insertPoint.match(/^[1223456]\/[23456]$/) !== null) { var fractionMatch = new RegExp(/^([123456])(?:\/)([23456]$)/); var fractionPart = parseInt(item.insertPoint.match(fractionMatch)[1]); var fractionWhole = parseInt(item.insertPoint.match(fractionMatch)[2]); var fractionValue = fractionPart / fractionWhole; var fractionIndex = Math.floor(myParagraphTool.paragraphEndNodes.length * fractionValue) - 1; myParagraphTool.insertElemenAtIndex(componentElement, fractionIndex); } // Matches for every Nth insertion point else if (item.insertPoint.match(/^\d*th$/i) !== null) { var intervalIndex = parseInt(item.insertPoint.match(/^(\d*)th$/i)[1]); var startingIndex = parseInt(item.startingPoint) - 1; var insertionMax = parseInt(item.maxInsertions) || 100; var insertionCount = 0; for (var i = startingIndex; i < myParagraphTool.paragraphEndNodes.length && insertionCount < insertionMax; i++) { if ((i - startingIndex) % intervalIndex === 0) { let currentNode = myParagraphTool.getNodeAtIndex(i); const clonedComponent = componentElement.clone(); myParagraphTool.insertElemenAtIndex(clonedComponent, i); insertionCount++; } } } } }); Foundation.Content['42095866'].setupInlineComponents = function () { return true; }; if (typeof callback === 'function') { callback(); } }, 200); } Foundation.Content['42095866'].previewInsertionPoints = function () { var myParagraphTool = Foundation.Content['42095866'].paragraphTool myParagraphTool.paragraphEndNodes.each((index, item) => { const insertionPointPlaceholder = jQuery(`

`) myParagraphTool.insertElemenAtIndex(insertionPointPlaceholder, index); }); return 'Paragraph insertion placeholders applied.'; }

'Severe Thunderstorms' Are Coming for St. Louis and Maybe Tornadoes Too (2024)
Top Articles
Latest Posts
Article information

Author: Rev. Porsche Oberbrunner

Last Updated:

Views: 6632

Rating: 4.2 / 5 (53 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Rev. Porsche Oberbrunner

Birthday: 1994-06-25

Address: Suite 153 582 Lubowitz Walks, Port Alfredoborough, IN 72879-2838

Phone: +128413562823324

Job: IT Strategist

Hobby: Video gaming, Basketball, Web surfing, Book restoration, Jogging, Shooting, Fishing

Introduction: My name is Rev. Porsche Oberbrunner, I am a zany, graceful, talented, witty, determined, shiny, enchanting person who loves writing and wants to share my knowledge and understanding with you.