Ecosyste.ms: Awesome
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: about 2 months ago
JSON representation
C-style interface to the libcfitsio library.
- Host: GitHub
- URL: https://github.com/juliaastro/cfitsio.jl
- Owner: JuliaAstro
- License: mit
- Created: 2020-06-05T00:43:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-06T02:40:13.000Z (6 months ago)
- Last Synced: 2024-10-06T07:02:19.446Z (3 months ago)
- Topics: cfitsio, fits
- Language: Julia
- Homepage: http://juliaastro.org/CFITSIO.jl/
- Size: 561 KB
- Stars: 9
- Watchers: 6
- Forks: 5
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CFITSIO.jl
[![Build Status](https://github.com/JuliaAstro/CFITSIO.jl/workflows/CI/badge.svg)](https://github.com/JuliaAstro/CFITSIO.jl/actions)
[![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)[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaAstro.github.io/CFITSIO.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaAstro.github.io/CFITSIO.jl/dev)## 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).