Introduction
AstroFITS is a Julia package for reading and writing files in FITS format, a Flexible Image Transport System, widely used in astronomy.
The source code of AstroFITS is on GitHub.
Related software
FITSHeaders.jlis a Julia package used byAstroFITSto efficiently manage FITS header cards. You may readFITSHeadersdocumentation to learn how to deal with FITS header cards when usingAstroFITS.CFITSIOis the standard C library for managing FITS files and is used byAstroFITS.FITSIOis another Julia package for reading/writing with FITS files.FITSIOis also based on theCFITSIOC library. Compared toFITSIO,AstroFITSattempts to be more intuitive and more type-stable.CFITSIO_jllis the Julia artifact providing theCFITSIOC library used by theAstroFITSandFITSIOpackages.