Morten Risager

Morten Risager (born 30 September 1987 in Denmark) – a Danish former speedway rider.

He earned his Speedway licence in 2003.

He announced his retirement in January 2018.[1]

Clubs career

Speedway Grand Prix

2007 Speedway Grand Prix Final Championship standings
(Riding No 18)
Race no. Grand Prix Pos. Pts. Heats Draw No
4 /11 Danish SGP 16 2 (0,2) 18
  permanent speedway rider
  wild card, track reserve or qualified reserve
  rider not classified (track reserve who did not start)

Honours

  • Individual U-21 World Championship:
    • 2005 – track reserve
    • 2007 – 8 place (8 points)
  • Team U-21 World Championship:
    • 2005Bronze medal (10 points)
    • 2006Bronze medal (4 points)
    • 2007 – 5 place – 2nd in Semi-Final B (9 points)
    • 2008Silver medal (4 points)
  • Individual U-19 European Championship:
    • 2004Bronze medal
    • 2006 – injury before Final
  • Individual Danish Championship:
    • 2004 – 10 place
    • 2005 – 6 place
  • Individual U-21 Danish Championship:
    • 2003 – 9 place
    • 2004 – Bronze medal
    • 2005 – Silver medal
    • 2006 – Silver medal
gollark: oh dear.
gollark: Well, the outsourced `parsedatetime` stuff can probably do it.
gollark: Good luck.
gollark: Fine.```python# from here: https://github.com/Rapptz/RoboDanny/blob/18b92ae2f53927aedebc25fb5eca02c8f6d7a874/cogs/utils/time.pyshort_timedelta_regex = re.compile("""(?:(?P<years>[0-9]{1,8})(?:years?|y))? # e.g. 2y(?:(?P<months>[0-9]{1,8})(?:months?|mo))? # e.g. 2months(?:(?P<weeks>[0-9]{1,8})(?:weeks?|w))? # e.g. 10w(?:(?P<days>[0-9]{1,8})(?:days?|d))? # e.g. 14d(?:(?P<hours>[0-9]{1,8})(?:hours?|h))? # e.g. 12h(?:(?P<minutes>[0-9]{1,8})(?:minutes?|m))? # e.g. 10m(?:(?P<seconds>[0-9]{1,8})(?:seconds?|s))? # e.g. 15s """, re.VERBOSE)def parse_short_timedelta(text): match = short_timedelta_regex.fullmatch(text) if match is None or not match.group(0): raise ValueError("parse failed") data = { k: int(v) for k, v in match.groupdict(default=0).items() } return datetime.datetime.utcnow() + relativedelta(**data)cal = parsedatetime.Calendar()def parse_humantime(text): time_struct, parse_status = cal.parse(text) if parse_status == 1: return datetime.datetime(*time_struct[:6]) else: raise ValueError("parse failed")def parse_time(text): try: return datetime.datetime.strptime(text, "%d/%m/%Y") except: pass try: return parse_short_timedelta(text) except: pass try: return parse_humantime(text) except: pass raise ValueError("could not parse time")```
gollark: ... no.

See also

  • Denmark speedway team

References

  1. "Risager Retires", speedwaygb.co, 3 January 2018. Retrieved 3 January 2018


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.