美文网首页
根据U、V计算风向

根据U、V计算风向

作者: Aerosols | 来源:发表于2020-05-17 01:51 被阅读0次
    result=[]
    for y,x in zip(dm['Uy_12m'].values,dm['Ux_12m'].values):
        tmp=270-math.atan2(y,x)*180/math.pi
        wd=np.mod(tmp,360)
        result.append(wd)
    

    相关文章

      网友评论

          本文标题:根据U、V计算风向

          本文链接:https://www.haomeiwen.com/subject/mutjohtx.html