Popularity
2.8
Growing
Activity
7.6
-
2
3
1

Monthly Downloads: 26
Programming language: Haskell
License: BSD 2-clause "Simplified" License
Tags: Science     Scientific    
Latest version: v0.1.0

fits-parse alternatives and similar packages

Based on the "Scientific" category.
Alternatively, view fits-parse alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of fits-parse or a related project?

Add another 'Scientific' Package

README

Build Status Documentation Status

fits-parse

FITS - Flexible Image Transport System

This project focuses on building a Haskell native parser for FITS files. This file format is used widely by Astronomers and those analyzing astronomical data. There is currently a C library called fitsio and a Haskell wrapper for the library. However, this library can be cumbersome to use and the Haskell bindings are very thin and close to the metal of the fitsio library. This project focuses on providing good Haskell bindings and datatypes by implementing the FITS spec directly in Haskell, without the need for a C library. The reference for this work comes from NASA in the US. Conformance is currently limited to the Version 4.0 specification with no extensions. See the NASA site for more details and to download the spec.

Reading Documentation

The readthedocs pages contain documentation for the examples. The API Haddock docs for the master branch are on github.io, release documentation will be on Hackage.

You can build the Haddocks for offline use with stack build --haddock.

RTD Building

To build the readthedocs docs you need sphinx. To install it locally for a single user use pip with the --user option to install sphinx and sphinx-rtd-theme. Alternatively, on Ubuntu you can install the python3-sphinx and python3-sphinx-rtd-theme package.