91³Ô¹ÏÍø

Watch CBS News

Record U.S. drought sparks fears about wildfires, water supply and food prices

Drought in the contiguous United States has reached record levels for this time of year, weather data shows. Meteorologists said it's a bad sign for the upcoming wildfire season, food prices and western water issues.

More than 61% of the Lower 48 states is in moderate to exceptional drought - including 97% of the Southeast and two-thirds of the West,  to the U.S. Drought Monitor. It's the highest levels for this time of year since the drought monitor began in 2000.

The National Oceanic and Atmospheric Administration's comprehensive Palmer Drought Severity Index not only hit its highest level for March since records started in 1895, but last month was the third-driest month recorded regardless of time of year. It trailed only the famed Dust Bowl months of July and August 1934.

Drought peaks earlier than normal

Because of record heat, much of the West has had exceptionally low levels of snow in the first few months of the year, which is usually how the region stores water for the summer.  The region endured a historic snow drought that experts warn could bring water shortages and wildfires in the months ahead. New Mexico, Arizona, Colorado and Utah are contending with record-low snowpack, federal records show. Snowpack is the accumulation of mountain snow that fortifies rivers, reservoirs and drinking water systems once it melts. Low snowpack can make wildfire-prone land even more vulnerable.

A different drought — connected to the jet stream keeping storms further north — has put the South from Texas all the way to the East Coast into a separate drought that just happens to coincide with what's going on in the West, said Brian Fuchs, a climatologist with the National Drought Mitigation Center.

It would take 19 inches of rain in one month to break the drought in eastern Texas and more than a foot of rain to solve the deficit for most of the Southeast, NOAA calculated.

"Right now 61% of the country is in drought and that's steadily been going up for the calendar year," Fuchs said. "We just haven't seen too many springs where this amount of the country has been in this kind of shape."

Sticking out like a sore thumb is a highly technical but crucial measurement of "the sponginess" of the atmosphere — or how much moisture the hot, dry air is sucking up from the land it's baking. It's called vapor pressure deficit. It's 77% above normal and more than 25% higher than the previous record for January through March in the West, said UCLA hydroclimatologist Park Williams.

That level of moisture-sucking from the ground "wouldn't have appeared possible" before now, Williams said.

Drought usually peaks in summer, not spring, and that's what worries meteorologists.

"Fire tends to respond to heat and drought in an exponential manner," Williams said. "For each degree of warming, you get a bigger bang in terms of fire than you got from the previous degree of warming."

Worries about water shortages, wildfires

In Arizona, cacti are blooming months early and the worry about water has already started, said Kathy Jacobs, director of the Center for Climate Adaptation Science and Solutions at the University of Arizona.

"Those of us who are dependent on the Colorado River, of course, are very concerned about the fact that we don't have a negotiated path forward in the middle of what appears to be possibly the worst year of drought that we've all experienced," Jacobs said. "We have lots of reservoirs that are not full."

Water supply forecasts suggest shortages could be imminent and potentially widespread. Water and snowpack usually protect against wildfires, acting as a buffer against dry conditions. However, as temperatures rise and snowpack remains low, experts said conditions taking shape increasingly resemble those that in recent years have fueled some of the region's most destructive blazes.

The  warned that the potential for significant fires would be higher than normal for parts of the Southwest later in the spring, in part due to snowpack.

Yale Climate Connections meteorologist Jeff Masters said his biggest concern is what the drought will do to agriculture and then food prices. If America has a poor crop year due to the drought, it could be a global problem. A strong natural El Niño weather oscillation is predicted, which often reduces crop yields in other parts of the globe, such as India.

UCLA's Williams said the drought and hotter weather are driven by both natural variability and human-caused climate change with randomness a slightly bigger factor.

"All weather is now affected by climate change," Arizona's Jacobs said. "There is no such thing as weather that's divorced from climate trends. But this extreme event is extreme in the way that we've been expecting: extreme heat waves, intense drought."

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=296763317a51cab90faa73f1bb146d5c'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });