Mongala (rivière)

Multi tool use

Pour les articles homonymes, voir Mongala.
Mongala.mw-parser-output .entete.map{background-image:url("//upload.wikimedia.org/wikipedia/commons/7/7a/Picto_infobox_map.png")}
|

|
Caractéristiques |
Longueur |
370 km
|
Bassin |
|
Bassin collecteur
|
Congo
|
Débit moyen |
? |
Cours |
Confluence
|
Congo
|
Géographie |
Pays traversés
|
République démocratique du Congo
|
modifier 
|
La Mongala est une rivière, affluent du fleuve Congo, en République démocratique du Congo.
Géographie |
La rivière traverse les territoires de Lisala, Budjala, et Businga. La rivière est navigable sur 329 km d'avril à décembre. Sa crue minimum est de 1,30 m et sa décrue de 1 mètre.
Affluents |
Depuis la source jusqu'à l'embouchure sur le fleuve Congo :
Ebola
Dwa
Likame
Libala
- Motima
- Mokabi
- Etepo
- Sumbu
- Banga Melo
Notes et références |
- Références
Affluents et (sous-affluents) du Congo
|
Moins de 5 000 km
|
Congo |
Moins de 3 000 km
|
.mw-parser-output .sep-liste{font-weight:bold}
Kasayi · Lohale · Lomami · (Luluwa) · Oubangui · (Sankuru) · (Uele)
|
Moins de 1 000 km
|
Alima · (Dja) · Inkisi · (Kotto) · (Kwango) · (Kwilu, affluent du Kasayi) · (Kwilu, affluent du Kwango) · (Lobaye (affluent de l'Oubangui)) · (Lwi) · (Lwapula) · (Mbomou) · (Ouaka) · Sangha · Tshwapa-Busira-Ruki
|
Moins de 500 km
|
(Chambeshi) · (Chinko) · (Kwale) · (Kwenge) · (Lukuga) · (Luvwa) · (Malagarasi) · (Mambéré) · Mongala · (Mpama) · (Tshikapa)
|
Moins de 300 km
|
(Baïdou) · (Ebola) · Kwilu · (Loeka) · (Lwembe) · (Luka) · Lulonga · (Mbali) · Molua · (Montoku) · (Pama) · (Rusizi) · (Shari) · (Yekokora)
|
Moins de 100 km
|
Kalambo · (Lufira) · (Tomi)
|
Moins de 30 km
|
Gombe |
longueur inconnue |
(Ambe) · (Bima) · (Bombo) · (Bomokandi) · (Dwa) · Elila · (Epulu) · Ikelemba · Itimbiri · (Kabambaye) · (Kafubu) · (Kampemba) · (Karavya) · Léfini · (Libala) · Likouala-Mossaka · Lindi · (Lobaye (affluent de la Lomami)) · (Lomela) · (Lopori) · (Lovua) · Lowa · Lua · Lubudi · (Lubudi) · (Lubumbashi) · Lufimi · (Lukaya) · (Lukenye) · (Lukula) · (Lutshwadi) · (Lwachimo) · (Lwange) · (Lwano) · (Lwebo) · (Maï Ndombe) · Maiko · (Maringa) · (Mbuji-Mayi) · (Mfimi) · Mpozo · (Navyundu) · Ndjili · Nkéni · Nsele · (Nyemba) · (Oso) · (Rwashi) · Ruki · (Sumbuji) · (Tayna) · Tshopo · (Uere) · (Uku) · (Wamba)
|
Barrages |
Imboulou · Inga · Inga I · Inga II · Inga III · Grand Inga · Zongo
|
Chutes |
Boali · Boyoma · Lofoï · Livingstone
|
Lacs |
Bangwelo · Delcommune · Dépression de Kamalondo · Kabwe · Kasuku · Kisale · Mai-Ndombe · Mbali · Moero · Pool Malebo · Tanganyika · Upemba
|
Portail des lacs et cours d’eau
Portail de la république démocratique du Congo
GZMBXRwyI,dswWbn Zzr2,XqbBM,pIjiGrCZXAK19f9ii7sIFxQPc9NLfe,eN8OxpFaemJCJ,8kN xvX3,0ju6z
Popular posts from this blog
1
I am trying to find out how to save and close to an existing workbook using xlwings after writing in it: import xlwings as xw list_of_values = [1, 2, 3] workbook_path = 'abc.xlsx' wb = xw.Book(workbook_path) ws = wb.sheets['sheet1'] ws.range('E35').value = list_of_values wb.save() wb.close() When I get to wb.save(workbook_path) , there is a prompt stating: 'A file named abc.xlsx' already exists in this location. Do you want to replace it?' I want to overwrite the file immediately without the prompt coming up. According to the docs, wb.save() should automatically overwrite (see: https://docs.xlwings.org/en/v0.6.4/api.html). I have also tried wb.save(workbook_path) but the pop-up still appears. Appreciate any help on this please. p.s. - I am basically try...
Ne doit pas être confondu avec freeware, open source ou copyleft. Logo du projet GNU, initiateur du mouvement du logiciel libre. Un logiciel libre est un logiciel dont l'utilisation, l'étude, la modification et la duplication par autrui en vue de sa diffusion sont permises, techniquement et légalement [ 1 ] , ceci afin de garantir certaines libertés induites, dont le contrôle du programme par l'utilisateur et la possibilité de partage entre individus [ 2 ] . Ces droits peuvent être simplement disponibles – cas du domaine public – ou bien établis par une licence, dite « libre », basée sur le droit d'auteur. Les « licences copyleft » garantissent le maintien de ces droits aux utilisateurs même pour les travaux dérivés. Les logiciels libres constituent une alternative à ceux qui ne le sont pas, qualifiés de « propriétaires » ou de « privateurs » [ Note 1 ] . Ces derniers sont alors considérés par une partie de la communauté du logiciel libre comme étant l...
1
1
I'm still learning PostgreSQL. During my testing, I have only been using INSERT statement in either psycopg2 and now asyncpg. I now have the need to UPDATE data in my test database, instead of replacing all of it. I'm currently trying to do a simple replacement test in a testing table, before I move to development table with more data. I want to replace any $1 name that is in CONFLICT with a name that is already in the table users. I'm trying the query code, which is passed to the DB via asyncpg. I keep getting a syntax errors, so I'm a little lost on how to correct these errors. What is the proper syntax for this query? '''INSERT INTO users(name, dob) VALUES($1, $2) ON CONFLICT (name) DO UPDATE "users" SET name = 'TEST' W...