ESBO-ETC/esbo_etc/classes/target/FileTarget.py

32 lines
1.3 KiB
Python
Raw Normal View History

2020-04-08 13:38:08 +02:00
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")
2020-04-28 17:21:26 +02:00
def __init__(self, file: str, wl_bins: u.Quantity, size: str = "Point"):
2020-04-08 13:38:08 +02:00
"""
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
2020-04-16 09:35:24 +02:00
`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
2020-04-28 17:21:26 +02:00
size : str
The size of the target. Can be either point or extended.
2020-04-08 13:38:08 +02:00
"""
2020-04-14 12:49:51 +02:00
# Create spectral quantity from file
sfd = SpectralQty.fromFile(file, u.nm, u.W / (u.m ** 2 * u.nm))
# Initialize the super class
2020-04-28 17:21:26 +02:00
super().__init__(sfd, wl_bins, size)