Metadata-Version: 2.1
Name: pyoifits
Version: 0.3
Summary: OIFITS (Data Exchange Standard for Optical Interferometry, A&A 597, A8, 2017)
Home-page: UNKNOWN
Author: Régis Lachaume
Author-email: regis.lachaume@gmail.com
License: LICENSE.txt
Description: ## Purpose
        
        Read and manipulate Optical Interferometry FITS files.  For a definition of
        the standards 
        * version 2: Duvert at al. (2017), A&A 597, A8 ([abstract](https://ui.adsabs.harvard.edu/abs/2017A%26A...597A...8D/abstract "ADS link")) ([pre-print](https://arxiv.org/pdf/1510.04556 "PDF on arxiv"))
        * version 1: Pauls et al. (2005), PASP 117, 1255 ([abstract](https://ui.adsabs.harvard.edu/abs/2005PASP..117.1255P/abstract "ADS link")) ([pre-print](https://arxiv.org/pdf/astro-ph/0508185 "PDF on arxiv"))
        
        ## Installation
        
        Site-wide installation will be performed with `sudo -H pip3 install oifits` on unix-like systems.
        
        At a user level, within a [virtual environment](https://docs.python.org/3/library/venv.html "venv package"), `pip3 install oifits`. 
        
        ## Short example
        
        Read and merge to OIFITS datasets and tranform to a standard [`astropy`](https://www.astropy.org) table.
            
        ```python
        
        import oifits
        
        data1 = oifits.read('file1.fits')
        data2 = oifits.read('file2.fits')
        
        data = data1 + data2
        
        tab = data.to_table()
        ```
        
        There is also a short [demo](https://github.com/loqueelvientoajuarez/oifits/blob/master/demo/intro.ipynb "Jupyter notebook demo").
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 2 - Pre-Alpha 
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: License :: Public Domain
Requires-Python: >=3.8
Description-Content-Type: text/markdown
