1, 2, 3 OKish, then too slowly and carefully down the hill from #3 towards #4 - maybe directly south avoiding the slow green-dashed area would have been better. A little too much west out on the road after #5. BIG loop and slow walking around #7 - and then while being upset about this mistake pretty bad directions on both #10 and #11.
Iltarastit Luukki
No major mistakes and steady going mostly.
After #21 I was quite slow and careful when crossing the wet bit before #22.
#23 is a fairly good split although I took the safe and easy route.
Down from #23 I meant to go directly south but drifted south-east instead.
Out of #24 could have run directly south-east and not zigzagged to avoid the wet swamp.
Itärastit Uutela
SMPS Fail
Itärastit Salmenkallio
Quite tentatively towards #1, catching the big cliff (yellow arrow) more by luck than skill and from there the control.
On #6 and #7 I tried to avoid the slow green areas but in hindsight my route is too zigzaggy. #9 ran out of steam a bit. #10 is the best split as I crossed the big path as planned and found the control via the big stone and swamp.
#11 is an identification mistake where I mistook a stone lower down for a one upper on the hillside (yellow arrow), resulting in a loop back to the control.
Clock display with Python and Tkinter
On github: https://github.com/aewallin/digiclock
A simple clock display with local time, UTC, date (iso8601 format of course!), MJD, day-of-year, and week number. Useful as a permanent info-display in the lab - just make sure your machines are synced with NTP.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | # use Tkinter to show a digital clock # tested with Python24 vegaseat 10sep2006 # https://www.daniweb.com/software-development/python/code/216785/tkinter-digital-clock-python # http://en.sharejs.com/python/19617 # AW2015-04-24 # added: UTC, localtime, date, MJD, DOY, week from Tkinter import * import time import jdutil # https://gist.github.com/jiffyclub/1294443 root = Tk() root.attributes("-fullscreen", True) # this should make Esc exit fullscrreen, but doesn't seem to work.. #root.bind('',root.attributes("-fullscreen", False)) root.configure(background='black') #root.geometry("1280x1024") # set explicitly window size time1 = '' clock_lt = Label(root, font=('arial', 230, 'bold'), fg='red',bg='black') clock_lt.pack() date_iso = Label(root, font=('arial', 75, 'bold'), fg='red',bg='black') date_iso.pack() date_etc = Label(root, font=('arial', 40, 'bold'), fg='red',bg='black') date_etc.pack() clock_utc = Label(root, font=('arial', 230, 'bold'),fg='red', bg='black') clock_utc.pack() def tick(): global time1 time2 = time.strftime('%H:%M:%S') # local time_utc = time.strftime('%H:%M:%S', time.gmtime()) # utc # MJD date_iso_txt = time.strftime('%Y-%m-%d') + " %.5f" % jdutil.mjd_now() # day, DOY, week date_etc_txt = "%s DOY: %s Week: %s" % (time.strftime('%A'), time.strftime('%j'), time.strftime('%W')) if time2 != time1: # if time string has changed, update it time1 = time2 clock_lt.config(text=time2) clock_utc.config(text=time_utc) date_iso.config(text=date_iso_txt) date_etc.config(text=date_etc_txt) # calls itself every 200 milliseconds # to update the time display as needed # could use >200 ms, but display gets jerky clock_lt.after(20, tick) tick() root.mainloop() |
This uses two small additions to jdutil:
1 2 3 4 5 6 7 | def mjd_now(): t = dt.datetime.utcnow() return dt_to_mjd(t) def dt_to_mjd(dt): jd = datetime_to_jd(dt) return jd_to_mjd(jd) |
Itärastit Roihuvuori
Easy course with lots of running along paths. From #3 I ran towards #15 for a bit before realizing the correct direction towards #4 - worst split. #9 is the best split - no orienteering required, just running. #11 is again slow and would have been faster along the road/path instead of over the hill via #13.
Espoorastit Kauklahti
First 'real' orienteering event for this season - yay!
Good speed at the start with a 7th place overall at control #3. Then the wheel start to rattle at #4-#5-#6 and completely fall off for the last third of the course. No major mistakes - just the engine overheating after overcooking the start... 🙂
Söderkulla 83 km
Espoo 50k
The roads are mostly washed and free of gravel/sand...until about ring-II (13km). There's a new XXL store at around 16km. Some indecision around Espoo center 22-24km with the bike-path not very clearly marked. A quick stop for a drink & snickers just before 40 km, then into Helsinki central park which is now free of snow. Punctured the rear wheel at about 52 km so I had to walk about 2 km home.