Tracking Invest 92-L: Computer models and maps
IF YOU CHECK OUTSIDE, WE’VE GOT DRIER AIR AROUND. IT’S NOT SO DRY THAT WE DON’T HAVE A CHANCE FOR RAIN. I WAS GOING TO SHOW YOU THIS. I DON’T KNOW IF YOU CAN SEE IT OR NOT, BUT IT’S SUNNY IN THIS CAMERA SHOT. BUT ALSO IT’S RAINING. LET ME SEE IF I CAN FIND SOME RAIN. I COULD SEE THEM CLEARLY A MINUTE AGO. IT’S HARDER TO SEE NOW WHEN I’M LOOKING AT IT. BUT EARLIER WE WERE GETTING SOME OF THAT LIQUID SUNSHINE. WE HAD REGULAR SUNSHINE, AND THEN WE HAD SOME RAINFALL COMING DOWN AT THE SAME TIME. HERE. WE SEE THAT A LOT HERE IN SOUTH FLORIDA. IF YOU’RE NOT FROM THIS AREA, WE DO HAVE A FRONT THAT IS DRAPED DOWN TO THE SOUTH, TO THE NORTH OF THAT FRONT, PLENTY OF DRY AIR STILL FILTERING DOWN THE FLORIDA PENINSULA TO THE SOUTH OF THAT FRONT, THERE’S MORE MOISTURE AROUND. YOU CAN SEE THE CLOUD COVER DOWN THERE THROUGH THE FLORIDA STRAITS AND OVER TO THE BAHAMAS. THEY’RE MUCH HIGHER CHANCES FOR RAIN TO OUR SOUTH IN OUR AREA, OUR RAIN CHANCES ABOUT 20 TO 30% RIGHT NOW BECAUSE OF THE DRIER AIR ABSORBING A LOT OF THE MOISTURE THAT WOULD BE USED FOR RAINFALL. SO WE’VE GOT SOME RAIN AROUND GOMEZ AND HOBE SOUND, JUPITER ISLAND RIGHT THERE, A LITTLE SHOWER, GOT A LITTLE TINY SHOWER NEAR PALM BEACH GARDENS, ONE DOWN NEAR RIVIERA BEACH, AND A FEW MORE AROUND PBIA AND STRETCHING DOWN. THIS IS SOME HEAVIER RAINFALL. THE RED AND YELLOW AROUND GLEN RIDGE AND PALM SPRINGS DOWN TOWARD LAKE WORTH, AND A NEW SHOWER POPPING UP THERE NEAR BOYNTON BEACH. SO ALL IN ALL, WE HAVE KIND OF A SOUTHWESTERLY FLOW, WINDS COMING OUT OF THE SOUTHWEST THAT’S GOING TO SORT OF PUSH RAINFALL OVER TOWARD THE EAST COAST. AND WE DO HAVE A CHANCE FOR ISOLATED SHOWERS AND A FEW THUNDERSTORMS THIS AFTERNOON. BUT AGAIN, IT’S A VERY SMALL CHANCE, ABOUT 20 TO 30% AS WE WORK OUR WAY INTO TOMORROW. VERY SIMILAR CONDITIONS, ABOUT A 30% CHANCE FOR SHOWERS AND A FEW THUNDERSTORMS MOVING OVER TOWARD THE EAST COAST. HOWEVER, AS WE GET TO WEDNESDAY, THINGS START TO CHANGE. LOOK AT THESE RAIN CHANCES FOR WEDNESDAY, JUMPING UP TO 50 AND MAYBE EVEN 60%. SO WHY IS THAT? WELL, THE FRONT THAT IS DOWN TO OUR SOUTH BEGINS TO LIFT BACK UP TO THE NORTH INTO SOUTH FLORIDA. SO THE DRIER AIR THAT’S IN PLACE BEGINS TO RETREAT UP TO THE NORTH, AND THAT MOISTURE AND THE LIGHT GREEN SURGES UP INTO SOUTH FLORIDA, GIVING US HIGHER CHANCES FOR RAIN FOR WEDNESDAY, FOR THURSDAY AND FOR FRIDAY, BEFORE SOME DRIER AIR STARTS TO MIX BACK IN FOR THE WEEKEND. 84 DEGREES IN INDIAN RIVER SHORES RIGHT NOW. BLUE CYPRESS LAKE 8585 IN FLORIDA RIDGE 86. OKEECHOBEE 87 PAHOKEE 86 DEGREES IN BOYNTON BEACH 87 IN BOCA, AND ABOUT THE SAME IN WELLINGTON. THESE ARE CLOSE TO OUR AVERAGE TEMPERATURES FOR THIS TIME OF YEAR. OUT IN THE TROPICS. WE ARE IN THE PEAK OF HURRICANE SEASON, AND THANK GOODNESS THERE’S NOT MUCH HAPPENING OUT HERE. WE HAVE 92 EL WAY OUT HERE IN THE ATLANTIC. IT COULD POSSIBLY BECOME GABRIELLE LATER THIS WEEK. COMPUTER MODELS JUST COMING OUT NOW FOR THIS. DO SHOW IT MOVING OVER TO THE NORTHWEST. BUT THEN ALMOST ALL OF THEM HAVE A CURVE OFF TO THE NORTH AWAY FROM LAND. HERE’S A LOOK AT THE SEVEN DAY FORECAST TEMPERATURES RIGHT AROUND 90 TODAY. A LOT OF UPPER 80S 30% CHANCE FOR RAIN TODAY AND TOMORROW 50 TO 60% WEDNESDAY THROUGH FRIDAY. WITH THAT MOISTURE COMING IN AND BACK DOW
Advertisement
WPBF 25 First Warning Weather meteorologists are monitoring Invest 92-L over the Central Tropical Atlantic Ocean. According to the National Hurricane Center, the disturbance will likely become a tropical depression by the middle to latter part of this week. The next name on the list is Gabrielle. The WPBF 2025 Hurricane Season ForecastGet the latest weather updates with the WPBF 25 News app. You can download it here.
WPBF 25 First Warning Weather meteorologists are monitoring Invest 92-L over the Central Tropical Atlantic Ocean.
`;
}
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
According to the National Hurricane Center, the disturbance will likely become a tropical depression by the middle to latter part of this week.
The next name on the list is Gabrielle.
Get the latest weather updates with the WPBF 25 News app. You can download it here.