Python library to manipulate Integral Field Unit (IFU) cubes
using pip:
pip install pyifu
using git:
git clone https://github.com/MickaelRigault/pyifu.git
cd pyifu
python setup.py install
- propobject (installed automatically if you used pip otherwise
pip install propobject
) - astropy >= 1.3
To load a Spectrum file:
from pyifu import load_spectrum
spec = load_spectrum(SPECTRUMFILE)
To load a IFU Cube file:
from pyifu import load_cube
cube = load_cube(CUBEFILE)