1988 UCI Track Cycling World Championships
The 1988 UCI Track Cycling World Championships were the World Championship for track cycling. They took place in Ghent, Belgium from 21 to 25 August 1988.[1] Eight events were contested, 7 for men (5 for professionals, 2 for amateurs) and 1 for women with a demonstration non-Championship points race for women.
Venue | Ghent, Belgium |
---|---|
Date(s) | 21–25 August 1988 |
Velodrome | Blaarmeersen |
Events | 9 |
Medal summary
Event | Gold | Silver | Bronze | |||
---|---|---|---|---|---|---|
Men's Elite Events | ||||||
Men's keirin |
Claudio Golinelli | Ottavio Dazzan | Michel Vaarten | |||
Men's sprint |
Stephen Pate | Claudio Golinelli | Nobuyuki Tawara | |||
Men's individual pursuit |
Lech Piasecki | Tony Doyle | Jesper Worre | |||
Men's points race |
Daniel Wyder | Adriano Baffi | Michael Marcussen | |||
Men's motor-paced |
Danny Clark | Constant Tourné | Walter Brugna | |||
Men's Amateur Events | ||||||
Men's motor-paced |
Vincenzo Colamartino | Roland Königshofer | Roland Renn | |||
Men's tandem |
Fabrice Colas Frédéric Magné | Greil Hans-Jürgen Uwe Butchmann | Jiří Illek Lubomír Hargaš | |||
Women's Events | ||||||
Women's individual pursuit |
Jeannie Longo |
Barbara Ganz |
Mindee Mayfield | |||
Women's points race |
Sally Hodge |
Barbara Ganz |
Monique de Bruin |
Medal table
Rank | Nation | Gold | Silver | Bronze | Total |
---|---|---|---|---|---|
1 | 2 | 0 | 0 | 2 | |
2 | 0 | 0 | 2 | ||
3 | 1 | 2 | 1 | 4 | |
4 | 1 | 2 | 0 | 3 | |
5 | 1 | 1 | 0 | 2 | |
6 | 1 | 0 | 0 | 1 | |
7 | 0 | 1 | 1 | 2 | |
8 | 0 | 1 | 0 | 1 | |
0 | 1 | 0 | 1 | ||
10 | 0 | 0 | 2 | 2 | |
11 | 0 | 0 | 1 | 1 | |
0 | 0 | 1 | 1 | ||
0 | 0 | 1 | 1 | ||
0 | 0 | 1 | 1 | ||
Totals (14 nations) | 8 | 8 | 8 | 24 |
gollark: It's in unsafe™ C, so you could make a mistake and doom all mankind.
gollark: Well, it's generic, obviously safer, and appears to involve less weird pointer meddling.
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
See also
References
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.