ADVERTISEMENT

World needs 'trillions' for climate action: COP28 president

Published Feb 20, 2024 02:39 pm
AFP__20240213__34JC6EL__v1__Preview__FranceEnergyIeaMeetingAnniversary.jpg
US climate envoy John Kerry (L) and French Minister for the Economy and Finances Bruno Le Maire attend the International Energy Agency (IEA) 2024 ministerial meeting and 50th Anniversary event, in Paris on February 13, 2024. Energy and climate ministers from around the world will meet in Paris on February 13 and 14 for the IEA’s 2024 Ministerial Meeting to take stock of the latest developments in energy markets, policies and transitions, and to set the Agency’s strategic direction for the coming years. (Photo by Ian LANGSDON / AFP)

PARIS, France– The world needs "trillions" of dollars to spur on the green transition and tackle global warming, the head of last year's COP28 climate talks said Tuesday, warning that political momentum can evaporate without clear action.

COP28  president Sultan Al Jaber hailed progress made at UN negotiations last year in Dubai, where countries agreed to triple global renewables capacity this decade and "transition away" from polluting fossil fuels.

But the deal lacked important details, including on funding, putting the onus on this year's COP29 meeting in Azerbaijan.

With impacts accelerating as global heat records are smashed, experts say that funding agreed this year will also play an important role in encouraging governments to toughen up their decarbonisation targets.

Jaber said finance was "the key enabler of positive change at the speed and scale" needed.

"But not normal scale finance -- we need finance at every level," he said, at an event in Paris organised by the International Energy Agency (IEA).

Countries are expected this year to hammer out a new target for the amount of annual support rich nations will provide to poorer ones for their energy transitions and adaptation to climate impacts from 2025.

The failure of wealthy nations to meet their previous goal of $100 billion per year by 2020 has soured trust, with indications the target was likely reached only in 2022.

Needs already far outstrip the money available. The UN-backed climate finance expert group has estimated that emerging economies except China will need to spend around $2.4 trillion a year by the end of the decade.

"The world must now raise the bar to address the challenge we face," Jaber said.

"We need to start thinking trillions, not billions."

 

- 'Believe in numbers' -

Recognition of the scale of support needed has put the focus on expanding sources of funding.

The World Bank and International Monetary Fund are under pressure to initiate sweeping reforms to align their lending with the Paris deal goal of capping global warming at 1.5 degrees Celsius above preindustrial levels.

Other initiatives under discussion include new taxation, especially on polluting industries, as well as redirecting fossil fuel subsidies into green development.

The United Arab Emirates, Azerbaijan and the 2025 COP host Brazil are launching an initiative to maintain global focus on keeping the 1.5C goal alive.

Jaber warned that there was a risk that "political momentum can dissipate and then fade away or disappear between COPs".

IEA chief Fatih Birol said the energy agency, which has become a key player in promoting the energy transition, would offer countries help to beef up emissions-cutting targets, with enhanced decarbonisation plans expected this year and in 2025.

He also announced a new mechanism from March 1 to measure the gap between countries' goals and the actions being taken.

"We trust the governments that they will do what they said they will do, but at the IEA, we believe in numbers," he said.


 

Related Tags

WORLDNEWS
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.