kepler_fits_reader¶
- astropy.timeseries.io.kepler_fits_reader(filename)[source]¶
This serves as the FITS reader for KEPLER or TESS files within astropy-timeseries.
This function should generally not be called directly, and instead this time series reader should be accessed with the
read()
method:>>> from astropy.timeseries import TimeSeries >>> ts = TimeSeries.read('kplr33122.fits', format='kepler.fits')
- Parameters:
- filename
str
orpathlib.Path
File to load.
- filename
- Returns:
- ts
TimeSeries
Data converted into a TimeSeries.
- ts