ADVERTISEMENT

Red Sea container shipping down 30% over attacks: IMF

Published Feb 1, 2024 06:34 am

DUBAI, United Arab Emirates (AFP)  -- Container shipping through the Red Sea has dropped by nearly one-third this year as attacks by Yemen's Huthi rebels continue, the International Monetary Fund said Wednesday.
"Container shipping... has declined by almost 30 percent," said Jihad Azour, director of the IMF's Middle East and Central Asia department, adding that "the drop in trade accelerated in the beginning of this year".
The Iran-backed Huthis have launched more than 30 attacks on commercial shipping and naval vessels since November 19, the Pentagon said on Tuesday.


The rebels say the attacks are in solidarity with the Palestinians and in protest of the Israel-Hamas war that has been raging in the Gaza Strip since October.
 

The IMF's PortWatch platform indicates that the total transit volume through the Suez Canal was down 37 percent this year through January 16 compared with the same period a year earlier. The canal connects the Red Sea to the Mediterranean Sea.


Huthi attacks have prompted some shipping companies to detour around southern Africa to avoid the Red Sea, a vital route that normally carries about 12 percent of global trade, according to the International Chamber of Shipping.


"The level of uncertainty is extremely high and the developments will determine the extent of change and shift in trade patterns in terms of volume but also in terms of sustainability," Azour told reporters in an online briefing.
 

"Are we on the verge of major change in trade routes or is it temporary because of the increase in costs and the deterioration of the security costs?"
 

- Revised regional outlook -
 

The United States heads a coalition to protect Red Sea shipping, and is seeking to apply diplomatic and financial pressure by redesignating the Huthis as a "terrorist" group.
 

The Red Sea is particularly vital for European trade.
Last week the European Union's trade commissioner said maritime traffic through the Red Sea shipping route had fallen by 22 percent in a month because of the rebel attacks.
 

The European Union is pushing to launch its own naval mission in the Red Sea to help protect international shipping.
 

EU countries have given initial backing to the plan and are aiming to finalise it by a meeting of the bloc's foreign ministers on February 19.
The United States and Britain have launched repeated strikes against Huthi capabilities in Yemen, but the Iran-backed movement is still able to hit vessels.
 

Wednesday's IMF briefing came as the Washington-based fund released a revised economic outlook for countries in the Middle East and North Africa due to the Israel-Hamas war.
 

The IMF now sees the economies of the region expanding 2.9 percent this year, a decrease of half a percentage point from its October forecast.
 

The economic downturn in the occupied West Bank and the war-ravaged Gaza Strip and was "immense", said Azour.
 

In 2023, real GDP growth in Gaza and the West Bank was estimated to have dropped to about minus six percent, the IMF said, adding it reflected a nine percentage points downgrade from its October outlook.
"We project that the economy will keep on contracting in 2024 if there is no fast and quick cessation of hostilities and reconstruction," Azour said.
 

For emerging market and middle-income economies in the region, total funding requirements over 2024 were projected to $186 billion, the IMF said, up from $156 billion in 2023.
 

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.