ICF Canoe Polo World Championships
The ICF Canoe Polo World Championships are international competitions in the sport of canoe polo. They have taken place every two years since 1994, in a different venue each time. Medals are awarded by national team; the German team has won the most medals in total.
Men
Year | Host | Gold | Silver | Bronze |
---|---|---|---|---|
1994 Details |
Sheffield, United Kingdom |
Australia |
Germany |
United Kingdom |
1996 Details |
Adelaide, Australia |
Australia |
Italy |
Germany |
1998 Details |
Aveiro, Portugal |
Australia |
United Kingdom |
Italy |
2000 Details |
São Paulo, Brazil |
United Kingdom |
Netherlands |
Germany |
2002 Details |
Essen, Germany |
United Kingdom |
Netherlands |
Germany |
2004 Details |
Miyoshi, Japan |
Netherlands |
Germany |
United Kingdom |
2006 Details |
Amsterdam, Netherlands |
France |
Italy |
Netherlands |
2008 Details |
Edmonton, Canada |
Netherlands |
France |
Italy |
2010 Details |
Milan, Italy |
France |
Germany |
Italy |
2012 [1] Details |
Poznań, Poland |
Netherlands |
Germany |
France |
2014 [2] Details |
Thury-Harcourt, France |
France |
Germany |
Spain |
2016 [3] Details |
Syracuse, Italy |
Italy |
France |
Spain |
2018 Details |
Welland, Canada |
Germany |
Italy |
Spain |
2020 Details |
Rome, Italy |
|||
2022 Details |
Saint-Omer, France |
Women
Year | Host | Gold | Silver | Bronze |
---|---|---|---|---|
1994 Details |
Sheffield, United Kingdom |
Australia |
Germany |
France |
1996 Details |
Adelaide, Australia |
United Kingdom |
Australia |
Germany |
1998 Details |
Aveiro, Portugal |
Australia |
United Kingdom |
France |
2000 Details |
São Paulo, Brazil |
Germany |
United Kingdom |
France |
2002 Details |
Essen, Germany |
Germany |
France |
Australia |
2004 Details |
Miyoshi, Japan |
United Kingdom |
Germany |
France |
2006 Details |
Amsterdam, Netherlands |
Germany |
New Zealand |
Netherlands |
2008 Details |
Edmonton, Canada |
United Kingdom |
Germany |
France |
2010 Details |
Milan, Italy |
Great Britain |
Germany |
France |
2012 [1] Details |
Poznań Poland |
Germany |
Great Britain |
Australia |
2014 [2] Details |
Thury-Harcourt, France |
Germany |
Great Britain |
France |
2016 [3] Details |
Syracuse, Italy |
New Zealand |
Germany |
France |
2018 Details |
Welland, Canada |
Germany |
Great Britain |
Italy |
2020 Details |
Rome, Italy |
|||
2022 Details |
Saint-Omer, France |
Men Under-21
Year | Host | Gold | Silver | Bronze |
---|---|---|---|---|
2002 | Essen, Germany |
Germany |
Netherlands |
Italy |
2004 | Miyoshi, Japan |
Spain |
Italy |
Japan |
2006 | Amsterdam, Netherlands |
France |
Netherlands |
Spain |
2008 | Edmonton, Canada |
Great Britain |
France |
Italy |
2010 | Milan, Italy |
Germany |
France |
Great Britain |
2012 [1] Details |
Poznań, Poland |
France |
Great Britain |
Germany |
2014 [2] Details |
Thury-Harcourt, France |
France |
Denmark |
Germany |
2016 [3] Details |
Syracuse, Italy |
Great Britain |
Germany |
Italy |
2018 Details |
Welland, Canada |
Great Britain |
Germany |
Italy |
2020 Details |
Rome, Italy |
|||
2022 Details |
Saint-Omer, France |
Women Under-21
Year | Host | Gold | Silver | Bronze |
---|---|---|---|---|
2002 | Essen, Germany |
Germany |
Poland |
Japan |
2010 | Milan, Italy |
France |
Germany |
Great Britain |
2012 [1] Details |
Poznań, Poland |
Germany |
France |
New Zealand |
2014 [2] Details |
Thury-Harcourt, France |
Germany |
France |
New Zealand |
2016 [3] Details |
Syracuse, Italy |
Germany |
Poland |
New Zealand |
2018 Details |
Welland, Canada |
Germany |
Poland |
New Zealand |
2020 Details |
Rome, Italy |
|||
2022 Details |
Saint-Omer, France |
All-Time Medal Table
Country | Gold | Silver | Bronze |
---|---|---|---|
Germany |
11 | 14 | 6 |
Great Britain |
8 | 7 | 2 |
France |
5 | 5 | 9 |
Australia |
5 | 1 | 2 |
Netherlands |
3 | 2 | 2 |
Italy |
1 | 3 | 6 |
New Zealand |
1 | 1 | 4 |
Poland |
2 | ||
Denmark |
1 | ||
Spain |
3 |
gollark: It should be okay with regexes or something non-turing-complete.
gollark: Hold on, I can probably make a much nicer one.
gollark: It's kind of bad.
gollark: ```python#!/bin/env python3chars = [chr(n) for n in range(126)]firstchar = chars[0]lastchar = chars[len(chars) - 1]def increment_char(character): return chr(ord(character) + 1)def old_increment_string(string_to_increment): reversed_string = list(reversed(string_to_increment)) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed(reversed_string)))def increment_string(to_increment): reversed_string = list(to_increment) # Reverse the string for easier work. for rindex, char in enumerate(reversed_string): if char == lastchar: # If we can't increment this char further, try the next ones. reversed_string[rindex] = firstchar # Set the current char back to the first one. reversed_string[rindex + 1] = increment_char(reversed_string[rindex + 1]) # Increment the next one along. else: # We only want to increment ONE char, unless we need to "carry". reversed_string[rindex] = increment_char(reversed_string[rindex]) break return ''.join(list(reversed_string))def string_generator(): length = 0 while 1: length += 1 string = chars[0] * length while True: try: string = increment_string(string) except IndexError: # Incrementing has gone out of the char array, move onto next length break yield string```
gollark: Except it enumerates all possible ASCII strings instead.
Sources
References
- "ICF CANOE POLO - Pozna 2012". Kayakpl.com. Archived from the original on 11 July 2016. Retrieved 5 August 2018.
- "Archived copy". Archived from the original on 2014-08-14. Retrieved 2014-08-14.CS1 maint: archived copy as title (link)
- "Canoe Polo World Championships - Syracuse 2016". Canoepolosyracuse2016.com. Archived from the original on 5 August 2018. Retrieved 5 August 2018.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.