diff --git a/astropy/coordinates/coordsystems.py b/astropy/coordinates/coordsystems.py index f1920831f193..d156c12fdb3d 100644 --- a/astropy/coordinates/coordsystems.py +++ b/astropy/coordinates/coordsystems.py @@ -49,9 +49,9 @@ def __init__(self, *args, **kwargs): def __eq__(self, other): try: - return (self.latangle == other.latangle and - self.lonangle == other.lonangle and - self.distance == other.distance and + return (np.all(self.latangle == other.latangle) and + np.all(self.lonangle == other.lonangle) and + np.all(self.distance == other.distance) and self.equinox == other.equinox) except AttributeError: return False