Ravensbourg

Multi tool use
Cet article est une ébauche concernant une ville d’Allemagne.
Vous pouvez partager vos connaissances en l’améliorant (comment ?) selon les recommandations des projets correspondants.
Ravensbourg Ravensburg .mw-parser-output .entete.map{background-image:url("//upload.wikimedia.org/wikipedia/commons/7/7a/Picto_infobox_map.png")}
|
 Héraldique
|
Administration |
Pays
|
Allemagne
|
Land
|
Bade-Wurtemberg
|
District (Regierungsbezirk)
|
Tübingen
|
Arrondissement (Landkreis)
|
Ravensbourg
|
Nombre de quartiers (Ortsteile)
|
4
|
Bourgmestre (Oberbürgermeister)
|
Daniel Rapp depuis 2010
|
Partis au pouvoir
|
CDU
|
Code postal
|
88181–88214
|
Code communal (Gemeindeschlüssel)
|
08 4 36 064
|
Indicatif téléphonique
|
0751
|
Immatriculation
|
RV
|
Démographie |
Population
|
48 994 hab. (31 décembre 2005)
|
Densité |
532 hab./km2
|
Géographie |
Coordonnées |
47° 47′ 00″ nord, 9° 36′ 41″ est |
Altitude
|
450 m
|
Superficie
|
9 204 ha = 92,04 km2
|
Localisation |
Géolocalisation sur la carte : Allemagne
Géolocalisation sur la carte : Allemagne
|
Liens |
Site web
|
www.ravensburg.de
|
|
modifier 
|
Ravensbourg (en allemand : Ravensburg) est une ville du Bade-Wurtemberg dans le sud-ouest de l'Allemagne (Souabe). Ravensbourg est la capitale de l'arrondissement de Ravensbourg. Elle compte environ 50 000 habitants.
La vieille ville fortifiée conserve un beau bloc de bâtiments anciens, au bout de la Marktstraße, constitué par l'hôtel de ville (Rathaus, XIVe et XVe siècles) et la Blaserturm, tour d'horloge carrée (XVe et XVIe siècles).
Dans l'église Notre-Dame (Liebfrauenkirche) se trouve une copie de la Vierge de Ravensbourg (l'original est à la Gemäldegalerie à Berlin).
La ville abrite le siège de Ravensburger, une entreprise allemande spécialisée dans la fabrication et la distribution de jeux, jouets, livres et puzzles, créée en ce lieu en 1883.
Jumelages |
Montélimar (France) depuis 1965
Rivoli (Italie) depuis 1983
Brest (Biélorussie) depuis 1990
Coswig (Allemagne) depuis 1990
Rhondda Cynon Taf (Pays de Galles) depuis 1993
Varaždin (Croatie) depuis 2003
Liens externes |
.mw-parser-output .autres-projets ul{margin:0;padding:0}.mw-parser-output .autres-projets li{list-style-type:none;list-style-image:none;margin:0.2em 0;text-indent:0;padding-left:24px;min-height:20px;text-align:left}.mw-parser-output .autres-projets .titre{text-align:center;margin:0.2em 0}.mw-parser-output .autres-projets li a{font-style:italic}
Sur les autres projets Wikimedia :
Ravensbourg, sur Wikimedia Commons
- Ravensburg (site officiel)
Villes et communes dans l'arrondissement de Ravensbourg
|
.mw-parser-output .sep-liste{font-weight:bold}
Achberg • Aichstetten • Aitrach • Altshausen • Amtzell • Argenbühl • Aulendorf • Bad Waldsee • Bad Wurzach • Baienfurt • Baindt • Berg • Bergatreute • Bodnegg • Boms • Ebenweiler • Ebersbach-Musbach • Eichstegen • Fleischwangen • Fronreute • Grünkraut • Guggenhausen • Horgenzell • Hoßkirch • Isny im Allgäu • Kißlegg • Königseggwald • Leutkirch im Allgäu • Ravensburg • Riedhausen • Schlier • Unterwaldhausen • Vogt • Waldburg • Wangen im Allgäu • Weingarten • Wilhelmsdorf • Wolfegg • Wolpertswende
|
 |
Portail du Bade-Wurtemberg
4t8fXJJlfd
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...