BIEGEL TV 11 EDITORIAL WITH PRESIDENT AND GENERAL MANAGER DAN GEROUS, MEMBERS OF OUR HISPANIC AND LATINO AMERICAN COMMUNITIES ARE CELEBRATING HISPANIC HERITAGE MONTH. ORIGINALLY JUST A WEEK LONG CELEBRATION DATING BACK TO THE LATE 60S, FORMER PRESIDENT RONALD REAGAN SIGNED INTO LAW A BILL EXPANDING THE EVENT TO A FULL MONTH. THE DATES COINCIDE WITH THE ANNIVERSARIES OF SEVERAL LATIN AMERICAN COUNTRIES DECLARATION OF INDEPENDENCE FROM SPAIN. ACCORDING TO THE US CENSUS, MORE THAN 68 MILLION PEOPLE LIVING IN AMERICA IDENTIFY AS HISPANIC, MAKING THE GROUP THE COUNTRY’S FASTEST GROWING RACIAL OR ETHNIC MINORITY. THE POPULATION IS GROWING HERE IN BALTIMORE AS WELL, CENSUS FIGURES SHOW THAT THE CITY’S HISPANIC POPULATION GREW BY NEARLY 5% LAST YEAR. THE CITY IS ALSO HOME TO ONE OF THE COUNTRY’S LARGEST LATIN AMERICAN FESTIVALS. THE ANNUAL FIESTA BALTIMORE TAKES PLACE ON THE WEEKEND OF OCTOBER 4TH AND FIFTH. IT FEATURES LIVE MUSIC, DANCING, ART, FOOD AND MORE. YOU CAN FIND A COMPLETE LIST OF THE CELEBRATIONS TAKING PLACE ON THE WBAL APP. JOIN WBAL-TV 98 ROCK AND WBAL NEWSRADIO IN CELEBRATING HISPANIC HERITAGE MONTH AND THE COMMUNITY’S VIBRANT HISTORY AND CULTURE. THIS HAS BEE Editorial Standards ⓘ Editorial Standards ⓘ Beginning this Sept. 22 and continuing through Oct. 15, members of our Hispanic and Latin American communities are celebrating Hispanic Heritage Month.Originally just a weeklong celebration dating back to the late 1960s, former President Ronald Reagan signed into law an expansion of the event to a full month. The dates coincide with anniversaries of several Latin American countries' declarations of independence from Spain.According to the U.S. census, more than 68 million people living in America identify as Hispanic, making the group the country's fastest growing racial or ethnic minority. The population is growing here in Baltimore as well. Census figures show that the city's Hispanic population grew by nearly 5% last year.The city is also home to one of the country's largest Latin American festivals. The annual Fiesta Baltimore takes place the weekend of Oct. 4-5, featuring live music, dancing, art, food and more.Celebrate Hispanic Heritage Month with events across MarylandJoin WBAL-TV, 98 Rock and WBAL NewsRadio 1090 AM and 101.5 FM in celebrating Hispanic Heritage Month and the community's vibrant history and culture. BALTIMORE —

Beginning this Sept. 22 and continuing through Oct. 15, members of our Hispanic and Latin American communities are celebrating Hispanic Heritage Month.

Originally just a weeklong celebration dating back to the late 1960s, former President Ronald Reagan signed into law an expansion of the event to a full month. The dates coincide with anniversaries of several Latin American countries' declarations of independence from Spain.

According to the U.S. census, more than 68 million people living in America identify as Hispanic, making the group the country's fastest growing racial or ethnic minority. The population is growing here in Baltimore as well. Census figures show that the city's Hispanic population grew by nearly 5% last year.

The city is also home to one of the country's largest Latin American festivals. The annual Fiesta Baltimore takes place the weekend of Oct. 4-5, featuring live music, dancing, art, food and more.

Join WBAL-TV, 98 Rock and WBAL NewsRadio 1090 AM and 101.5 FM in celebrating Hispanic Heritage Month and the community's vibrant history and culture.

Weather Information

° F FEELS LIKE No weather data available ${data.primaryTemp}° ${data.secondaryInfo} `; } function refreshWeatherIframe(containerId) { var iframeId = 'weather-iframe-' + containerId; var iframe = document.getElementById(iframeId); if (iframe && iframe.src) { var originalSrc = iframe.src; iframe.src = originalSrc + (originalSrc.indexOf('?') > -1 ? '&' : '?') + 't=' + Date.now(); } } function initializeWeatherBox(container) { var containerId = container.getAttribute('data-container-id'); var isWeatherBoxV2 = containerId === 'home-weather-v2'; function switchWeatherTab(tabName, clickedElement) { container.querySelectorAll('[data-tab-id]').forEach(function(tab) { tab.classList.remove('open'); tab.setAttribute('aria-selected', 'false'); }); clickedElement.classList.add('open'); clickedElement.setAttribute('aria-selected', 'true'); container.querySelectorAll('[data-content-id]').forEach(function(content) { content.style.display = 'none'; content.setAttribute('hidden', 'true'); }); var targetContent = container.querySelector('[data-content-id="' + tabName + '"]'); if (targetContent) { targetContent.style.display = 'block'; targetContent.removeAttribute('hidden'); } } function loadWeatherData() { // If weather data is already being loaded, wait for it if (window.weatherDataPromise) { window.weatherDataPromise.then(function(data) { if (data && data.data) { var weatherContainer = container.closest('.weather-box-container'); if (weatherContainer) { weatherContainer.style.display = 'flex'; updateCurrentWeather(data.data); updateForecastTabs(data.data); updateWeatherAlertsBar(data.data); } } }); return; } var location = { zip: window.DEFAULT_ZIPCODE }; try { var storedLocations = localStorage.getItem('hrst.zip.history'); if (storedLocations) { var locations = JSON.parse(storedLocations); if (locations && locations.length > 0) { location = locations[0]; } } } catch (e) {} var apiUrl = (window.DEWY_HOSTNAME || '') + '/api/v1/weather/full/' + location.zip; if (window.fetch) { window.weatherDataPromise = 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); } return data; } }) .catch(function(error) { console.error('Error loading weather:', error); // Reset to unknown background on error updateWeatherBackground('unknown'); }); } } function updateWeatherAlertsBar(weatherData) { var weatherWatchHeader = container.querySelector('.weather-watch-header'); if (!weatherWatchHeader) return; var weatherWatchText = weatherWatchHeader.querySelector('.weather-watch-text'); var weatherWatchLink = weatherWatchHeader.querySelector('.weather-watch-link'); if (weatherData.alerts_count > 0) { weatherWatchHeader.className = 'weather-watch-header has-alerts'; if (weatherWatchText) { weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`; } if (weatherWatchLink) { if (!weatherWatchLink.getAttribute('data-initial-href')) { weatherWatchLink.setAttribute('data-initial-href', weatherWatchLink.getAttribute('href')); weatherWatchLink.setAttribute('data-initial-onclick', weatherWatchLink.getAttribute('onclick') || ''); } weatherWatchLink.setAttribute('href', '/alerts'); weatherWatchLink.setAttribute('onclick', "return handleWeatherLinkClick(event, 'click_alerts', 'click', 'mobile-weather', '/alerts');"); } } else { weatherWatchHeader.className = 'weather-watch-header'; if (weatherWatchText) { weatherWatchText.textContent = containerId === 'home-weather-v2' ? 'Watch Latest Forecast' : 'Latest Forecast'; } if (weatherWatchLink) { var initialHref = weatherWatchLink.getAttribute('data-initial-href'); var initialOnclick = weatherWatchLink.getAttribute('data-initial-onclick'); if (initialHref) { weatherWatchLink.setAttribute('href', initialHref); } if (initialOnclick) { weatherWatchLink.setAttribute('onclick', initialOnclick); } } } } function updateCurrentWeather(weatherData) { if (weatherData.current) { var tempValue = weatherData.current.temp_f || ''; var skyValue = weatherData.current.sky || ''; var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ''; var tempEl = container.querySelector('.weather-grid--current-temp-value'); if (tempEl) { tempEl.textContent = tempValue; tempEl.setAttribute('aria-label', tempValue + ' degrees Fahrenheit'); } 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 = skyValue; skyEl.setAttribute('aria-label', 'Current condition: ' + skyValue); } var feelsEl = container.querySelector('.weather-grid--feels'); if (feelsEl) { feelsEl.textContent = feelsLikeValue + '°F'; feelsEl.setAttribute('aria-label', feelsLikeValue + ' degrees Fahrenheit'); } var weatherContainer = container.querySelector('.weather-temp-container'); if (weatherContainer) { var summary = 'Current temperature ' + tempValue + ' degrees Fahrenheit, ' + skyValue + ', feels like ' + feelsLikeValue + ' degrees'; weatherContainer.setAttribute('aria-label', summary); } updateWeatherBackground(weatherData.current.icon_name); } } function updateWeatherBackground(iconName) { try { var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown; container.style.backgroundImage = 'url(' + bgPath + ')'; } catch (e) { console.log('Error updating weather background:', e); } } function updateForecastTabs(weatherData) { var visibleItems = isWeatherBoxV2 ? 6 : 5; if (weatherData.hourly) { var hourlyContainer = container.querySelector('.weather-hourly-forecast'); if (hourlyContainer) { var html = ''; var maxHours = Math.min(visibleItems, 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(visibleItems, 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.precip_chance + '%' }); } 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) { var isActive = tab.classList.contains('open'); tab.setAttribute('tabindex', '0'); // Both tabs focusable for VoiceOver tab.setAttribute('role', 'tab'); tab.setAttribute('aria-selected', isActive); tab.addEventListener('keydown', function(e) { var tabs = Array.from(container.querySelectorAll('[data-tab-id]')); var currentIndex = tabs.indexOf(this); switch(e.key) { case 'ArrowLeft': e.preventDefault(); var prevIndex = currentIndex > 0 ? currentIndex - 1 : tabs.length - 1; tabs[prevIndex].focus(); break; case 'ArrowRight': e.preventDefault(); var nextIndex = currentIndex < tabs.length - 1 ? currentIndex + 1 : 0; tabs[nextIndex].focus(); break; case 'Enter': case ' ': e.preventDefault(); var tabId = this.getAttribute('data-tab-id'); switchWeatherTab(tabId, this); if (tabId === 'hourly') { dispatchWeatherGA4Event('click_hourly', 'click', containerId); } else if (tabId === 'daily') { dispatchWeatherGA4Event('click_daily', 'click', containerId); } break; } }); tab.onclick = function() { var tabId = this.getAttribute('data-tab-id'); switchWeatherTab(tabId, this); if (tabId === 'hourly') { dispatchWeatherGA4Event('click_hourly', 'click', containerId); } else if (tabId === 'daily') { dispatchWeatherGA4Event('click_daily', 'click', containerId); } return false; }; }); loadWeatherData(); window.addEventListener('pageshow', function(event) { if (event.persisted) { // Fix for weather radar iframe appearing gray after browser back/forward navigation // When user navigates back, the page loads from browser cache but the iframe // content doesn't restore properly, showing a gray screen instead of the radar map // This forces a fresh reload of the iframe by adding a timestamp parameter setTimeout(function() { refreshWeatherIframe(containerId); }, 300); } }); } 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'); }); } }); });Visite WBAL-TV para ler a matéria completa.
O Cidades do meu Brasil é apenas um agregador de notícias e não tem responsabilidade pelos textos publicados. O conteúdo de cada artigo é de responsabilidade exclusiva de seus respectivos autores e veículos de comunicação.

Últimas Buscas

Como fazer

Informações úteis para o seu dia a dia.

Datas Comemorativas de Hoje

Dia da Ressaca

Dia 28 de fevereiro  é comemorado o Dia da Ressaca. A ressaca é o mal estar geral que surge no d...

Saiba Mais
Versículo do Dia:
O Senhor é justo em todos os seus caminhos e fiel em tudo o que faz.
(Salmos 145:17)
Bíblia Online