Metadata-Version: 1.2
Name: getCalspec
Version: 0.1.0
Summary: UNKNOWN
Home-page: https://github.com/LSSTDESC/getCalspec
Author: J. Neveu
Author-email: jeremy.neveu@universite-paris-saclay.fr
License: BSD
Description: # getCalspec
        Python package to load Calspec spectra.
        
        The main function query the Calspec table located in `tables/calspec.pkl` 
        to download spectrum FITS files from STSC archive https://www.stsci.edu/hst/instrumentation/reference-data-for-calibration-and-tools/astronomical-catalogs/calspec.html
        
        Example:
        ```
        test = is_calspec("eta1 dor")
        c = Calspec("eta1 dor")
        c.get_spectrum_fits()  # download the fits file
        c.get_spectrum_table()  # download and return an Astropy table
        c.get_spectrum_numpy()  # download and return a dictionnary of numpy arrays with units
        c.plot_spectrum()  # download and plot the spectrum
        ```
        
        Rebuild the tables:
        ```
        from getCalspec.rebuild import rebuild_tables, rebuild_cache
        rebuild_tables()
        rebuild_cache()
        ```
Platform: UNKNOWN
Requires-Python: >=3.7
