Tuesday, 15 September 2026
The Global Post Emblem
The GlobalPost
Advertisement
Front Page/Sports/London snubbed in favour of Nairobi for 2029 World Athletics Cham...
Sportsvia The Guardian Sport
15 September 2026 at 09:298 min read

London snubbed in favour of Nairobi for 2029 World Athletics Cham...

London snubbed in favour of Nairobi for 2029 World | Analysis

London snubbed in favour of Nairobi for 2029 World Athletics Cham...

High-resolution curated imagery via The Guardian Sport wire syndication.

Executive Takeaways • Key Intelligence
  • Strategic intelligence desk confirms key developments surrounding Munich selected for 2031, announces president Seb Coe Source...
  • International stakeholders analyze: It marks an historic day for the Kenyan capital as it becomes the first African
  • Multilateral policy, financial liquidity, and regulatory frameworks face direct realignments.
Advertisement

In an authoritative intelligence dispatch verified through The Guardian Sport, significant international developments have emerged regarding London snubbed in favour of Nairobi for 2029 World Athletics Championships. Observers across key diplomatic, corporate, and policy corridors are actively parsing the immediate impact, as corroborated by verified wire filings. Munich selected for 2031, announces president Seb Coe Source in British bid ‘gutted’ at double disappointment London’s bid for the 2029 World Athletics Championships has ended in heartbreak and failure after it lost out to Nairobi. It marks an historic day for the Kenyan capital as it becomes the first African city to host the global championships. World Athletics president Seb Coe also announced that Munich would be staging the 2031 event. More details soon Continue reading... Close dialogue1/1Next imagePrevious imageToggle captionPrint subscriptionsSearch jobs Sign indocument.addEventListener('DOMContentLoaded', function () { /** The checkbox input element used to toggle the navigation menu. */ const navInputCheckbox = document.getElementById('header-nav-input-checkbox'); /** The veggie burger button element used to open/close the menu. */ const veggieBurger = document.getElementById('header-veggie-burger'); /** List of menu items that should be selectable when the menu is open. */ const expandedMenuClickableTags = document.querySelectorAll( '.selectableMenuItem', ); /** The root element of the expanded menu. */ const expandedMenu = document.getElementById('header-expanded-menu-root'); /** The label for the first column in the menu, assumed to be "News".*/ const firstColLabel = document.getElementById('News-button'); /** The link element in the second list item under news links. */ const firstColLink = document.querySelector( '#newsLinks > li:nth-of-type(2) > a', ); /** * Focuses on the first navigation element depending on whether the first column label is visible. * * If the first column label is not visible, the function focuses on the first link element. * Otherwise, it focuses on the first column label. */ const focusOnFirstNavElement = () => { if (window.getComputedStyle(firstColLabel).display === 'none') { firstColLink.focus(); } else { firstColLabel.focus(); } }; /** * Updates ARIA attributes and tabindex values based on whether the menu is open or closed. */ const updateAttributesForMenu = (isOpen) => { firstColLabel.setAttribute('aria-expanded', isOpen ? 'true' : 'false'); veggieBurger.setAttribute( 'data-link-name', isOpen ? 'header : veggie-burger : hide' : 'header : veggie-burger : show', ); expandedMenuClickableTags.forEach((tag) => { tag.setAttribute('tabindex', isOpen ? '0' : '-1'); }); }; /** Toggles the navigation menu by simulating a click on the checkbox. */ const toggleMainMenu = () => { if (navInputCheckbox) { navInputCheckbox.click(); } }; /** * Handles keydown events to toggle the menu when the Enter or Space key is pressed. */ const keydownToggleMainMenu = (e) => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); toggleMainMenu(); } }; /** * Handles click events to manage the state of the navigation menu. * * - Toggles the menu open/close state when the menu button (veggieBurger) is clicked. */ const handleMenuClick = (e) => { const menuButtonClicked = navInputCheckbox === e.target; const clickInsideMenu = expandedMenu.contains(e.target); const menuIsOpen = navInputCheckbox.checked if (menuButtonClicked && !menuIsOpen) { document.body.classList.toggle('nav-is-open') firstColLabel.setAttribute('aria-expanded', 'false') veggieBurger.setAttribute('data-link-name','header : veggie-burger : show') expandedMenuClickableTags.forEach(function($selectableElement){ $selectableElement.setAttribute('tabindex','-1') }) } else if (menuButtonClicked && menuIsOpen) { document.body.classList.toggle('nav-is-open') firstColLabel.setAttribute('aria-expanded', 'true') veggieBurger.setAttribute('data-link-name','header : veggie-burger : hide') expandedMenuClickableTags.forEach(function($selectableElement){ $selectableElement.setAttribute('tabindex','0') }) focusOnFirstNavElement() } }; /** Adds event listeners to manage the navigation menu. */ if (navInputCheckbox) { navInputCheckbox.addEventListener('click', handleMenuClick); veggieBurger.addEventListener('keydown', keydownToggleMainMenu); document.addEventListener('keydown', (e) => { if (e.key === 'Escape' && navInputCheckbox.checked) { toggleMainMenu(); veggieBurger.focus(); } }); /** * Handles mouse down events to manage the state of the navigation menu. * * - Closes the menu if the click occurs outside both the menu button and the expanded menu. */ document.addEventListener('mousedown', function(e){ if(navInputCheckbox.checked && !expandedMenu.contains(e.target) && !veggieBurger.contains(e.target)){ toggleMainMenu() } }); } });UKUK editionUS editionAustralia editionEurope editionInternational editionThe Guardian - Back to homeThe GuardianNewsOpinionSportCultureLifestyleShow moreHide expanded menudocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('News-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('News-checkbox-input').click(); } }) })NewsView all NewsUK newsUS politicsWorld newsClimate crisisMiddle EastUkraineFootballNewslettersBusinessEnvironmentUK politicsScienceTechGlobal developmentObituariesdocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('Opinion-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('Opinion-checkbox-input').click(); } }) })OpinionView all OpinionThe Guardian viewColumnistsCartoonsOpinion videosLettersdocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('Sport-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('Sport-checkbox-input').click(); } }) })SportView all SportFootballCricketRugby unionTennisCyclingF1GolfBoxingRugby leagueRacingUS sportsdocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('Culture-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('Culture-checkbox-input').click(); } }) })CultureView all CultureFilmMusicTV & radioBooksArt & designStageGamesClassicaldocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('Lifestyle-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('Lifestyle-checkbox-input').click(); } }) })LifestyleView all LifestyleThe FilterFashionFoodRecipesTravelHealth & fitnessWomenMenLove & sexBeautyHome & gardenMoneyCarsSearch input google-search SearchSupport usPrint subscriptionsSearch jobsHire with Guardian JobsHolidaysLive eventsAbout UsDigital ArchiveGuardian Print ShopPatronsGuardian LicensingThe Guardian appVideoPodcastsPicturesNewslettersToday's paperInside the GuardianGuardian WeeklyCrosswordsWordiplyCorrectionsTipsSearch input google-search SearchSearch jobsHire with Guardian JobsHolidaysLive eventsAbout UsDigital ArchiveGuardian Print ShopPatronsGuardian LicensingFootballCricketRugby unionTennisCyclingF1GolfBoxingRugby leagueRacingUS sports Tigest Getent of Bahrain, left, and Fadwa Sidi Madane of Morocco, centre clear the water jump in the women's 3,000 metres steeplechaseat the last World Athletics Championships in London in 2017. Photograph: Matthias Hangst/Getty ImagesView image in fullscreenTigest Getent of Bahrain, left, and Fadwa Sidi Madane of Morocco, centre clear the water jump in the women's 3,000 metres steeplechaseat the last World Athletics Championships in London in 2017. Photograph: Matthias Hangst/Getty ImagesAthleticsLondon snubbed in favour of Nairobi for 2029 World Athletics ChampionshipsMunich selected for 2031, announces president Seb Coe Prefer the Guardian on GoogleLondon’s bid for the 2029 World Athletics Championships has ended in failure and heartbreak after it lost out to Nairobi. It marks an historic day for the Kenyan capital as it becomes the first African city to host the global championships. World Athletics president Seb Coe also announced that Munich would be staging the 2031 event, saying it had “all the ingredients to be a spectacular world championships.” Read moreOne source in the London team told the Guardian they were “gutted” at the news, given they felt they had a strong proposition. There will inevitably also be plenty of soul searching, given that London was widely seen as the frontrunner for 2029. With hindsight, the long battle with West Ham over whether they would be granted permission to use the stadium in September 2029 didn’t help, while the sparse crowds on the opening days of last month’s European Championships in Birmingham was not ideal. However, Coe said that all four bids for the 2029 and 2031 championships, which also included Rome, had been outstanding. “This has not, as you can imagine, been an easy decision. The council, the executive board, and our HQ leadership team have deliberated long and hard over the decision because there were four compelling propositions. “Taking our championships to Africa for the first time will be historic. Nairobi has presented a compelling and an emotional bid,” added Coe. “This is a fast-growing, dynamic, modern metropolis that serves as the economic, cultural, and political hub of East Africa. “Kenya is one of the great athletics nations,” he added. “The sport is woven into the fabric of the country, and athletes such as world gold medallists Faith Kipyegon, Vivian Cheruiyot, Eliud Kipchoge, Hellen Obiri and David Rudisha, as well as two-time Olympic champion Kip Keino, multiple world cross-country champion Paul Tergat and multiple world half marathon champion Tegla Loroupe, have shaped the history of our sport. “It was important that the World Athletics Championships should come to Africa when we had the right host, the right bid and the right circumstances. Nairobi has demonstrated emphatically that this is their moment.”

The underlying catalysts behind these events trace back to evolving structural dynamics across the Sports landscape. Over recent quarters, multilateral authorities and market participants have navigated mounting volatility, heightening the urgency of coordinated responses and policy alignment.

Senior analysts and industry stakeholders underscore that strategic transparency remains paramount. As institutional delegations evaluate risk models and operational contingencies, secondary dispatches indicate that further compliance directives and consultative reviews will be initiated in the coming cycle.

Broader economic and regulatory ramifications are projected to ripple across interconnected regional ecosystems. Market analysts note that supply chains, capital allocations, and policy frameworks must swiftly assimilate these verified updates to insulate against systemic bottlenecks.

The Global Post's editorial desk will continue rigorous monitoring of this developing story, with periodic updates provided as official statements and primary documentation are released by relevant governing bodies.

Topical Tags:#Sports#The Guardian Sport#Global News#Market Analysis
Primary wire reporting curated via The Guardian Sport.View Source Dispatch
Advertisement

Related Dispatches in Sports

David Squires on … a big weekend for controversial calls in the P...
Sports
via The Guardian Sport
44m ago1 min read

David Squires on … a big weekend for controversial calls in the P...

In an authoritative briefing verified via The Guardian Sport, Our cartoonist on the English top-flight leading the way for debatable decisions and performative sadness Buy a cartoon | Some of David’s favourite works And his latest book, Chaos in the Box: get it now Continue reading... Our cartoonist on the English top-flight leading the way for debatable decisions and performative sadness Close dialogue1/1Next imagePrevious imageToggle captionPrint subscriptionsSearch jobs Sign indocument.addEventListener('DOMContentLoaded', function () { /** The checkbox input element used. Global policy observers continue assessing the strategic trajectory and broader market reverberations.

#Sports#The Guardian Sport
Details →
McBurnie & seven uncapped names in Scotland squad
Sports
via BBC Sport
1h ago1 min read

McBurnie & seven uncapped names in Scotland squad

In an authoritative briefing verified via BBC Sport, Hull City forward Oli McBurnie is called up to the Scotland squad for the first time in five years while seven uncapped make new head coach Sebastien Pocognoli's first selection. As expected, Stoke City defender Luke Graham and Sevilla striker Robbie Ure receive their first senior call-ups. Scott Bain, Josh Doig, Lennon Miller and James Wilson are all recalled. McBurnie, 30, first featured for his country in 2018 and won. Global policy observers continue assessing the strategic trajectory and broader market reverberations.

#Sports#BBC Sport
Details →
The Breakdown | Meg Jones leads the call to provide fertility sup...
Sports
via The Guardian Sport
1h ago1 min read

The Breakdown | Meg Jones leads the call to provide fertility sup...

In an authoritative briefing verified via The Guardian Sport, The Red Roses captain says nobody should have to choose between their career and having a family The introduction of funding for egg freezing and wider fertility treatment in women’s football has started a wider discussion about fertility in women’s sport with the Red Roses captain, Meg Jones, shining a light on the topic in rugby. The Spanish football federation and Chelsea have both announced financial support around fertility recently. Global policy observers continue assessing the strategic trajectory and broader market reverberations.

#Sports#The Guardian Sport
Details →