1991 Hessian state election
The 1991 Hessian state election was held on 20 January 1991 to elect the members of the Landtag of Hesse. The incumbent coalition government of the Christian Democratic Union (CDU) and Free Democratic Party (FDP) led by Minister-President Walter Wallmann was defeated. The Social Democratic Party (SPD) narrowly became the most popular party, but tied with the CDU in number of seats. The SPD subsequently formed a coalition with The Greens, and SPD leader Hans Eichel became Minister-President.
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
All 110 seats of the Landtag of Hesse 56 seats needed for a majority | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Turnout | 2,974,872 (70.8%) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Parties
The table below lists parties represented in the previous Landtag of Hesse.
Name | Ideology | Leader(s) | 1987 result | |||
---|---|---|---|---|---|---|
Votes (%) | Seats | |||||
CDU | Christian Democratic Union of Germany Christlich Demokratische Union Deutschlands |
Christian democracy | Walter Wallmann | 42.1% | 47 / 110 | |
SPD | Social Democratic Party of Germany Sozialdemokratische Partei Deutschlands |
Social democracy | Hans Eichel | 40.2% | 44 / 110 | |
Grüne | The Greens Die Grünen |
Green politics | Iris Blaul Joschka Fischer |
9.4% | 10 / 110 | |
FDP | Free Democratic Party Freie Demokratische Partei |
Classical liberalism | Wolfgang Gerhardt | 7.8% | 9 / 110 |
Election result
Summary of the 20 January 1991 election results for the Landtag of Hesse
Party | Votes | % | +/- | Seats | +/- | Seats % | |
---|---|---|---|---|---|---|---|
Social Democratic Party (SPD) | 1,214,909 | 40.8 | 46 | 41.8 | |||
Christian Democratic Union (CDU) | 1,195,965 | 40.2 | 46 | 41.8 | |||
Alliance 90/The Greens (Grüne) | 262,161 | 8.8 | 10 | ±0 | 9.1 | ||
Free Democratic Party (FDP) | 220,115 | 7.4 | 8 | 7.3 | |||
The Republicans (REP) | 49,320 | 1.7 | 0 | ±0 | 0 | ||
Others | 32,402 | 1.1 | 0 | ±0 | 0 | ||
Total | 2,974,872 | 100.0 | 110 | ±0 | |||
Voter turnout | 10.8 |
Sources
gollark: I've made a bit of a frontend for my search engine thing. Though it can't actually do search yet, only crawl/index/whatever pages.
gollark: Basically, if I want to run a search it just goes `SELECT * FROM page_tokens WHERE token = 'one token in search query'` or something like that, and it now has a list of pages with the right token, and SQLite can execute this query relatively fast.
gollark: I mean, as far as I can tell there isn't really a faster *and* more storage-efficient way to do search than the inverted-index page_tokens thing.
gollark: ```sqlCREATE TABLE crawl_queue ( id INTEGER PRIMARY KEY, url TEXT NOT NULL UNIQUE, lockTime INTEGER, added INTEGER NOT NULL, referrer TEXT);CREATE TABLE pages ( id INTEGER PRIMARY KEY, url TEXT NOT NULL UNIQUE, rawContent BLOB NOT NULL, rawFormat TEXT NOT NULL, textContent TEXT NOT NULL, updated INTEGER NOT NULL);CREATE TABLE page_tokens ( id INTEGER PRIMARY KEY, page INTEGER NOT NULL REFERENCES pages(id), token TEXT NOT NULL, weight REAL NOT NULL);CREATE TABLE links ( id INTEGER PRIMARY KEY, toURL TEXT NOT NULL, fromURL TEXT NOT NULL, lastSeen INTEGER NOT NULL, UNIQUE (toURL, fromURL))```Here is the database.
gollark: To be fair, the text content field isn't that necessary, as for search it uses the page_tokens table anyway and it can be rebuilt from the HTML if I need it.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.