Connect with us

Louisiana

Louisiana State Police investigating deadly crash after driver allegedly evades police

Published

on

Louisiana State Police investigating deadly crash after driver allegedly evades police


Louisiana State Police investigating deadly crash after driver allegedly evades police

Advertisement

ma’am. I Yeah. Yeah. I ma. Yeah. Yeah. ma’am. Yeah. Um.

Advertisement

Louisiana State Police investigating deadly crash after driver allegedly evades police

Updated: 9:30 PM CDT Apr 6, 2026

Editorial Standards

Advertisement

Louisiana State Police are investigating a crash after a driver allegedly evaded police on Canal Boulevard. Police say the crash happened around 5 p.m. on Canal Boulevard at City Park Avenue. The crash happened after the rider of the dirt bike struck another car while evading New Orleans police and Louisiana State Police, who were attempting to conduct a traffic stop. The subject was taken to a local hospital, where he later died. The name or age of the dirt bike rider was provided. This is an ongoing investigation. Anyone with information and/or pictures and videos is urged to share that information with LSP Detectives. You may anonymously report information through the Louisiana State Police online reporting system by visiting lsp.org and clicking on Report Suspicious or Criminal Activity, or by calling the LSP Fusion Center Hotline at 1-800-434-8007.

Louisiana State Police are investigating a crash after a driver allegedly evaded police on Canal Boulevard.

Advertisement

Police say the crash happened around 5 p.m. on Canal Boulevard at City Park Avenue.

The crash happened after the rider of the dirt bike struck another car while evading New Orleans police and Louisiana State Police, who were attempting to conduct a traffic stop.

The subject was taken to a local hospital, where he later died.

Advertisement

The name or age of the dirt bike rider was provided.

This is an ongoing investigation.

Anyone with information and/or pictures and videos is urged to share that information with LSP Detectives. You may anonymously report information through the Louisiana State Police online reporting system by visiting lsp.org and clicking on Report Suspicious or Criminal Activity, or by calling the LSP Fusion Center Hotline at 1-800-434-8007.

Advertisement

`;
}

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();
}
}

Advertisement

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’);
}
}

Advertisement

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’);
});
}
}

Advertisement

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’, “https://www.wdsu.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.wdsu.com/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’);
}

Advertisement

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);
}
}

Advertisement

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 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

`;
}

Advertisement

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’);
});

Advertisement

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;

Advertisement

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’, “https://www.wdsu.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.wdsu.com/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 || ”;

Advertisement

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);
}

Advertisement

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 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

Advertisement

Loading more articles…



Source link

Louisiana

Acadian Ambulance honors Southwest Louisiana Paramedic, EMT of the Year

Published

on

Acadian Ambulance honors Southwest Louisiana Paramedic, EMT of the Year



Chris Rogers and Megan Wiley are among 33 finalists selected across a four-state service area

play

  • Acadian Ambulance named paramedic Chris Rogers and EMT Megan Wiley as its Southwest Louisiana finalists for top honors.
  • Rogers and Wiley are among 33 finalists selected from across the company’s four-state service area.
  • Rogers is recognized for his 10 years of service, advanced skills, and leadership within the company.

Acadian Ambulance has named paramedic Chris Rogers and EMT Megan Wiley as its Southwest Louisiana finalists for Medic and EMT of the Year. 

The company selects 33 finalists annually from across its four-state service area based on peer nominations for patient care, work ethics and professionalism, according to a news release. Winners will be announced May 19 in Lafayette, according to Acadian Companies. 

Paramedic Rogers and EMT Wiley represent the company’s Southwest Louisiana service area. 

Acadian Ambulance has operated in Southwest Louisiana since 1973, when it began serving Jeff Davis and Acadia parishes, the release said. The company has nearly 200 employees in the region, which encompasses Calcasieu, Jeff Davis and Acadia parishes. 

Chris Rogers, Paramedic 

Rogers, based in Calcasieu Parish, has served with Acadian Ambulance for 10 years and is also an Associate Quality Improvement Coordinator (AQIC) for the Southwest Louisiana region. 

Advertisement

A graduate of Acadian’s National EMS Academy, Rogers is recognized for his work ethic, advanced paramedic skills, and the respect he commands among his peers for his positive attitude and strong leadership.  

He leads by example, encouraging his teammates to uphold the highest standards of patient care. His upbeat demeanor and energy make every shift more productive and collaborative, the release said. 

In his role as AQIC, Rogers helps ensure that Southwest Louisiana team members deliver patient care and prepare new hires for success in emergency medical services. A natural problem solver, he is dependable, professional, and a pleasure to work alongside, Acadian Companies said.  

Advertisement

Every patient interaction reflects his commitment to excellence and the highest standards of Acadian Ambulance. 

Megan Wiley, EMT 

Wiley, also based in Calcasieu Parish, began her career with Acadian Ambulance in March 2025. She is known as a patient care provider, anticipating the needs of her paramedic partners and ensuring a smooth, high-quality ride for patients to the hospital. Her professionalism, skill and dedication make every call safer and more efficient. 

She is currently enrolled in the paramedic program at the National EMS Academy, and she serves as an adjunct EMT course instructor at the Academy’s Lake Charles campus, helping train the next generation of EMTs. She has made an impact as an EMT, instructor and student and she is a valued member of the Southwest Louisiana team. 

Aaron Gonsoulin is the General Assignment/Trending Reporter for The Daily Advertiser. Contact him at AGonsoulin@theadvertiser.com. 

Advertisement



Source link

Continue Reading

Louisiana

LIV Golf may postpone Louisiana event scheduled for the end of June to avoid World Cup clash

Published

on

LIV Golf may postpone Louisiana event scheduled for the end of June to avoid World Cup clash


LIV Golf may postpone its ‌Louisiana event scheduled for June due to concerns the FIFA World ‌Cup could impact attendance and viewership.

Issues ​such as high temperatures and course conditions are also factors in the decision.

The Saudi-funded ‌circuit has been working in coordination with Louisiana Governor Jeff ​Landry’s office and economic officials to find a new date for the tournament in ​either September or October, the ⁠sources with knowledge of ⁠LIV Golf operations said.

The tournament is currently scheduled for June ‌25-28 at Bayou Oaks at City Park.

Advertisement

The World Cup takes place in the US, Canada and Mexico from June 11 to July 19.

Please use Chrome browser for a more accessible video player

Advertisement

LIV Golf chief executive Scott O’Neil says the 2026 season will continue ‘uninterrupted’ amid suggestions that Saudi Arabia could cut its financial backing for the breakaway competition

LIV Golf, Landry and the Louisiana Economic Development are expected to issue a statement ⁠on the matter on Tuesday.

The sources’ comments ​come less than two weeks after ​LIV Golf CEO Scott O’Neil said the ⁠breakaway circuit’s 2026 season would proceed as planned amid reports that the series is ⁠at risk of losing ​its funding.

The Louisiana event is the only ​LIV tournament on the schedule during the World Cup.

LIV Golf Virginia at Trump National Golf Club is scheduled to begin May 7 in Washington, DC.

Advertisement

PGA CEO considering pathways to reinstate LIV Golfers

Brian Rolapp says the PGA Tour is considering opening up more pathways to acquire LIV Golf players in the future
Image:
Brian Rolapp says the PGA Tour is considering opening up more pathways to acquire LIV Golf players in the future

PGA Tour CEO Brian Rolapp says the American circuit is thinking about establishing new pathways to reinstate LIV Golf players, amid speculation over the breakaway league’s future.

Rumours have swirled in the past weeks that LIV Golf could lose its financial backing from Saudi Arabia’s Public Investment Fund (PIF), after the breakaway league was not mentioned in its four-year investment strategy.

McGinley: It’s not going to be plain sailing for the LIV guys

Please use Chrome browser for a more accessible video player

Paul McGinley discusses LIV’s future, what it means for the players and why the concept hasn’t resonated

Sky Sports Golf analyst Paul McGinley believes LIV players interested in returning to the PGA Tour or the DP World Tour could face multiple “roadblocks” on their way to regaining membership, adding that the landscape on both circuits has vastly changed since LIV’s inception.

Advertisement

“Over the last four years since LIV has been going, all of the spots these 56 players have had on the DP World Tour or the PGA Tour have been filled,” McGinley said during Sky Sports Golf’s coverage of the final round of The RBC Heritage.

“You can’t just muscle your way back into what is going to be smaller fields than the bigger fields that they left.

“It’s not going to be an easy way back in, should they be allowed to do so.

“Also, there are a lot of roadblocks in the way. There would be suspensions, there would be fines, all the kinds of things that have been talked about in the last few years would have to remain in place in order to be equitable and fair to the guys who remained with the main tours over the last four years.

“There’s a lot of negotiation to be done between the main tours and the LIV players, if LIV is going to fold, in terms of what the future may be.

Advertisement

“It’s not going to be plain sailing for the LIV guys.”

Watch the PGA Tour, DP World Tour, LPGA Tour, majors and more live on Sky Sports, with the PGA Championship (May 14-17), US Open (June 18-21) and The Open (July 16-19) all exclusively live on Sky Sports Golf. Get Sky Sports or stream with no contract.

Golf Now logo.

Get the best prices and book a round at one of 1,700 courses across the UK & Ireland



Source link

Advertisement
Continue Reading

Louisiana

Faimon Roberts: In Baton Rouge tragedy, Sid Edwards led while Jeff Landry lectured

Published

on

Faimon Roberts: In Baton Rouge tragedy, Sid Edwards led while Jeff Landry lectured


Sid Edwards’ year-plus in politics hasn’t always been smooth. But when confronted with the horrible tragedy in the Mall of Louisiana, he sounded like a leader, columnist Faimon Roberts argues. Gov. Jeff Landry, on the other hand, sounded like a politician.



Source link

Continue Reading
Advertisement

Trending