deg90to90array

ssapy.utils.deg90to90array(array_)[source][source]

Normalize an array of angles to the range [0, 90].

This function adjusts angles in an iterable such that they fall within the range [0, 90] using the modulo operation.

Parameters:

array_ (iterable):
  • An iterable (e.g., list, tuple, or numpy array) of angles.

Returns:

list:
  • A list of normalized angles in the range [0, 90].

Example:

deg90to90array([95, 180, 270]) -> [5, 0, 0]