Connect with us

Missouri

Missouri judge strikes ballot summary for Trump-backed congressional redistricting plan

Published

on

Missouri judge strikes ballot summary for Trump-backed congressional redistricting plan


JEFFERSON CITY, Mo. (AP) — If Missouri voters get to decide whether to adopt new U.S. House districts backed by President Donald Trump, the ballot proposal presented to them won’t say a word about gerrymandering.

A state judge on Friday ordered a new, toned-down description of the redistricting plan after Missouri’s Republican secretary of state acknowledged that he had crafted an unfair summary likely to create bias for the new districts by describing the old ones as “gerrymandered.”

The ruling marked at least a partial victory for opponents of the new map, who previously submitted more than 300,000 petition signatures seeking to force a statewide referendum. But it remains to be seen whether the referendum actually will occur this November.

Election officials are still in the process of verifying whether opponents gathered enough valid petition signatures. And the state Supreme Court is considering a separate lawsuit seeking to invalidate the new map based on assertions that mid-decade redistricting isn’t allowed under the state constitution.

Advertisement

Missouri lawmakers approved new congressional districts last September — the second Republican-led state after Texas to respond to Trump’s call to redraw districts to try to give the GOP an advantage in this year’s midterm elections.

That triggered an unusual tit-for-tat redistricting battle that also spread to Republican-led North Carolina and Ohio and Democratic-led California and Virginia. Republican-led Florida is set to join the congressional redistricting debate with a special legislative session in April.

Missouri currently is represented in the U.S. House by six Republicans and two Democrats under a map passed in 2022 after the most recent census. The new map is intended to help Republicans win a Kansas City-area seat currently held by Democratic U.S. Rep. Emanuel Cleaver by reassigning portions to two neighboring districts and stretching the remainder into Republican-heavy rural areas.

Missouri Secretary of State Denny Hoskins, who supports the new districts, has until Aug. 4 — the date of the state’s primary elections — to determine whether the referendum petition met constitutional muster and got enough valid signatures. If so, then the new districts could be suspended until decided by voters.

As originally drafted by Hoskins, the ballot summary for the potential referendum would have asked voters whether to repeal “Missouri’s existing gerrymandered congressional plan that protects incumbent politicians” and replace it with new boundaries “that keep more cities and counties intact, are more compact, and better reflects statewide voting patterns.”

Advertisement

The opposition group People Not Politicians, which backed the petition drive, filed suit alleging Hoskins’ wording was biased and likely to lead people to vote for the new districts, which opponents contend are the true gerrymander.

Attorneys for Hoskins conceded during court proceedings it was unfair to describe Missouri’s current districts as gerrymandered and protecting incumbents. But Hoskins insisted the remaining description of the new districts was fine.

Cole County Circuit Judge Brian Stumpe struck much of the original wording but agreed with Hoskins that it was accurate to say the new districts are more compact and keep more counties and cities intact. He left those phrases in the new version that he ordered to be used.

Both sides took some satisfaction from the revised wording.

“If the referendum does eventually qualify for the ballot, Missourians will benefit from a fair ballot summary thanks to today’s ruling,” said Stephanie Whitaker, a spokesperson for Attorney General Catherine Hanaway, whose office represented Hoskins.

Advertisement

Chuck Hatfield, an attorney for People Not Politicians, described it as “a solid victory, and important victory.” But he said the group still objects to some of the remaining wording and would consider whether to appeal.



Source link

Missouri

KCPD investigating after 1 man hurt in Saturday shooting

Published

on


KCPD investigating after 1 man hurt in Saturday shooting

Advertisement

ASKED TO CALL THE CRIME STOPPERS TIPS HOTLINE AT 81647 FOUR TIPS. THIS MORNING, POLICE ARE INVESTIGATING A SHOOTING NEAR GLADSTONE BOULEVARD AND THOMPSON AVENUE, JUST SOUTH OF KESSLER PARK IN KANSAS CITY, MISSOURI. POLICE SAY A MAN WAS TAKEN TO THE HOSPITAL WITH SERIOUS INJURIES. NO WORD FROM POLICE O

The Kansas City, Missouri, Police Department confirms detectives are investigating a shooting that sent one man to the hospital Saturday morning. KCPD Sgt. Phil DiMartino said a shooting happened along Gladstone Boulevard, just off Independence Avenue.DiMartino said an adult man was taken to the hospital with serious injuries but is now in stable condition. Detectives are still investigating what led up to the shooting. If you know anything, you’re asked to call the CrimeStoppers Tips Hotline at 816-474-TIPS.

Advertisement

The Kansas City, Missouri, Police Department confirms detectives are investigating a shooting that sent one man to the hospital Saturday morning.

KCPD Sgt. Phil DiMartino said a shooting happened along Gladstone Boulevard, just off Independence Avenue.

DiMartino said an adult man was taken to the hospital with serious injuries but is now in stable condition.

Advertisement

Detectives are still investigating what led up to the shooting.

If you know anything, you’re asked to call the CrimeStoppers Tips Hotline at 816-474-TIPS.

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

Advertisement

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

Advertisement

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;

Advertisement

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

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

Advertisement

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

Advertisement

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

`;
}

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

Loading more articles…

Advertisement



Source link

Continue Reading

Missouri

Gamecocks complete sweep with 6-4 win over Missouri

Published

on

Gamecocks complete sweep with 6-4 win over Missouri


The University of South Carolina baseball team completed a three-game sweep of Missouri with a 6-4 win on Saturday afternoon (April 11) at Taylor Stadium. Dawson Harman had two of Carolina’s four home runs in the contest.Harman’s two-run single brought in Ethan Lizama and KJ Scobey, giving Carolina a 2-0 lead in the top of the second. Harman extended the lead to 3-0 in the top of the fourth with his second home run of the season.Missouri cut the Gamecock lead to 3-2 in the bottom of the fourth on a two-run Jase Woita home run. Carolina answered in the top of the sixth as Scobey and Harman each hit solo home runs to left field, giving the Gamecocks a 5-2 advantage.Carolina ended its scoring on a solo home run from Will Craddock in the top of the ninth. Missouri scored a pair of runs in the ninth but Alex Philpott induced a fly out to right to end the game and complete the sweep.Harman and Scobey had three hits apiece in the 11-hit attack while Lizama and Patrick Evans had two hits apiece.Cooper Parks earned the win on the mound, improving to 3-1 on the year. He did not allow a hit in three innings of relief. Alex Valentin picked up the start. He allowed just one hit on two runs with five strikeouts in four innings. Philpott earned his third save of the season, getting the final out in the ninth.POSTGAME NOTESCarolina picks up its first-ever sweep at Missouri and first road SEC sweep since March 18-19, 2023, at Georgia.The Gamecock pitching staff allowed just five runs in the series.It was Carolina’s first SEC sweep since the Gamecocks swept Vanderbilt on March 23-24, 2024.UP NEXTCarolina opens a nine-game homestand on Tuesday night (April 14) when the Gamecocks host Davidson. First pitch is scheduled for 6:30 p.m. and the game will be streamed on SEC Network Plus.

The University of South Carolina baseball team completed a three-game sweep of Missouri with a 6-4 win on Saturday afternoon (April 11) at Taylor Stadium. Dawson Harman had two of Carolina’s four home runs in the contest.

Harman’s two-run single brought in Ethan Lizama and KJ Scobey, giving Carolina a 2-0 lead in the top of the second. Harman extended the lead to 3-0 in the top of the fourth with his second home run of the season.

Advertisement

Missouri cut the Gamecock lead to 3-2 in the bottom of the fourth on a two-run Jase Woita home run. Carolina answered in the top of the sixth as Scobey and Harman each hit solo home runs to left field, giving the Gamecocks a 5-2 advantage.

Carolina ended its scoring on a solo home run from Will Craddock in the top of the ninth. Missouri scored a pair of runs in the ninth but Alex Philpott induced a fly out to right to end the game and complete the sweep.

Harman and Scobey had three hits apiece in the 11-hit attack while Lizama and Patrick Evans had two hits apiece.

Advertisement

Cooper Parks earned the win on the mound, improving to 3-1 on the year. He did not allow a hit in three innings of relief. Alex Valentin picked up the start. He allowed just one hit on two runs with five strikeouts in four innings. Philpott earned his third save of the season, getting the final out in the ninth.

POSTGAME NOTES

  • Carolina picks up its first-ever sweep at Missouri and first road SEC sweep since March 18-19, 2023, at Georgia.
  • The Gamecock pitching staff allowed just five runs in the series.
  • It was Carolina’s first SEC sweep since the Gamecocks swept Vanderbilt on March 23-24, 2024.

UP NEXT

Carolina opens a nine-game homestand on Tuesday night (April 14) when the Gamecocks host Davidson. First pitch is scheduled for 6:30 p.m. and the game will be streamed on SEC Network Plus.



Source link

Advertisement
Continue Reading

Missouri

Responders rescue injured person after falling down embankment near Missouri River

Published

on

Responders rescue injured person after falling down embankment near Missouri River


First responders rescued an individual that fell and landed near the Missouri River on Friday.

On April 10, shortly after 2:30 p.m., Osage County Emergency Management Agency received a call reporting that a subject had fallen down a steep embankment and landed near the bank of the Missouri River in the Smokey Waters Conservation Area.

Osage Ambulance District said the individual sustained injuries.

Osage Fire Protection District, Osage County Sheriff’s Office, and Missouri Department of Conservation responded to assist.

Advertisement

Crews determined the best access to the patient would be by water due to the remote location.

Emergency crews used what3words technology to help identify the exact location of the individual.

Comment with Bubbles

BE THE FIRST TO COMMENT

Responders were able to safely access, rescue, and transport the individual to Osage EMS for transport to a trauma center.

Advertisement



Source link

Continue Reading

Trending