compute angular distances of the given sky coordinates from the given solar system bodies at the given timestamps and stations
:param coords: list of SkyCoord objects to measure separation
:param timestamps: list of datetimes, e.g. [datetime(2020, 1, 1, 15, 0, 0), datetime(2020, 1, 1, 16, 0, 0)]
:param stations: list of station names, e.g. ["CS002"]
:param bodies: list of solar system bodies, e.g. ['sun', 'moon', 'jupiter']
:return A dict that maps station names to a list with a dict for each given coordinate, which maps each body body to a list of separation angles for each given timestamp.
responses={200:'A JSON object with angular distances of the given sky coordinates from the given solar system bodies at the given timestamps and stations. \n'
'Outer list contains results per coordinate in given order, inner list per timestamp.'},
operation_description="Get angular distances of the given sky coordinates from the given solar system bodies at all given timestamps and stations. \n\n"