National Hurricane Center tags Invest 92-L in the Atlantic Ocean
National Hurricane Center tags Invest 92-L in the Atlantic
FORECAST LOOKING AHEAD TO TONIGHT AND TOMORROW TO THE TROPICS. WE GO A LITTLE AREA THAT MAY SNEAKILY DO SOME WIND GUSTS AND SOME ROUGH, ROUGH SURF OFF THE COAST OF THE OUTER BANKS HURRICANE CENTER. NOT MONITORING THAT FOR DEVELOPMENT, BUT JUST SOMETHING WORTH NOTING ELSEWHERE. THE ONE AREA THE HURRICANE CENTER IS WATCHING IS THIS BUBBLE UP OUT IN THE OPEN ATLANTIC. THIS MORNING’S SHORT TERM DEVELOPMENT CHANCE ROSE TO A MEDIUM 40% LIKELIHOOD, BUT A HIGH 80% LIKELIHOOD OVER THE NEXT SEVEN DAYS TIME. AND IT’S LOOKING BETTER ORGANIZED, FOR SURE. BUT AS IT WORKS INTO A MORE KIND OF MOIST AIR MASS, LESS DRY AIR, IT SHOULD START TO FORM. I THINK PROBABLY TOMORROW. SO WE’LL WATCH MODELS KEEP IT AWAY FROM THE UNITED STATES.
Advertisement
National Hurricane Center tags Invest 92-L in the Atlantic
Updated: 10:56 AM EDT Sep 15, 2025
>> Video above: Previous forecast on the tropicsThe National Hurricane Center tagged Invest 92-L in the Atlantic Ocean on Monday.The tropical wave, newly designated as Invest 92-L, is located near the Cabo Verde Islands and is producing disorganized showers and thunderstorms.Dry and stable air will likely limit this system’s development over the next few days, but a tropical depression could form by the middle to latter part of this week. The system is expected to move west-northwestward at 10 to 15 mph over the central tropical Atlantic, the NHC said.Related: Tracking Invest 92-L: Maps, path, spaghetti modelsFormation chance through the next 48 hours: 40%Formation chance through the next 7 days: 80%At this time, the development is not expected to affect the U.S.Hurricane season 2025The Atlantic hurricane season runs from June 1 through Nov. 30. Stay with WESH 2 online and on-air for the most accurate Central Florida weather forecast.>> More: 2025 Hurricane Survival GuideThe First Warning Weather team includes First Warning Chief Meteorologist Tony Mainolfi, Eric Burris, Kellianne Klass, Marquise Meda and Cam Tran.>> 2025 hurricane season | WESH long-range forecast>> Download Very Local | Stream Central Florida news and weather from WESH 2
>> Video above: Previous forecast on the tropics
The National Hurricane Center tagged Invest 92-L in the Atlantic Ocean on Monday.
`;
}
function initializeWeatherBox(container) {
function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
});
clickedElement.classList.add(‘open’);
container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
});
var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
}
}
function loadWeatherData() {
var location = { zip: window.DEFAULT_ZIPCODE };
try {
var storedLocation = localStorage.getItem(‘htv.zip.last’);
if (storedLocation) {
location = JSON.parse(storedLocation);
}
} catch (e) {}
var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;
if (window.fetch) {
fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
});
}
}
function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (weatherWatchHeader && weatherData.alerts_count > 0) {
weatherWatchHeader.className = ‘weather-watch-header has-alerts’;
var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
weatherWatchLink.href = ‘/alerts’;
}
}
}
function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) tempEl.textContent = weatherData.current.temp_f || ”;
var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className = ‘weather-grid–current-icon weather-current-icon icon icon-weather-‘ + weatherData.current.icon_name;
}
var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) skyEl.textContent = weatherData.current.sky || ”;
var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) feelsEl.textContent = (weatherData.current.feels_like_f || weatherData.current.temp_f || ”) + ‘°F’;
}
}
function updateForecastTabs(weatherData) {
if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html = ”;
var maxHours = Math.min(5, weatherData.hourly.length);
for (var i = 0; i < maxHours; i++) {
var hour = weatherData.hourly[i];
html += generateForecastItem({
timeLabel: hour.hour_display,
iconName: hour.icon_name,
primaryTemp: hour.temp_f,
secondaryInfo: hour.precip_chance + ‘%’
});
}
hourlyContainer.innerHTML = html;
}
}
if (weatherData.daily) {
var dailyContainer = container.querySelector(‘.weather-daily-forecast’);
if (dailyContainer) {
var html = ”;
var maxDays = Math.min(5, weatherData.daily.length);
for (var i = 0; i < maxDays; i++) {
var day = weatherData.daily[i];
var dayName = getShortDayName(day.day);
html += generateForecastItem({
timeLabel: dayName,
iconName: day.icon_name,
primaryTemp: day.high_f,
secondaryInfo: day.low_f + ‘°’
});
}
dailyContainer.innerHTML = html;
}
}
}
function getShortDayName(dayName) {
switch (dayName) {
case ‘Today’:
return ‘Today’;
case ‘Tomorrow’:
return ‘Tmrw’;
case ‘Sunday’:
return ‘Sun’;
case ‘Monday’:
return ‘Mon’;
case ‘Tuesday’:
return ‘Tue’;
case ‘Wednesday’:
return ‘Wed’;
case ‘Thursday’:
return ‘Thu’;
case ‘Friday’:
return ‘Fri’;
case ‘Saturday’:
return ‘Sat’;
default:
return dayName;
}
}
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.onclick = function() {
switchWeatherTab(this.getAttribute(‘data-tab-id’), this);
return false;
};
});
loadWeatherData();
}
document.querySelectorAll(‘.weather-sidebar’).forEach(function(weatherBox) {
initializeWeatherBox(weatherBox);
});
document.addEventListener(‘fullscreenchange’, function() {
var fullscreenElement = document.fullscreenElement;
if (!fullscreenElement) {
document.querySelector(‘.weather-box-container’).querySelectorAll(‘.fa-times’).forEach(function(icon) {
icon.classList.remove(‘fa-times’);
icon.classList.add(‘fa-expand’);
});
}
});
});
Advertisement
The tropical wave, newly designated as Invest 92-L, is located near the Cabo Verde Islands and is producing disorganized showers and thunderstorms.
This content is imported from Twitter.
You may be able to find the same content in another format, or you may be able to find more information, at their web site.
Dry and stable air will likely limit this system’s development over the next few days, but a tropical depression could form by the middle to latter part of this week.
The system is expected to move west-northwestward at 10 to 15 mph over the central tropical Atlantic, the NHC said.
Related: Tracking Invest 92-L: Maps, path, spaghetti models
Formation chance through the next 48 hours: 40%
Formation chance through the next 7 days: 80%
At this time, the development is not expected to affect the U.S.
Hurricane season 2025
The Atlantic hurricane season runs from June 1 through Nov. 30. Stay with WESH 2 online and on-air for the most accurate Central Florida weather forecast.
>> More: 2025 Hurricane Survival Guide
The First Warning Weather team includes First Warning Chief Meteorologist Tony Mainolfi, Eric Burris, Kellianne Klass, Marquise Meda and Cam Tran.
>> 2025 hurricane season | WESH long-range forecast
>> Download Very Local | Stream Central Florida news and weather from WESH 2