ADVERTISEMENT

Economic fallout from typhoons limited, political risks a bigger worry for Philippines

Published Dec 4, 2025 12:51 pm  |  Updated Dec 4, 2025 02:40 pm
While typhoons have caused damage and affected Filipino communities, their impact on the country’s gross domestic product (GDP) has been limited, according to London-based think tank Capital Economics.
“Typhoon Haiyan in the Philippines in 2013 caused over 10,000 deaths, yet the effect on GDP was limited,” said Capital Economics senior Asia economist Gareth Leather in a Dec. 3 report, referring to super-typhoon “Yolanda,” which had flattened central Philippines.
“The human cost is tragic,” Capital Economics said, noting that large parts of South and Southeast Asia have been battered by tropical storms in recent weeks, causing widespread disruption and loss of life. Economically, however, the think tank said that “the impact is likely to be limited, as the region’s main industrial and commercial centers have largely escaped the worst of the damage.”
Capital Economics emphasized that in the Philippines, Visayas and Mindanao were the hardest-hit regions, with floods and landslides disrupting local transport and services.
The think tank added that recovery frequently follows once immediate typhoon damage eases.
“Once the worst of the disruption passes, a rebound often follows, aided by pen-up demand,” the think tank said.
Capital Economics also highlighted that “reconstruction can provide a further boost to growth,” noting that natural disasters affect economic growth in several ways, initially disrupting production, commerce, supply chains, and tourism.
Despite overall resilience, agriculture is expected to bear the brunt of the damage, as flooding and crop losses are likely to drive food prices higher across the region. The think tank warned this could create “an upside risk” to inflation in affected economies.
However, the think tank noted that regional inflation is starting from a low base.
“[Inflation] is at or below target across most of the region. We are therefore sticking with our view that central banks will maintain a dovish stance, with further rate cuts likely in the months ahead,” the think tank added.
As flooding disrupts communities across the country amid an ongoing infrastructure corruption scandal, the think tank warns this could intensify public outrage and push the government toward a firmer response.
“Perhaps of more significance in the Philippines is the political backdrop,” it said, pointing to the corruption scandal centered on flood-control projects.
Last November, an anti-corruption protest dubbed the “Trillion Peso March” was held across the county as investigations into ghost and substandard flood-control projects involving government officials and politicians intensified.
Despite these protests, “overall, while supply chains and manufacturing may face some disruption, the hit to activity is likely to be small and temporary,” Capital Economics said.
Last week, Department of Economy, Planning, and Development (DEPDev) Secretary Arsenio M. Balisacan said that the Philippines is expected to miss its full-year GDP growth target for 2025, following the sharp slowdown in third-quarter expansion to a 4.5-year low of four percent amid a worsening corruption scandal.
He added that reaching even the lower end of the government’s 2025 target is “very unlikely.”
The government had already downscaled its 2025 growth goal to a range of 5.5 to 6.5 percent, from an originally more ambitious six to eight percent.
(Ricardo M. Austria)
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.