VSPECGridParameters#
-
class VSPEC.params.VSPECGridParameters(max_teff:
astropy.units.Quantity
, min_teff:astropy.units.Quantity
, impl_bin: str = 'rust', impl_interp: str = 'scipy', fail_on_missing: bool = False)# Bases:
AbstractGridParameters
Parameter container for the default VSPEC grid.
- Parameters:
max_teff (astropy.units.Quantity) – The maximum effective temperature.
min_teff (astropy.units.Quantity) – The minimum effective temperature.
impl_bin (str, optional) – The implementation of the binning algorithm. Default is ‘rust’.
impl_interp (str, optional) – The implementation of the interpolation algorithm. Default is ‘scipy’.
fail_on_missing (bool, optional) – If
True
, raise an error if a spectrum from the grid is not found. IfFalse
, download the needed spectra. Default isFalse
.
Methods Summary
build
(w1, w2, resolving_power)Initialize a
GridSpectra
instance using additional parameters.from_dict
(d)Initialize a VSPEC grid parameter object from a dictionary.
Methods Documentation
-
build(w1:
astropy.units.Quantity
, w2:astropy.units.Quantity
, resolving_power: float)# Initialize a
GridSpectra
instance using additional parameters.- Parameters:
w1 (astropy.units.Quantity) – The w1 wavelength.
w2 (astropy.units.Quantity) – The w2 wavelength.
resolving_power (float) – The resolving power.
- Returns:
The grid of stellar spectral models.
- Return type:
GridSpectra