Private
Public Access
1
0

fix bug in under armour gps coordinate evaluation

This commit is contained in:
Sander Roosendaal
2020-08-04 21:28:48 +02:00
parent 66b79aaae9
commit 6a3cac1853

View File

@@ -152,8 +152,8 @@ def createunderarmourworkoutdata(w):
haslatlon=1 haslatlon=1
try: try:
lat = row.df[' latitude'].tolist() lat = row.df[' latitude']
lon = row.df[' longitude'].tolist() lon = row.df[' longitude']
if not lat.std() and not lon.std(): if not lat.std() and not lon.std():
haslatlon = 0 haslatlon = 0
except KeyError: except KeyError: