deg0to360array
- ssapy.utils.deg0to360array(array_)[source][source]
Normalize an array of angles in degrees to the range [0, 360].
Parameters:
- array_ (iterable):
An iterable (e.g., list, tuple, or numpy array) of angles in degrees.
Returns:
- list:
A list of normalized angles in the range [0, 360].
Example:
deg0to360array([-10, 370, 720]) -> [350, 10, 0]