32 lines
1.3 KiB
Python
32 lines
1.3 KiB
Python
from ..target.ATarget import ATarget
|
|
from ..SpectralQty import SpectralQty
|
|
import astropy.units as u
|
|
|
|
|
|
class FileTarget(ATarget):
|
|
"""
|
|
A class to create a target from a file containing the spectral flux densities
|
|
"""
|
|
|
|
@u.quantity_input(wl_bins="length")
|
|
def __init__(self, file: str, wl_bins: u.Quantity, size: str = "Point"):
|
|
"""
|
|
Initialize a new target from a file containing the spectral flux density values
|
|
|
|
Parameters
|
|
----------
|
|
file : str
|
|
The file to read the spectral flux density values from. The file needs to provide two columns: wavelength
|
|
and the corresponding spectral flux density. The format of the file will be guessed by
|
|
`astropy.io.ascii.read(). If the file doesn't provide units via astropy's enhanced CSV format, the units
|
|
will be read from the column headers or otherwise assumed to be *nm* and *W / m^2 / nm*.
|
|
wl_bins : length-Quantity
|
|
Wavelengths used for binning
|
|
size : str
|
|
The size of the target. Can be either point or extended.
|
|
"""
|
|
# Create spectral quantity from file
|
|
sfd = SpectralQty.fromFile(file, u.nm, u.W / (u.m ** 2 * u.nm))
|
|
# Initialize the super class
|
|
super().__init__(sfd, wl_bins, size)
|