An open API service indexing awesome lists of open source software.

https://github.com/juliaastro/cfitsio.jl

C-style interface to the libcfitsio library.
https://github.com/juliaastro/cfitsio.jl

cfitsio fits

Last synced: 19 days ago
JSON representation

C-style interface to the libcfitsio library.

Awesome Lists containing this project

README

        

# CFITSIO.jl

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaAstro.org/CFITSIO/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaAstro.org/CFITSIO.jl/dev)

[![CI](https://github.com/JuliaAstro/CFITSIO.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/JuliaAstro/CFITSIO.jl/actions/workflows/ci.yml)
[![PkgEval](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/C/CFITSIO.svg)](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/report.html)
[![Coverage](https://codecov.io/gh/JuliaAstro/CFITSIO.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaAstro/CFITSIO.jl)

## C-style interface to CFITSIO functions

- Function names closely mirror the C interface (e.g., `fits_open_file()`).
- Functions operate on `FITSFile`, a thin wrapper for `fitsfile` C struct
(`FITSFile` has concept of "current HDU", as in CFITSIO).
- Note that the wrapper functions *do* check the return status from CFITSIO
and throw an error with the appropriate message.

For more information and usage examples, please visit the [documentation](https://JuliaAstro.github.io/CFITSIO.jl/dev).