https://github.com/simonrw/daskfitsio
Wrapper around `fitsio.ImageHDU` creating a `dask.Array`
https://github.com/simonrw/daskfitsio
Last synced: about 1 year ago
JSON representation
Wrapper around `fitsio.ImageHDU` creating a `dask.Array`
- Host: GitHub
- URL: https://github.com/simonrw/daskfitsio
- Owner: simonrw
- License: mit
- Created: 2016-02-18T15:44:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-18T16:27:22.000Z (over 10 years ago)
- Last Synced: 2025-03-31T04:15:55.186Z (over 1 year ago)
- Language: Python
- Size: 9.77 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
==========
daskfitsio
==========
.. image:: https://travis-ci.org/mindriot101/daskfitsio.svg?branch=master
:target: https://travis-ci.org/mindriot101/daskfitsio
.. image:: https://landscape.io/github/mindriot101/daskfitsio/master/landscape.svg?style=flat
:target: https://landscape.io/github/mindriot101/daskfitsio/master
:alt: Code Health
Wrapper around ``fitsio.ImageHDU`` creating a ``dask.Array``.
Quickstart
----------
.. code-block:: python
>>> with fitsio.FITS(fname) as infile:
... hdu = infile[0]
... data = df.read_hdu(hdu, chunks=(10, 10))
... print(data.mean(axis=1).compute())
...