Closed rapoliveira closed 10 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Comparison is base (
dff8bc5
) 83.53% compared to head (50e9b4e
) 83.59%.
:exclamation: Your organization needs to install the Codecov GitHub app to enable full functionality.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
The input for the
Coordinates
class is now checked in the function_validate_input()
to forbid the Galactic frame. Only'icrs', 'fk4', 'fk5'
frames are allowed, as well as instances of their classes.For this reason, any transformation to different frames need to be done transforming to
SkyCoord
first, e.g.:gal_l = SkyCoord(self).galactic.l
ecl_l = SkyCoord(self).transform_to(GeocentricTrueEcliptic).lon