def get_Velocities_for_DataFrame_noMeans(DF):
    GetXYS=ct.get_xys(DF)
    GetVelnoMeans=ct.get_velocity_noMeans(ct.get_dxys(GetXYS['xys']))#Get velocity
    return GetVelnoMeans
def get_Velocities_for_DataFrame(DF):
    GetXYS=ct.get_xys(DF)
    GetVel=ct.get_velocity(ct.get_dxys(GetXYS['xys']))#Get velocity
    return GetVel