Metadata-Version: 2.1
Name: dafits
Version: 0.0.2
Summary: Read FITS files in Dask Arrays.
Home-page: https://github.com/AlecThomson/da-fits
Author: Alec Thomson
Author-email: alec.thomson@csiro.au
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: dask
Requires-Dist: astropy
Requires-Dist: fitsio


# da-fits

Read FITS files into Dask Arrays. Currently a very simple implementation.

Inspired by:
- https://github.com/sunpy/sunpy/issues/2715
- https://github.com/ska-sa/xarray-fits

## Example usage

```python
import dafits

# Use astropy
dafits.da_from_fits('/path/to/file.fits')

# Use FITSIO -- can be faster than astropy
dafits.da_from_fitsio('/path/to/file.fits')
```


