Private
Public Access
1
0
This commit is contained in:
2024-09-30 09:00:30 +02:00
parent f21881828c
commit bb0d07df72
4 changed files with 15 additions and 3 deletions

View File

@@ -1107,6 +1107,7 @@ def handle_check_race_course(self,
row.calc_dist_from_gps()
rowdata = row.df
rowdata['cum_dist'] = rowdata['gps_dist_calculated']
row.df.to_csv("~/Downloads/lagoon.csv")
try:
_ = rowdata[' latitude']
@@ -1174,6 +1175,7 @@ def handle_check_race_course(self,
startseconds = []
endseconds = []
for startt in entrytimes:
logmessage = 'Path starting at {t}'.format(t=startt)
dologging(logfile, logmessage)
@@ -1210,6 +1212,7 @@ def handle_check_race_course(self,
'endsecond': endseconds,
})
records = records.loc[records['coursecompleted'], : ]
if len(records):