Skip to content

Commit 77e9fca

Browse files
committed
style
1 parent 40c3d34 commit 77e9fca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

astrocut/asdf_cutout.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ def fits_cutouts(self) -> List[fits.HDUList]:
159159
primary_hdu.header.extend([('ORIGIN', 'STScI/MAST', 'institution responsible for creating this file'),
160160
('DATE', str(date.today()), 'file creation date'),
161161
('PROCVER', __version__, 'software version'),
162-
('RA_OBJ', self._coordinates.ra.value, 'right ascension of cutout center (deg)'),
163-
('DEC_OBJ', self._coordinates.dec.value, 'declination of cutout center (deg)')])
162+
('RA_OBJ', self._coordinates.ra.deg, '[deg] right ascension'),
163+
('DEC_OBJ', self._coordinates.dec.deg, '[deg] declination')])
164164

165165
# Build ImageHDU with cutout data and WCS
166166
image_hdu = fits.ImageHDU(data=cutout.data, header=cutout.wcs.to_header(relax=True))

0 commit comments

Comments
 (0)