コード例 #1
0
def get_primary_extension(hdu: fits.HDUList):
    """
    Figure out which is the primary extension (1 if fpacked, 0 otherwise)
    :param hdu: astropy.io.fits.HDUList
    :return: int
    """
    _, file_extension = os.path.splitext(hdu.filename())
    if file_extension == '.fz':
        primary_extension = 1
    else:
        primary_extension = 0

    return primary_extension
コード例 #2
0
ファイル: detect.py プロジェクト: njuanton/lightkurve
def detect_filetype(hdulist: HDUList) -> str:
    """Returns Kepler and TESS file types given a FITS object.

    This function will detect the file type by looking at both the TELESCOP and
    CREATOR keywords in the first extension of the FITS header. If the file is
    recognized as a Kepler or TESS data product, one of the following strings
    will be returned:

        * `'KeplerTargetPixelFile'`
        * `'TessTargetPixelFile'`
        * `'KeplerLightCurve'`
        * `'TessLightCurve'`
        * `'K2SFF'`
        * `'EVEREST'`
        * `'K2SC'`
        * `'K2VARCAT'`
        * `'QLP'`

    If the data product cannot be detected, `None` will be returned.

    Parameters
    ----------
    hdulist : astropy.io.fits.HDUList object
        A FITS file.

    Returns
    -------
    filetype : str or None
        A string describing the detected filetype. If the filetype is not
        recognized, `None` will be returned.
    """
    # Is it a MIT/QLP TESS FFI Quicklook Pipeline light curve?
    # cf. http://archive.stsci.edu/hlsp/qlp
    if "mit/qlp" in hdulist[0].header.get('origin', '').lower():
        return "QLP"

    # Is it a K2VARCAT file?
    # There are no self-identifying keywords in the header, so go by filename.
    if "hlsp_k2varcat" in (hdulist.filename() or ""):
        return "K2VARCAT"

    # Is it a K2SC file?
    if "k2sc" in hdulist[0].header.get('creator', '').lower():
        return "K2SC"

    # Is it a K2SFF file?
    try:
        # There are no metadata keywords identifying K2SFF FITS files,
        # so we go by structure.
        if hdulist[1].header.get('EXTNAME') == "BESTAPER" and hdulist[
                1].header.get("TTYPE4") == "ARCLENGTH":
            return "K2SFF"
    except Exception:
        pass

    # Is it an EVEREST file?
    try:
        if "EVEREST" in str(hdulist[0].header.get('COMMENT')):
            return "EVEREST"
    except Exception:
        pass

    # Is it an official data product?
    header = hdulist[0].header
    try:
        # use `telescop` keyword to determine mission
        # and `creator` to determine tpf or lc
        if 'TELESCOP' in header.keys():
            telescop = header['telescop'].lower()
        else:
            # Some old custom TESS data did not define the `TELESCOP` card
            telescop = header['mission'].lower()
        creator = header['creator'].lower()
        origin = header['origin'].lower()
        if telescop == 'kepler':
            # Kepler TPFs will contain "TargetPixelExporterPipelineModule"
            if 'targetpixel' in creator:
                return 'KeplerTargetPixelFile'
            # Kepler LCFs will contain "FluxExporter2PipelineModule"
            elif ('fluxexporter' in creator or 'lightcurve' in creator
                  or 'lightcurve' in creator):
                return 'KeplerLightCurve'
        elif telescop == 'tess':
            # TESS TPFs will contain "TargetPixelExporterPipelineModule"
            if 'targetpixel' in creator:
                return 'TessTargetPixelFile'
            # TESS LCFs will contain "LightCurveExporterPipelineModule"
            elif 'lightcurve' in creator:
                return 'TessLightCurve'
            # Early versions of TESScut did not set a good CREATOR keyword
            elif 'stsci' in origin:
                return 'TessTargetPixelFile'
    # If the TELESCOP or CREATOR keywords don't exist we expect a KeyError;
    # if one of them is Undefined we expect `.lower()` to yield an AttributeError.
    except (KeyError, AttributeError):
        return None
コード例 #3
0
ファイル: detect.py プロジェクト: GabrielWendell/lightkurve
def detect_filetype(hdulist: HDUList) -> str:
    """Returns Kepler and TESS file types given a FITS object.

    This function will detect the file type by looking at both the TELESCOP and
    CREATOR keywords in the first extension of the FITS header. If the file is
    recognized as a Kepler or TESS data product, one of the following strings
    will be returned:

        * `'KeplerTargetPixelFile'`
        * `'TessTargetPixelFile'`
        * `'KeplerLightCurve'`
        * `'TessLightCurve'`
        * `'K2SFF'`
        * `'EVEREST'`
        * `'K2SC'`
        * `'K2VARCAT'`
        * `'QLP'`
        * `'PATHOS'`
        * `'TASOC'`
        * `'KEPSEISMIC'`

    If the data product cannot be detected, `None` will be returned.

    Parameters
    ----------
    hdulist : astropy.io.fits.HDUList object
        A FITS file.

    Returns
    -------
    filetype : str or None
        A string describing the detected filetype. If the filetype is not
        recognized, `None` will be returned.
    """

    # Is it a MIT/QLP TESS FFI Quicklook Pipeline light curve?
    # cf. http://archive.stsci.edu/hlsp/qlp
    if "mit/qlp" in hdulist[0].header.get("origin", "").lower():
        return "QLP"

    # Is it a PATHOS TESS light curve?
    # cf. http://archive.stsci.edu/hlsp/pathos
    # The 'pathos' name doesn't stay in the filename if when we use fits.open
    # to download a file, so we have to check for all the important columns
    # This will cause problems if another HLSP has the exact same colnames...
    if all(x in hdulist[1].columns.names for x in [
            "PSF_FLUX_RAW",
            "PSF_FLUX_COR",
            "AP4_FLUX_RAW",
            "AP4_FLUX_COR",
            "SKY_LOCAL",
    ]):
        return "PATHOS"

    # Is it a TASOC TESS light curve?
    # cf. https://tasoc.dk and https://archive.stsci.edu/hlsp/tasoc
    if hdulist[0].header.get("ORIGIN") == "TASOC/Aarhus":
        return "TASOC"

    # Is it a K2VARCAT file?
    # There are no self-identifying keywords in the header, so go by filename.
    if "hlsp_k2varcat" in (hdulist.filename() or ""):
        return "K2VARCAT"

    # Is it a K2SC file?
    if "k2sc" in hdulist[0].header.get("creator", "").lower():
        return "K2SC"

    # Is it a K2SFF file?
    try:
        # There are no metadata keywords identifying K2SFF FITS files,
        # so we go by structure.
        if (hdulist[1].header.get("EXTNAME") == "BESTAPER"
                and hdulist[1].header.get("TTYPE4") == "ARCLENGTH"):
            return "K2SFF"
    except Exception:
        pass

    # Is it an EVEREST file?
    try:
        if "EVEREST" in str(hdulist[0].header.get("COMMENT")):
            return "EVEREST"
    except Exception:
        pass

    # Is it a KEPSEISMIC file?
    if hdulist[0].header.get("ORIGIN") == "CEA & SSI":
        return "KEPSEISMIC"

    # Is it an official data product?
    header = hdulist[0].header
    try:
        # use `telescop` keyword to determine mission
        # and `creator` to determine tpf or lc
        if "TELESCOP" in header.keys():
            telescop = header["telescop"].lower()
        else:
            # Some old custom TESS data did not define the `TELESCOP` card
            telescop = header["mission"].lower()
        creator = header["creator"].lower()
        origin = header["origin"].lower()
        if telescop == "kepler":
            # Kepler TPFs will contain "TargetPixelExporterPipelineModule"
            if "targetpixel" in creator:
                return "KeplerTargetPixelFile"
            # Kepler LCFs will contain "FluxExporter2PipelineModule"
            elif ("fluxexporter" in creator or "lightcurve" in creator
                  or "lightcurve" in creator):
                return "KeplerLightCurve"
        elif telescop == "tess":
            # TESS TPFs will contain "TargetPixelExporterPipelineModule"
            if "targetpixel" in creator:
                return "TessTargetPixelFile"
            # TESS LCFs will contain "LightCurveExporterPipelineModule"
            elif "lightcurve" in creator:
                return "TessLightCurve"
            # Early versions of TESScut did not set a good CREATOR keyword
            elif "stsci" in origin:
                return "TessTargetPixelFile"
    # If the TELESCOP or CREATOR keywords don't exist we expect a KeyError;
    # if one of them is Undefined we expect `.lower()` to yield an AttributeError.
    except (KeyError, AttributeError):
        return None