Que se passe-t-il au Soudan ?

Des combats ont fait rage samedi dans la capitale du Soudan et dans une poignée d’autres villes, alors que des mois de tensions croissantes entre factions rivales des forces armées se sont soudainement transformés en une bataille totale pour le contrôle de l’un des plus grands pays d’Afrique. Les affrontements ont fait 27 morts dont 3 membres du personnel de l’ONU.

Les affrontements dans une base militaire de la capitale, Khartoum, se sont rapidement étendus au palais présidentiel, à l’aéroport international et au siège de la radiotélévision d’État. Les habitants se sont recroquevillés chez eux alors que les explosions retentissaient et que les avions de guerre survolaient les toits. Un rapport de l’ONU fait état d’environ 27 morts, dont 3 de ses employés et 400 blessés.

Samedi soir, on ne sait pas qui contrôlait le Soudan, pays tentaculaire et stratégiquement important situé juste au sud de l’Égypte.

Clashes in Khartoum

A map of areas where fighting has been reported in Sudan

Fighting reports






#g-khartoum-box ,
#g-khartoum-box .g-artboard {
margin:0 auto;
}
#g-khartoum-box p {
margin:0;
}
#g-khartoum-box .g-aiAbs {
position:absolute;
}
#g-khartoum-box .g-aiImg {
position:absolute;
top:0;
display:block;
width:100% !important;
}
#g-khartoum-box .g-aiSymbol {
position: absolute;
box-sizing: border-box;
}
#g-khartoum-box .g-aiPointText p { white-space: nowrap; }
#g-khartoum-A600 {
position:relative;
overflow:hidden;
}
#g-khartoum-A600 p {
font-family:nyt-franklin,arial,helvetica,sans-serif;
font-weight:600;
line-height:15px;
height:auto;
opacity:1;
letter-spacing:0em;
font-size:14px;
text-align:left;
color:rgb(0,0,0);
top:1.1px;
position:static;
text-transform:none;
padding-bottom:0;
padding-top:0;
mix-blend-mode:normal;
font-style:normal;
}
#g-khartoum-A600 .g-pstyle0 {
font-weight:500;
line-height:16px;
height:16px;
opacity:0.6;
letter-spacing:0.2em;
font-size:15px;
text-align:center;
color:rgb(102,102,102);
top:1.2px;
position:relative;
}
#g-khartoum-A600 .g-pstyle1 {
height:15px;
opacity:0.8;
text-align:right;
position:relative;
}
#g-khartoum-A600 .g-pstyle2 {
height:15px;
opacity:0.8;
position:relative;
}
#g-khartoum-A600 .g-pstyle3 {
font-weight:500;
line-height:13px;
height:13px;
opacity:0.6;
letter-spacing:0.05em;
font-size:13px;
text-align:center;
color:rgb(255,255,255);
top:1px;
position:relative;
}
#g-khartoum-A600 .g-pstyle4 {
font-weight:500;
opacity:0.6;
font-size:13px;
}
#g-khartoum-A300 {
position:relative;
overflow:hidden;
}
#g-khartoum-A300 p {
font-family:nyt-franklin,arial,helvetica,sans-serif;
font-weight:600;
line-height:13px;
height:auto;
opacity:1;
letter-spacing:0em;
font-size:13px;
text-align:left;
color:rgb(0,0,0);
top:1px;
position:static;
text-transform:none;
padding-bottom:0;
padding-top:0;
mix-blend-mode:normal;
font-style:normal;
}
#g-khartoum-A300 .g-pstyle0 {
font-weight:500;
height:13px;
opacity:0.6;
letter-spacing:0.2em;
text-align:center;
color:rgb(102,102,102);
position:relative;
}
#g-khartoum-A300 .g-pstyle1 {
height:13px;
opacity:0.8;
text-align:right;
position:relative;
}
#g-khartoum-A300 .g-pstyle2 {
height:13px;
opacity:0.8;
position:relative;
}
#g-khartoum-A300 .g-pstyle3 {
font-weight:500;
line-height:10px;
height:10px;
opacity:0.6;
letter-spacing:0.05em;
font-size:11px;
text-align:center;
color:rgb(255,255,255);
top:0.9px;
position:relative;
}
#g-khartoum-A300 .g-pstyle4 {
font-weight:500;
opacity:0.6;
font-size:11px;
}

khartoum A600

OMDURMAN

NORTH

KHARTOUM

State broadcaster

Presidential

palace

Military headquarters

Airport

White Nile River

KHARTOUM

Soba military camp

2 miles

khartoum A300

OMDURMAN

NORTH

KHARTOUM

State

broadcaster

Military

headquarters

Presidential

palace

Airport

White Nile River

KHARTOUM

Soba military camp

2 miles

(function (containerId, opts) {
var nameSpace = opts.namespace || ”;
var containers = findContainers(containerId);
containers.forEach(resize);

function resize(container) {
var onResize = throttle(update, 200);
var waiting = !!window.IntersectionObserver;
var observer;
update();

document.addEventListener(‘DOMContentLoaded’, update);
window.addEventListener(‘resize’, onResize);

// NYT Scoop-specific code
if (opts.setup) {
opts.setup(container).on(‘cleanup’, cleanup);
}

function cleanup() {
document.removeEventListener(‘DOMContentLoaded’, update);
window.removeEventListener(‘resize’, onResize);
if (observer) observer.disconnect();
}

function update() {
var artboards = selectChildren(‘.’ + nameSpace + ‘artboard[data-min-width]’, container),
width = Math.round(container.getBoundingClientRect().width);

// Set artboard visibility based on container width
artboards.forEach(function(el) {
var minwidth = el.getAttribute(‘data-min-width’),
maxwidth = el.getAttribute(‘data-max-width’);
if (+minwidth = width || maxwidth === null)) {
if (!waiting) {
selectChildren(‘.’ + nameSpace + ‘aiImg’, el).forEach(updateImgSrc);
selectChildren(‘video’, el).forEach(updateVideoSrc);
}
el.style.display = ‘block’;
} else {
el.style.display = ‘none’;
}
});

// Initialize lazy loading on first call
if (waiting && !observer) {
if (elementInView(container)) {
waiting = false;
update();
} else {
observer = new IntersectionObserver(onIntersectionChange, {});
observer.observe(container);
}
}
}

function onIntersectionChange(entries) {
// There may be multiple entries relating to the same container
// (captured at different times)
var isIntersecting = entries.reduce(function(memo, entry) {
return memo || entry.isIntersecting;
}, false);
if (isIntersecting) {
waiting = false;
// update: don’t remove — we need the observer to trigger an update
// when a hidden map becomes visible after user interaction
// (e.g. when an accordion menu or tab opens)
// observer.disconnect();
// observer = null;
update();
}
}
}

function findContainers(id) {
// support duplicate ids on the page
return selectChildren(‘.ai2html-responsive’, document).filter(function(el) {
if (el.getAttribute(‘id’) != id) return false;
if (el.classList.contains(‘ai2html-resizer’)) return false;
el.classList.add(‘ai2html-resizer’);
return true;
});
}

// Replace blank placeholder image with actual image
function updateImgSrc(img) {
var src = img.getAttribute(‘data-src’);
if (src && img.getAttribute(‘src’) != src) {
img.setAttribute(‘src’, src);
}
}

function updateVideoSrc(el) {
var src = el.getAttribute(‘data-src’);
if (src && !el.hasAttribute(‘src’)) {
el.setAttribute(‘src’, src);
}
}

function elementInView(el) {
var bounds = el.getBoundingClientRect();
return bounds.top 0;
}

function selectChildren(selector, parent) {
return parent ? Array.prototype.slice.call(parent.querySelectorAll(selector)) : [];
}

// based on underscore.js
function throttle(func, wait) {
var timeout = null, previous = 0;
function run() {
previous = Date.now();
timeout = null;
func();
}
return function() {
var remaining = wait – (Date.now() – previous);
if (remaining wait) {
clearTimeout(timeout);
run();
} else if (!timeout) {
timeout = setTimeout(run, remaining);
}
};
}
})(“g-khartoum-box”, {namespace: “g-“, setup: window.setupInteractive || window.getComponent});





Source: The New York Times reporting (locations of fighting), OpenStreetMap (Base map), Sentinel-2 ESRI (Built areas)
The New York Times

Les combats ont commencé dans une base militaire avant de s’étendre à d’autres sites critiques dans tout Khartoum. Des avions de chasse tonnaient au-dessus de la ville à basse altitude, les habitants se sont réfugiés chez eux et les ambassades étrangères ont exhorté leurs ressortissants à rester à l’intérieur.

Les avions de guerre soudanais avaient attaqué des camps des Forces de soutien rapide à plusieurs endroits de la ville.

Des vidéos circulant sur les réseaux sociaux montraient des soldats tirant dans les rues, des véhicules blindés traversant à toute vitesse des quartiers résidentiels.

D’autres images en provenance de l’aéroport international de Khartoum montrent des avions civils en feu et des passagers se mettant à l’abri. Saudi Arabian Airlines a déclaré qu’un de ses avions avait été endommagé par des tirs alors qu’il se préparait à effectuer un vol régulier à destination de Riyad.

Communque Saudi Airlines

Deux groupes se disputent le contrôle du pays : L’armée soudanaise, dirigée par le général Abdel Fattah al-Burhan, et la Force de soutien rapide, un puissant groupe paramilitaire dirigé par le lieutenant-général Mohamed Hamdan. Les généraux se sont unis pour prendre le contrôle du pays lors d’un coup d’État en 2021, mais ils se sont publiquement désolidarisés au cours des derniers mois.

Des forces des deux groupes ont été vues dans des vidéos diffusées sur les réseaux sociaux depuis Khartoum.

Ailleurs au Soudan

Samedi soir, les combats s’étaient étendus bien au-delà de Khartoum. Bien qu’il soit trop tôt pour dire si le Soudan est en train de basculer dans la guerre civile, certaines personnes ont déclaré au New York Times que l’étendue géographique des combats donnait cette impression.

Des responsables occidentaux et des Nations unies ont fait état d’affrontements dans au moins six villes en dehors de la capitale. Nombre d’entre elles se trouvaient dans la région occidentale du Darfour, théâtre d’un conflit civil brutal pendant la majeure partie des deux dernières décennies.






#g-sudan-others-box ,
#g-sudan-others-box .g-artboard {
margin:0 auto;
}
#g-sudan-others-box p {
margin:0;
}
#g-sudan-others-box .g-aiAbs {
position:absolute;
}
#g-sudan-others-box .g-aiImg {
position:absolute;
top:0;
display:block;
width:100% !important;
}
#g-sudan-others-box .g-aiSymbol {
position: absolute;
box-sizing: border-box;
}
#g-sudan-others-box .g-aiPointText p { white-space: nowrap; }
#g-sudan-others-A600 {
position:relative;
overflow:hidden;
}
#g-sudan-others-A600 p {
font-family:nyt-franklin,arial,helvetica,sans-serif;
font-weight:700;
line-height:17px;
opacity:1;
letter-spacing:0em;
font-size:15px;
text-align:left;
color:rgb(0,0,0);
text-transform:none;
padding-bottom:0;
padding-top:0;
mix-blend-mode:normal;
font-style:normal;
height:auto;
position:static;
}
#g-sudan-others-A600 .g-pstyle0 {
font-weight:500;
height:17px;
opacity:0.6;
mix-blend-mode:multiply;
letter-spacing:0.3em;
font-size:16px;
text-align:center;
color:rgb(102,102,102);
top:1.3px;
position:relative;
}
#g-sudan-others-A600 .g-pstyle1 {
font-weight:300;
font-style:italic;
line-height:19px;
height:19px;
opacity:0.6;
mix-blend-mode:multiply;
font-size:14px;
text-align:center;
color:rgb(102,102,102);
top:1.1px;
position:relative;
}
#g-sudan-others-A600 .g-pstyle2 {
font-weight:300;
font-style:italic;
line-height:19px;
height:19px;
opacity:0.6;
mix-blend-mode:multiply;
font-size:12px;
text-align:center;
color:rgb(102,102,102);
top:1px;
position:relative;
}
#g-sudan-others-A600 .g-pstyle3 {
text-align:center;
}
#g-sudan-others-A600 .g-pstyle4 {
font-weight:500;
line-height:16px;
height:16px;
opacity:0.6;
text-align:center;
color:rgb(102,102,102);
top:1.2px;
position:relative;
}
#g-sudan-others-A600 .g-pstyle5 {
font-weight:500;
line-height:15px;
height:15px;
opacity:0.8;
mix-blend-mode:multiply;
font-size:14px;
top:1.1px;
position:relative;
}
#g-sudan-others-A600 .g-pstyle6 {
line-height:20px;
height:20px;
letter-spacing:0.6em;
font-size:24px;
color:rgb(102,102,102);
top:1.9px;
position:relative;
}
#g-sudan-others-A600 .g-pstyle7 {
line-height:21px;
height:21px;
mix-blend-mode:multiply;
font-size:16px;
top:1.3px;
position:relative;
}
#g-sudan-others-A600 .g-pstyle8 {
font-weight:500;
line-height:15px;
height:15px;
opacity:0.8;
font-size:14px;
top:1.1px;
position:relative;
}
#g-sudan-others-A600 .g-pstyle9 {
font-weight:500;
line-height:15px;
opacity:0.6;
font-size:13px;
}
#g-sudan-others-A300 {
position:relative;
overflow:hidden;
}
#g-sudan-others-A300 p {
font-family:nyt-franklin,arial,helvetica,sans-serif;
font-weight:700;
line-height:14px;
opacity:1;
letter-spacing:0em;
font-size:13px;
text-align:left;
color:rgb(0,0,0);
text-transform:none;
padding-bottom:0;
padding-top:0;
mix-blend-mode:normal;
font-style:normal;
height:auto;
position:static;
}
#g-sudan-others-A300 .g-pstyle0 {
font-weight:500;
line-height:13px;
height:13px;
opacity:0.6;
mix-blend-mode:multiply;
letter-spacing:0.2em;
text-align:center;
color:rgb(102,102,102);
top:1px;
position:relative;
}
#g-sudan-others-A300 .g-pstyle1 {
text-align:center;
}
#g-sudan-others-A300 .g-pstyle2 {
font-weight:500;
line-height:11px;
height:11px;
opacity:0.8;
mix-blend-mode:multiply;
top:1px;
position:relative;
}
#g-sudan-others-A300 .g-pstyle3 {
line-height:20px;
height:20px;
letter-spacing:0.6em;
font-size:18px;
color:rgb(102,102,102);
top:1.4px;
position:relative;
}
#g-sudan-others-A300 .g-pstyle4 {
line-height:12px;
height:12px;
mix-blend-mode:multiply;
font-size:12px;
top:1px;
position:relative;
}
#g-sudan-others-A300 .g-pstyle5 {
font-weight:500;
line-height:11px;
height:11px;
opacity:0.8;
top:1px;
position:relative;
}
#g-sudan-others-A300 .g-pstyle6 {
font-weight:500;
line-height:13px;
opacity:0.6;
font-size:11px;
}

sudan others A600

EGYPT

Red Sea

LIBYA

Nile River

In Sudan’s capital, fighting spread to the presidential palace and the international airport

Darfur

CHAD

Meroe

SUDAN

Khartoum

El Fasher

El Geneina

El Obeid

West

Darfur

Nyala

Ad-Damazin

ETHIOPIA

SOUTH

SUDAN

200 miles

sudan others A300

EGYPT

In Sudan’s capital, fighting spread to the presidential palace and the international airport

Meroe

SUDAN

Khartoum

El Fasher

El Geneina

El Obeid

Nyala

Ad-Damazin

ETHIOPIA

<div class="g-LABELS_copy g-aiAbs g-aiPointText" i

Les plus lus

Crise politique aux Pays-Bas : cinq ministres démissionnent après un désaccord sur les sanctions contre Israël

Les Pays-Bas connaissent une nouvelle secousse politique majeure après...

Le renseignement marocain décrypté dans une monographie inédite du R.O.C.K. Institute

Le renseignement marocain n’a jamais été décrit avec autant...

Ces généraux de Hassan II qui servent toujours sous Mohammed VI

L’héritage militaire du roi Hassan II est toujours bien...

Akhannouch active sa cellule de campagne : les visages d’une stratégie discrète

Aziz Akhannouch, aurait entamé la structuration de sa cellule...

Trump-Poutine : un sommet spectaculaire, mais sans résultat tangible

Accueilli avec les honneurs réservés aux alliés les plus...

Les confidences de Sharon Halevi sur le 7 octobre ravivent les interrogations

Sharon Halevi, épouse de l’ancien chef d’état-major de l’armée...

Le renseignement marocain décrypté dans une monographie inédite du R.O.C.K. Institute

Le renseignement marocain n’a jamais été décrit avec autant...

« Très cher Maroc » : la double facture, prix élevés et civisme en berne

Dans sa dernière chronique sur Le360, l’écrivain Tahar Ben Jelloun...

Related Articles

Focus Thématiques