def calculate_v_component_value()

in sdap/processors/winddirspeedtouv.py [0:0]


def calculate_v_component_value(direction, speed):
    if direction is numpy.ma.masked or speed is numpy.ma.masked:
        return numpy.ma.masked

    return speed * cos(direction)