This line ran yesterday, but not today:
coord = SkyCoord(ra=df_Gaia_MontWD[‘RA_ICRS’]*u.degree, dec=df_Gaia_MontWD[‘DE_ICRS’]*u.degree, frame=‘icrs’) worked before the image change.
This works for me now:
coord = SkyCoord(ra=df_Gaia_MontWD[‘RA_ICRS’], dec=df_Gaia_MontWD[‘DE_ICRS’], unit=‘deg’)
This is due to Pandas 2.0. A pandas.core.series.Series multiplied by an astropy.units.Unit does not give a Series of Quantity as it used to with Pandas 1.5.2.