Function parseSiUnitVelocityValue

  • Parses a given SI Unit Velocity value to extract its scale, type, and unit symbol.

    This function decodes the given value (which represents an SI unit velocity) and returns an object containing the scale factor, unit type (minute or second), and the corresponding unit symbol. The value is validated against predefined SI unit velocity specifications, and errors are thrown if the numerator or denominator are invalid.

    Returns

    An object containing the parsed scale, type, unit, and value:

    • scale: The scale factor (e.g., 1e12, 1e-3) based on the prefix.
    • type: The type of unit, either 'minute' or 'second'.
    • unit: The unit symbol corresponding to the velocity.
    • value: The original SI Unit Velocity value.

    Throws

    Throws an error if the numerator or denominator values are invalid for SI Unit Velocity.

    Parameters

    • value: number

      The SI Unit Velocity value to be parsed.

    Returns SiUnitVelocity

Generated using TypeDoc