Connect with us

Iowa

Iowa State women’s basketball team adds transfer guard from Kent State

Published

on

Iowa State women’s basketball team adds transfer guard from Kent State


Iowa State women’s basketball team adds transfer guard from Kent State

Advertisement

ROUND PICK. WE’LL BE PULLING FOR HIM. THE DRAFT STARTS THURSDAY, APRIL 23RD. CYCLE IN. WOMEN LOST NEARLY THEIR ENTIRE ROSTER THURSDAY. THEY GOT ONE BACK. MAYA BABBITT IS COMING OVER FROM KENT STATE. SHE LED THAT TEAM AT 16 POINTS PE

Advertisement

Iowa State women’s basketball team adds transfer guard from Kent State

Updated: 10:40 PM CDT Apr 9, 2026

Editorial Standards

Advertisement

Iowa State got a strong start on its 2026 transfer class Thursday.Kent State guard Mya Babbitt announced her commitment to Iowa State.Babbitt, a 5’8″ guard from Papillion, Nebraska, has been a two-year starter for the Golden Flashes and earned second-team All-MAC honors in 2025-26 after averaging 16.1 points and 4.0 rebounds per game. She also set the Kent State record for 3-pointers in a season as a sophomore, making 83 3-pointers at a 41.5% clip.Babbitt is the first incoming transfer to announce her commitment to Iowa State this offseason. She will have one year of eligibility remaining.The Cyclones are tasked with replacing nearly the entire roster from 2025-26 after nine players entered the transfer portal.Senior-to-be Arianna Jackson has announced her return, as has reserve guard Freya Jensen. Iowa State also brings in highly touted recruit Macy Comito. Comito led Carlisle High School to its first state title this winter.» Subscribe to KCCI’s YouTube page» Download the free KCCI app to get updates on the go: Apple | Google Play

Iowa State got a strong start on its 2026 transfer class Thursday.

Advertisement

Kent State guard Mya Babbitt announced her commitment to Iowa State.

Babbitt, a 5’8″ guard from Papillion, Nebraska, has been a two-year starter for the Golden Flashes and earned second-team All-MAC honors in 2025-26 after averaging 16.1 points and 4.0 rebounds per game. She also set the Kent State record for 3-pointers in a season as a sophomore, making 83 3-pointers at a 41.5% clip.

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.

Advertisement

Babbitt is the first incoming transfer to announce her commitment to Iowa State this offseason. She will have one year of eligibility remaining.

The Cyclones are tasked with replacing nearly the entire roster from 2025-26 after nine players entered the transfer portal.

Senior-to-be Arianna Jackson has announced her return, as has reserve guard Freya Jensen. Iowa State also brings in highly touted recruit Macy Comito. Comito led Carlisle High School to its first state title this winter.

» Subscribe to KCCI’s YouTube page

» Download the free KCCI app to get updates on the go: Apple | Google Play

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

Advertisement

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

Advertisement

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

Advertisement

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

Advertisement

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

Advertisement

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

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

Advertisement

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

Advertisement

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

Advertisement

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

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

Advertisement

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;

Advertisement

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…



Source link

Advertisement

Iowa

“Retracing the Dragoon Trail in Iowa” with Kevin T. Mason

Published

on

“Retracing the Dragoon Trail in Iowa” with Kevin T. Mason


Kevin T. Mason, author of “Retracing the Dragoon Trail in Iowa,” came to the Ames Public Library on Wednesday. Mason went to ISU as a student and now teaches at the University of Northern Iowa. He is a rural and environmental historian of the American Midwest. Mason talked about his book covering the old Dragoon Trail, which runs across Iowa. Many have probably seen the signs all over Iowa marking the Dragoon Trail.

This all started in 1835, when the Dragoons went on an expedition across Iowa to survey the land for future Americans. Dragoons were military foot soldiers who rode horses and explored the land. When the Dragoons first encountered Iowa and explored it, the Iowa they saw was very different from the Iowa we see today.

Copies of Retracing the Dragoon Trail in Iowa by Kevin T. Mason for sale at Iowa History Live Event: Retracing the Dragoon Trail held at the Ames Public Library in Ames, Iowa, June 3, 2026. (August Anderson)

The Dragoons are said to have hated Iowa. It was all marsh, full of mosquitoes, and it became unbearable in the winter. They were also said to have seen the largest herd of buffalo ever, with around 5,000 individuals. Iowa was also chock-full of prairies; however, today we have lost 99.8% of them.

Stephen Watts Kearny, one of the Dragoons, escorted settlers and projected military dominance; he took New Mexico and California in 1846. Albert Miller Lea dealt with the reconnaissance and mapping of the Dragoon Trail and published notes on the Wisconsin territory also. Nathan Boone led Dragoon patrols, stretched survey changes and charted the arterial paths of settlement; he is memorialized in Boone County, which is named after him, and he is honored as the son who set the stage for American settlement. 

Advertisement

“The Dragoons are looking for a place to build a new fort,” Mason said. “They cover 1,000 miles. They’re actually going to leave, and they are going to follow the ridge between the Skunk River and the Des Moines River on their outward journey. Conveniently, we built Highway 163 right on top of it.”

The Dragoons cover in their writings, the prospect of coal, soil profiles and about the people and animals that lived here. They thought Iowa was going to become rich because of its coal, and it was going to be a great commodity. 

Mason walked the entire Dragoon Trail. It was 371 miles long. It took him 21 days to walk up the river. There was some help along the way from his wife, who followed along in her car.

“In each of these chapters, I’m trying to pull a strand from at least the Dragoons all the way forward to 2021 to tell small histories of Iowa in a hyper-connected way, which took six drafts, and I still don’t know that I did it,” Mason said. 

Author Kevin T. Mason speaks at the Iowa History Live Event: Retracing the Dragoon Trail held at the Ames Public Library in Ames, Iowa, June 3, 2026. (August Anderson)

Mason also offered an interesting snippet from his book that told the tale of Boneyard Hollow:

“Just off the river’s west bay, tucked unassumingly along the winding main road of Dolliver Memorial State Park, lies a place with a name alluding to a gristly past. Boneyard Hollow, the shallow sandstone gorge slices through the park’s northern edge, shaded by oaks and maples, often quiet, save for bird song. An ancient buffalo jump, Boneyard Hollow, is only one of Iowa’s rare surviving testament to a way of life long predicting clouds and durian tiles packing miles… Shaggy mountains. Some move, and faster than man. Bison could kill with a horn or hoof. Still, human hunger demanded hunting…” 

Advertisement

Mason says that his book is a mile wide and an inch deep. One student of Mason’s said that it was a “gateway drug into Iowa history.” 

To learn more about Mason’s book, please visit his webpage.



Source link

Advertisement
Continue Reading

Iowa

Here’s what to know as another year brings another watering ban

Published

on

Here’s what to know as another year brings another watering ban


play

Central Iowa residents face a second consecutive summer banned from watering their lawns as Central Iowa Water Works seeks to preserve its capacity to produce sufficient safe drinking water.

CIWW announced the ban Monday, June 8, after Des Moines Water Works, its largest utility, estimated that with temperatures set to surpass 90 degrees Tuesday and high nitrate levels requiring it to provide additional treatment, demand would reach 98% of capacity.

Advertisement

Already, the system’s nitrate removal facility, among the world’s largest, was operating “at full throttle,” Des Moines Water Works CEO Amy Kahler said during a Monday news conference.

Here’s what to know about the ban.

Why is Central Iowa Water Works requiring a ban?

CIWW officials warned in early May that a lawn-watering ban like the one imposed in June 2025 was likely after a winter during which high nitrate levels in central Iowa’s source water — the Raccoon and Des Moines rivers — failed to abate.

Elevated nitrate concentrations in the rivers require “significantly more treatment” to achieve a federal safety standard of no more than 10 milligrams per liter, Tami Madsen, CIWW’s executive director, said at Monday’s news conference. Lawn watering greatly increases demand in warm weather, and “we have reached a point where conservation is necessary to preserve treatment capacity and ensure reliable service to everyone,” Madsen said.

Advertisement

Who does the ban affect?

Customers of Des Moines Water Works are the largest group. Also under the ban are Ankeny, Clive, Johnston, Norwalk, Polk City and Waukee and areas served by Urbandale Water Utility, West Des Moines Water Works, Warren Water and portions of the Xenia Water District.

Grimes, a member of the CIWW, isn’t under the ban because it’s not yet connected to the shared water distribution system.

How high have nitrate levels been?

In addition to the Raccoon and Des Moines rivers, the nitrate levels in the Des Moines Water Works’ infiltration gallery, a system of water naturally filtered through rock and sand, have been unusually high, Kahler said.

The gallery typically is the utility’s best water source. But it has been over the 10-milligrams-per-liter limit for nearly 90 days, which Kahler called a record.

Advertisement

On Tuesday, nitrate levels were 14.98 milligrams per liter in the Raccoon River; 11.75 milligrams in the Des Moines River; and 11.83 milligrams in the infiltration gallery, Des Moines Water Works reported.

Nitrates, even at low levels, have been tied to some cancers and to serious illness in infants. The federal government requires water utilities to alert consumers when nitrate levels rise above the standard. 

What’s causing high nitrate levels in the Raccoon, Des Moines rivers?

Farming contributes about 80% of the nitrates in the Raccoon and Des Moines rivers, according to a Polk County water analysis released last year.

Iowa farmers use commercial nitrogen as well as manure from millions of pigs, chickens, turkeys and other livestock to fertilize the state’s roughly 24 million acres of corn and soybeans. Nitrogen and phosphorus, two nutrients that can befoul Iowa waterways, also naturally occur in Iowa’s rich soil.

Advertisement

Weather plays a major role. Drought, for example, can result in a buildup of nutrients in the soil. When rains return, as they have the past two springs, they can pick up the contaminants and move them to waterways both over land and through the drainage tiles that underlie about 13 million acres of farm fields across Iowa.

What’s being done to cut fertilizer losses?

The state adopted the Iowa Nutrient Reduction Strategy in 2013, setting a goal to cut by 45% the nitrogen and phosphorus that reach Iowa streams and ultimately flow into the Mississippi River, contributing to the dead zone around the river’s mouth in the Gulf of Mexico, renamed the Gulf of America by the U.S. government.

The state and federal governments offer farmers financial and technical assistance to adopt practices like planting cover crops and reducing or eliminating tillage to cut fertilizer losses. They also encourage establishing buffer strips, bioreactors and wetlands that help clean water as it leaves fields.

Advertisement

In May, Gov. Kim Reynolds announced the state will give CIWW a $25 million grant to expand and upgrade its nitrate removal facilities, part of a statewide overhaul of Iowa’s water quality funding. However, the state so far has declined to impose measures to reduce nitrates from agricultural runoff, with Reynolds saying in July 2025 that regulation “is hardly ever the answer.”

Are candidates addressing the issue?

Zach Lahn, the GOP nominee to replace retiring Republican Reynolds in this fall’s gubernatorial election, has said Iowa must “start addressing the problem at the source — not just relying on expensive treatment upgrades after the damage is already done.”

“Upgrading water treatment facilities may help in the short term, but it’s ultimately a Band-Aid approach that passes massive costs onto taxpayers and communities,” Lahn said in a post on Facebook.

Democratic nominee Rob Sand points to improved water quality as part of an effort to address Iowa’s growing cancer rate, and calls for a variety of initiatives including tax breaks for farmers who adopt conservation measures, improved water monitoring and more transparent tracking of farmers’ manure use.

Advertisement

“These proposals aren’t a promise to solve Iowa’s water quality issues and cancer crisis overnight,” Sand says on his campaign website. “There aren’t any realistic ways to do that overnight. But they are a promise to move our state in the right direction and the first steps towards seeing improved water quality and cancer rates in the coming years ― not the coming centuries.”

Iowa Agriculture Secretary Mike Naig, a Republican seeking reelection, has maintained that growers are making progress in preventing fertilizer losses, including leading the nation in adopting cover crops and other conservation practices and building infrastructure like wetlands.

But, he added on June 3 at the World Pork Expo in Des Moines, “There is no finish line when it comes to soil conservation and improving water quality. We can always do more.”

Chris Jones, an Iowa City Democrat and longtime activist on water quality who is challenging Naig for the agriculture secretary post, said in a statement Tuesday that the state’s approach to cutting agricultural runoff is not working.

“Des Moines area residents and people all across Iowa now commonly spend hundreds or thousands of dollars for in-home water treatment for peace of mind as they worry about their and their loved ones’ health,” Jones said, pointing to news that Iowa is one of only three states with rising new cancer rates, according to this year’s Cancer in Iowa report.

Advertisement

Is data center water use contributing to the water crisis?

Concern has been rising about water consumption by proliferating data centers, which use it to cool their equipment. Tech giant Microsoft, with a growing array of data centers in West Des Moines, used about 2.4% of the city’s total water last year, West Des Moines Water Works reported. It was 0.3% of the CIWW network’s overall water use in 2025.

Christina Murphy, general manager of West Des Moines Water Works, said Microsoft was nevertheless the city’s largest user in 2025, consuming 62.3 million gallons, primarily because other large business users were prevented from watering their lawns during last year’s ban. She said Microsoft does not irrigate its lawns.

Microsoft agreed in 2023 to provide West Des Moines Water Works with $25 million to provide large surface and underground water storage facilities that will offset its water usage, Murphy said.

The 300 million gallons of underground storage is still being developed, she said, adding that Microsoft also is moving to systems that reduce its water usage.

Advertisement

The lawn-watering ban isn’t about how much water CIWW can produce, but its capacity to treat high nitrate levels in its source water, Murphy said. “We have lots of capacity to treat water, just not with these levels of nitrates,” she said.

What about my new sod, garden and flowers?

The ban does not prevent residents from watering newly installed sod, seeded areas and trees or hand watering gardens and flowers, officials said. It also does not prevent watering of golf courses and sports fields.

CIWW encourages residents, in addition to refraining from lawn watering, to conserve home water use, including running dishwashers and washing machines only with full loads and fixing leaky faucets and toilets.

How long will the ban last?

Advertisement

The ban will continue until nitrate levels drop enough to guarantee there is sufficient treatment capacity to allow lawn watering to resume. For reference, last year’s ban began June 12. It began easing in stages on July 18. The last restriction ended Aug. 15.

Is central Iowa’s water safe?

“I want to be clear about one thing: Our drinking water is safe,” Madsen said at Monday’s news conference.

Donnelle Eller covers agriculture, the environment and energy for the Register. Reach her at deller@registermedia.com.



Source link

Advertisement
Continue Reading

Iowa

Iowa Lottery Mega Millions, Pick 3 Midday results for June 9, 2026

Published

on


The Iowa Lottery offers several draw games for those aiming to win big with rewards ranging from $1,000 to millions. The most an Iowan has ever won from playing the lottery was $343 million in 2018 off the Powerball.

Don’t miss out on the winnings. Here’s a look at Tuesday, June 9, 2026, winning numbers for each game:

Winning Mega Millions numbers from June 9 drawing

09-30-36-38-40, Mega Ball: 03

Check Mega Millions payouts and previous drawings here.

Advertisement

Winning Pick-3 numbers from June 9 drawing

Midday: 5-8-4

Evening: 4-5-6

Check Pick-3 payouts and previous drawings here.

Winning Pick-4 numbers from June 9 drawing

Midday: 8-7-2-5

Evening: 2-3-8-0

Advertisement

Check Pick-4 payouts and previous drawings here.

Winning Millionaire for Life numbers from June 9 drawing

23-25-33-35-50, Bonus: 05

Check Millionaire for Life payouts and previous drawings here.

Feeling lucky? Explore the latest lottery news & results

When are the Iowa Lottery drawings held?

  • Powerball: 9:59 p.m. CT on Monday, Wednesday, and Saturday.
  • Mega Millions: 10:00 p.m. CT on Tuesday and Friday.
  • Lotto America: 9:15 p.m. CT on Monday, Wednesday, and Saturday.
  • Lucky for Life: 9:38 p.m. CT daily.
  • Pick 3 (Day): 12:20 p.m. CT daily.
  • Pick 3 (Evening): 10:00 p.m. CT daily.
  • Pick 4 (Day): 12:20 p.m. CT daily.
  • Pick 4 (Evening): 10:00 p.m. CT daily.
  • Millionaire for Life: 10:15 p.m. CT daily.

This results page was generated automatically using information from TinBu and a template written and reviewed by an Iowa editor. You can send feedback using this form.



Source link

Advertisement
Continue Reading
Advertisement

Trending