.. SpeX Prism Library Analysis Toolkit documentation master file, created by sphinx-quickstart on Sat Jul 11 20:07:28 2015. .. _`SpeX Prism Library`: http://www.browndwarfs.org/spexprism .. _`SPL`: http://www.browndwarfs.org/spexprism .. _`pip`: https://pip.pypa.io/en/stable/ SPLAT: The SpeX Prism Library Analysis Toolkit =============================================== SPLAT is a python-based spectral access and analysis package designed to interface with the `SpeX Prism Library`_ (`SPL`_), an online repository of over 3,000 low-resolution, near-infrared spectra, primarily of low-temperature stars and brown dwarfs. It is built on common python packages such as `astropy `_, `astroquery `_, `emcee `_, `matplotlib `_, `numpy `_, `pandas `_, `scipy `_, and others. SPLAT tools allow you to: * search the SpeX Prism Library for spectral data and source information; * access and analyze publically-available spectra contained in it; * analyze your own spectral data from SpeX and other instruments; * perform basic spectral analyses such as type classification, gravity classification, index measurement, spectrophotometry, reddening, blended light analysis, and basic math operations; * access atmosphere models and perform fits to spectral data; * transform observables to physical parameters using evolutionary models; * use published empirical trends between spectral type, absolute magnitudes, colors, luminosities, effective temperatures, and others; * access online data repositories through wrappers to `astroquery `_ * simulate very low mass star and brown dwarf populations by combining spatial, evolutionary, and observational properties; and * plot, tabulate, and publish your results. .. note:: Note that many features in SPLAT continue to be in development. Help us improve the code by reporting bugs (and solutions!) to our github site, `https://github.com/aburgasser/splat `_. Installation and Dependencies ----------------------------- SPLAT should be cloned from the github site `https://github.com/aburgasser/splat `_. which is updated on a regular basis. .. warning:: At this time please do not install splat using `pip`_, as this is an outdated version of SPLAT that is no longer supported. Once you've downloaded the code and data, you will need to add the SPLAT top-level directory to the environment variables ``SPLAT_PATH`` and ``PYTHONPATH`` (and optionally to your system ``PATH``). More detailed instructions are on the `installation `_ page. SPLAT has core dependencies on the following packages: * `astropy `_ * `astroquery `_ * `bokeh `_ (for SPLAT web interface only) * `corner `_ (for model fitting only) * `emcee `_ (for model fitting only) * `flask `_ (for SPLAT web interface only) * `matplotlib `_ * `numpy `_ * `pandas `_ * `requests `_ * `scipy `_ Using SPLAT ----------- .. _`Spectrum`: splat.html?highlight=spectrum#the-splat-spectrum-object .. _`getSpectrum()`: api.html#splat.getSpectrum .. _`fluxCalibrate()`: api.html#splat.Spectrum.fluxCalibrate .. _`plot()`: api.html#splat.Spectrum.plot .. _`plotSpectrum()`: api.html#splat.plot.plotSpectrum .. _`measureIndex()`: api.html#splat.measureIndex .. _`measureIndexSet()`: api.html#splat.measureIndexSet .. _`classifyGravity()`: api.html#splat.classifyGravity .. _`classifyByXXX`: api.html#spectral-classification .. _`compareSpectra()`: api.html#splat.compareSpectra .. _`modelFitMCMC()`: api.html#splat.model.modelFitMCMC SPLAT is organized into a series of modules based on core functionalities: * `splat.core `_: core functionalities, including index measurement, database access and classification * `splat.citations `_: biblographic/bibtex routines * splat.database: access the spectral and source databases, as well as online resources through astroquery * `splat.empirical `_: empirical conversion relations * `splat.evolve `_: access to evolutionary models * `splat.model `_: access to spectral models and model-fitting routines * `splat.photometry `_: spectrophotometry routines and filter access * `splat.plot `_: plotting and visualization routines * `splat.simulate `_: population simulation routines * splat.utilities: additional routines for general analysis * splat.web: SPLAT's web interface (in development) SPLAT has been tested on both Python 2.7 and 3.0-3.11, and is best used in `ipython` or `jupyter notebook`. All of the necessary data is included in the github package, so you don't need to be online to run most programs. Some Examples ~~~~~~~~~~~~~ The best way to read in a spectrum is to use `getSpectrum()`_, which takes a number of search keywords and returns a list of `Spectrum`_ objects: >>> import splat >>> splist = splat.getSpectrum(shortname='0415-0935') Retrieving 1 file >>> splist = splat.getSpectrum(name='TWA30A') Retrieving 3 files >>> splist = splat.getSpectrum(opt_spt=['L2','L5'],jmag=[12,13]) Retrieving 5 files In each case, splist is a list of `Spectrum`_ objects, each a container of various aspects of each spectrum and its source properties. For example, selecting the first spectrum, >>> splist[0] SPEX-PRISM spectrum of 2MASSW J0036159+182110 ``sp.wave`` gives the wavelengths of this spectrum, ``sp.flux`` the flux values, and ``sp.noise`` the flux uncertainty. A summary of the `Spectrum`_ object can be accessed using ``sp.info()``. >>> splist[0].info() SPEX-PRISM spectrum of 2MASSW J0036159+182110 Airmass = nan Source designation = J00361617+1821104 Median S/N = 274 SpeX Classification = L2.0 Spectrum key = 10249, Source key = 10068 If you use these data, please cite: Burgasser, A. J. et al. (2008, Astrophysical Journal, 681, 579-593) bibcode: 2008ApJ...681..579B History: SPEX-PRISM spectrum successfully loaded You can also read in your own spectrum by passing a filename >>> sp = splat.Spectrum(filename='PATH_TO/myspectrum.fits') Both fits and ascii (tab or csv) data formats are supported, but files should ideally conform to the following data format standard: * column 1: wavelength, assumed in microns * column 2: flux in f_lambda units * column 3: (optional) flux uncertainty in f_lambda units. There are a few built-in readers for specific data formats. To flux calibrate a spectrum, use the `Spectrum`_ object's built in `fluxCalibrate()`_ method: >>> sp = splat.getSpectrum(shortname='0415-0935')[0] >>> sp.fluxCalibrate('2MASS J',14.0) To display the spectrum, use the Spectrum object's `plot()`_ function >>> sp.plot() or the splat.plot routine `plotSpectrum()`_ : >>> import splat.plot as splot >>> splot.plotSpectrum(sp) You can save your spectrum by adding a filename: >>> splot.plotSpectrum(sp,file='spectrum.pdf') You can also compare multiple spectra: >>> sp1 = splat.getSpectrum(shortname='0415-0935')[0] >>> sp2 = splat.getSpectrum(shortname='1217-0311')[0] >>> splot.plotSpectrum(sp1,sp2,colors=['k','r']) `plotSpectrum()`_ and related routines have many extras to label features, plot uncertainties, indicate telluric absorption regions, make multi-panel and multi-page plots of lists of spectra, plot batches of spectra, etc. Be sure to look through the `splat.plot`_ subpackage for more details. SPLAT's primary purpose is to allow the analysis of ultracool dwarf spectra. * To measure spectral indices, use `measureIndex()`_ or `measureIndexSet()`_: >>> sp = splat.getSpectrum(shortname='0415-0935')[0] >>> value, error = splat.measureIndex(sp,[1.14,1.165],[1.21,1.235],method='integrate') >>> indices = splat.measureIndexSet(sp,set='testi') The last line returns a dictionary, whose value,error pair can be accessed by the name of the index: >>> print(indices['sH2O-J']) # returns value, error * You can also determine the gravity classification of a source following `Allers & Liu (2013) `_ using `classifyGravity()`_: >>> sp = splat.getSpectrum(young=True, lucky=True)[0] >>> print(splat.classifyGravity(sp)) # returned 'VL-G' * To classify a spectrum, use the various `classifyByXXX`_ methods: >>> sp = splat.getSpectrum(shortname='0415-0935')[0] >>> spt,unc = splat.classifyByIndex(sp,set='burgasser') >>> spt,unc = splat.classifyByStandard(sp,spt=['T5','T9']) >>> result = splat.classifyByTemplate(sp,spt=['T6','T9'],nbest=5) The last line returns a dictionary containing the best 5 template matches. * To compare a spectrum to another spectrum or a model, use `compareSpectra()`_ : >>> import splat.model as spmod >>> mdl = spmod.loadModel(teff=720,logg=4.8,set='btsettl') # loads a BTSettl08 model >>> sp = splat.getSpectrum(shortname='0415-0935')[0] >>> chi,scale = splat.compareSpectra(sp,mdl) >>> mdl.scale(scale) >>> splat.plotSpectrum(sp,mdl,colors=['k','r'],legend=[sp.name,mdl.name]) You can shortcut the last three lines using the ``plot`` keyword: >>> chi,scale = splat.compareSpectra(sp,mdl,plot=True) * There are also codes **still in development** to fit models directly to spectra: `modelFitGrid()`_, `modelFitMCMC()`_, and `modelFitEMCEE()`_: >>> import splat.model as spmod >>> sp = splat.getSpectrum(shortname='0415-0935')[0] >>> sp.fluxCalibrate('2MASS J',14.49,absolute=True) >>> nbest = 5 >>> result1 = splat.modelFitGrid(sp,set='btsettl') >>> result2 = splat.modelFitMCMC(sp,set='btsettl',initial_guess=[800,5.0,0.],nsamples=300,step_sizes=[50.,0.5,0.]) >>> result3 = splat.modelFitEMCEE(sp,set='btsettl',initial_guess=[800,5.0,0.],nwalkers=12,nsamples=500) The outputs of all of these fitting functions is a dictionary or list of dictionaries containing the parameters of the best-fitting models; there are also several diagnostic plots produced depending on the routine. View the model fitting page for more details. All of these routines have many options worth exploring, and which are (increasingly) documented on this website. If there are capabilities you need, please suggest them to aburgasser@ucsd.edu, or note it in the "Issues" link on our `github site `_. Citing SPLAT and its data ------------------------- If you use SPLAT tools for your research, please cite Burgasser et al. (2017, ASInC 14, 7) [`NASA ADS `_]. In addition, if you use data contained in SPLAT or the SpeX Prism Library, please be sure to cite the original spectral data source, which can be accessed from the Spectrum object: >>> sp = splat.getSpectrum(lucky=True) >>> sp.citation().data_reference '2016ApJ...817..112S' >>> import splat.citations as spcite >>> spcite.shortRef(sp.data_reference) 'Schneider, A. C. et al. (2016, Astrophysical Journal, 817, 112)' Acknowledgements ---------------- SPLAT is an collaborative project of research students in the `UCSD Cool Star Lab `_, aimed at developing research through the building of spectral analysis tools. Contributors to SPLAT have included Christian Aganze, Jessica Birky, Daniella Bardalez Gagliuffi, Adam Burgasser (PI), Caleb Choban, Andrew Davis, Ivanna Escala, Joshua Hazlett, Carolina Herrara Hernandez, Elizabeth Moreno Hilario, Aishwarya Iyer, Yuhui Jin, Mike Lopez, Dorsa Majidi, Diego Octavio Talavera Maya, Alex Mendez, Gretel Mercado, Niana Mohammed, Johnny Parra, Maitrayee Sahi, Adrian Suarez, Melisa Tallis, Tomoki Tamiya, Chris Theissen, and Russell van Linge. This project has been supported by the National Aeronautics and Space Administration under Grant No. NNX15AI75G. Contents -------- .. toctree:: :maxdepth: 3 installation quickstart splat splat_empirical splat_plot splat_photometry splat_model splat_evolve splat_simulate api *Search* * :ref:`genindex` * :ref:`modindex` * :ref:`search`