TNWNEWS
LOCAL & NATIONAL WEATHER
TNW COMMAND READY...
00:00:00
STATE AVG: --°F
[ STATUS ] TNW NEWS: NEIGHBORHOOD ONLINE COMMAND ACTIVE

Connecticut Declares State of Emergency as Tropical Storm

Connecticut Declares State of Emergency as Tropical Storm

August 20, 2024


Connecticut has declared a state of emergency as a powerful tropical storm continues to bring high winds and heavy rainfall to the region. Meanwhile, a 4.4 magnitude earthquake shook the Los Angeles area, with tremors felt as far as San Francisco and Tijuana. Despite the quake’s intensity, no major injuries or damage have been reported.


In other weather news, Ernesto has lost its hurricane status but remains a strong post-tropical cyclone. It is forecasted to affect parts of the U.S. and Canada early this week. After sweeping past Puerto Rico and making landfall in Bermuda, Ernesto caused dangerous beach conditions along the U.S. East Coast over the weekend, tragically claiming two lives in South Carolina due to powerful rip currents. Swells generated by Ernesto continue to impact the Northeast coast of the U.S. and Atlantic Canada, though these conditions are expected to subside soon, according to the National Hurricane Center (NHC).


Additionally, a recent study conducted by Gatti, Keltner, Bienvenu & Montesi, PLC, personal injury attorneys, examined tornado activity from January 2019 to May 2024. The study focused on tornadoes rated EF2 and above, revealing significant data on storms with wind speeds exceeding 111 mph.


Stay tuned for more updates and stay safe.

This Message will be forwarded directly to the Operations Department Director Manager at TNW

Our breaking News center team is always here 24/7. Don't hesitate to send Weather News that is breaking in your local Area.

// Function to update the Time on the Left setInterval(() => { const clock = document.getElementById('live-clock'); clock.innerText = new Date().toLocaleTimeString(); }, 1000); // Function to fetch weather by IP (No Cookies) async function getWeatherByIP() { try { const geo = await fetch('https://ipapi.co/json/').then(res => res.json()); // Using Open-Meteo for clean weather data const weather = await fetch(`https://api.open-meteo.com/v1/forecast?latitude=${geo.latitude}&longitude=${geo.longitude}¤t_weather=true`).then(res => res.json()); document.getElementById('weather-scroll').innerText = `LOCAL WEATHER FOR ${geo.city}: ${weather.current_weather.temperature}°C | FLIP STATUS: CLEAR | WINDS: ${weather.current_weather.windspeed}km/h | PUBLIC RACING DATA STREAM ACTIVE`; } catch (err) { document.getElementById('weather-scroll').innerText = "DATA FEED ERROR: RE-ROUTING THROUGH NORTH AURORA BACKUP..."; } } // THE "ALIVE" TRIGGER: Use this to pop up the red banner function setLiveStatus(isLive) { const alertBar = document.getElementById('press-alert'); if (isLive) { alertBar.classList.add('active'); } else { alertBar.classList.remove('active'); } } // Run Infrastructure getWeatherByIP(); // Trigger a test "Live" state after 6 seconds setTimeout(() => setLiveStatus(true), 6000);