Bad Salzig

Bad Salzig is a small town in Rhineland-Palatinate, Germany, on the west bank of the Rhine. It is part of the municipality of Boppard. It is near the city of Koblenz and the Lorelei. It is a spa town, with a spring which dispenses slightly salty water. It is linked to other towns by a railway which runs form the town's railway station.

Bad Salzig
Ortsteil of Boppard
Coat of arms
Location of Bad Salzig
Bad Salzig
Bad Salzig
Coordinates: 50°12′18″N 7°37′59″E
CountryGermany
StateRhineland-Palatinate
DistrictRhein-Hunsrück-Kreis
TownBoppard
Government
  Local representativeAndreas Nick
Area
  Total4.2 km2 (1.6 sq mi)
Elevation
80 m (260 ft)
Population
 (31 December 2010)
  Total2,589
  Density620/km2 (1,600/sq mi)
Time zoneCET/CEST (UTC+1/+2)
Postal codes
56154
Dialling codes06742
Vehicle registrationSIM
Website

History

Bad Salzig is located at the historic Roman Rhine road which went from Mainz to Cologne. A Roman index of places from 215 includes a village called Salissone, but it's uncertain whether Salissone is today's Bad Salzig or not. In 1859 two milestones from the third century were found in the river Rhine, which can be seen in the Rheinischen Landesmuseum at Bonn.[1]

During the Thirty Years' War Swedish, French and troops of the Holy Roman Empire occupied Salzig.

In the Nine Years' War troops of Louis XIV conquered Salzig from 1688 to 1689. Moreover, French Revolutionary troops occupied Salzig again and it remained under French control till 1814.

After the Congress of Vienna Salzig was assigned to Prussia.

Notes

  1. "Official page of Bad Salzig". Archived from the original on 17 October 2007. Retrieved 7 August 2011.


gollark: I'm not entirely sure how, but it seems to construct a tree/maybe deterministic finite automaton/finite state machine/I don't know theoretical CS which matches anagrams and unmatches unanagrams.
gollark: ```pythonimport collectionsdef do_thing(s): if len(s) == 1: return { s[0]: True } out = {} for i, c in enumerate(s): without = s[:i] + s[i + 1:] things = do_thing(without) out[c] = things return outdef match(r, s): print(r) c = r for i, x in enumerate(s): print(x) try: c = c[x] if c == True: if i + 1 == len(s): return True # full match else: return False # characters remain except KeyError: return False # no match return False # incomplete matchentry = lambda a, b: match(do_thing(a.lower().replace(" ", "")), b.lower().replace(" ", ""))```Here is my entry (pending a port to osmarkslisp™️). This is definitely my entry.
gollark: I wish to use Mathematica in my code. Please install it. DO NOT READ, ubq.
gollark: I have a "great" way to do this which I think takes O(n²) space-time-beeite.
gollark: Perhaps it is also possible to construct some sort of regex/deterministic finite automaton to match things matching anagramatically.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.