Private
Public Access
1
0
This commit is contained in:
2024-08-25 16:03:10 +02:00
parent 95ab30fc17
commit c324c22b1f
2 changed files with 1 additions and 1 deletions

View File

@@ -2302,7 +2302,7 @@ def dataplep(rowdatadf, id=0, inboard=0.88, forceunit='lbs', bands=True, barchar
finish = df['finish']
peakforceangle = df['peakforceangle']
arclength = (inboard - 0.05) * (np.radians(finish) - np.radians(catch))
if arclength.mean() > 0:
if arclength.mean() is not None and arclength.mean() > 0:
drivelength = arclength
else:
drivelength = data['drivelength']

Binary file not shown.