Using Light Curve Files with Lightkurve#

Learning Goals#

By the end of this tutorial, you will:

  • Understand how NASA’s Kepler Mission collected and released light curve data products.

  • Be able to download and plot light curve files from the data archive using Lightkurve.

  • Be able to access light curve metadata.

  • Understand the time and brightness units.

Introduction#

The Kepler, K2, and TESS telescopes observe stars for long periods of time, from just under a month to four years. By doing so they observe how the brightness of stars change over time. A series of these brightness observations is referred to as a light curve of a star.

Light curves of stars observed by the Kepler, K2, or TESS missions are created from the raw images collected by these telescopes using software built for this purpose by the mission teams. In this tutorial, we will learn how to use the Lightkurve package to download these preprocessed light curves from Kepler’s data archive, plot them, and understand their properties and units.

Much of the explanation below is inspired by Kinemuchi et al. (2012), an excellent paper introducing and explaining the terminology surrounding the Kepler mission and its data. You can find detailed information on the mission and its data products in the official Kepler Instrument Handbook and the Kepler Data Processing Handbook.

We will use the Kepler mission as the main example, but these tools are extensible to TESS and K2 as well. For example, while in this tutorial we will learn to work with Lightkurve’s KeplerLightCurve objects, there are also TessLightCurve objects that work in the same way.

Imports#

This tutorial only requires the Lightkurve package, which in turn uses matplotlib for plotting.

[1]:
import lightkurve as lk
%matplotlib inline

1. About NASA’s Photometric Space Telescopes#

In order to understand the data produced by NASA’s Kepler, K2, and TESS missions, it is useful to understand a little about how these data were obtained.

1.1. Kepler#

During its nominal mission, the Kepler telescope made observations using 21 pairs of rectangular charge-coupled device (CCD) camera chips (also called modules), each consisting of four 1100 x 2048 pixel channels. Each observed star fell on one of these 84 CCD channels. Recording the channel numbers for each star was important, because the Kepler spacecraft rotated by 90 degrees roughly four times a year. These rotations divide what are referred to as observing quarters. While the same star may be observed in multiple quarters, it may fall on a different CCD channel each time.

Kepler observed a single field in the sky, although not all stars in this field were recorded as light curves. Instead, pixels were selected around a predetermined list of target stars, which were then downloaded. These downloaded measurements are stored in target pixel files (TPFs). By adding up the flux (a measurement of an object’s brightness per unit time) measured by the pixels in which a target star appears, the total brightness of a star can be measured. If you make this measurement at different times, you obtain a light curve.

Kepler recorded the brightness measurements at two different cadences: a Short Cadence (SC, 58.85 seconds) and a Long Cadence (LC, 29.4 minutes). For more details, read: Kepler Instrument Handbook, Section 2.1. Mission Overview and 2.6. Pixels of Interest, and the Kepler Archive Manual Chapter 2: Kepler Data Products.

42d2b6a8321b4b67a36276eb245b41ee

Figure: The field of view of the Kepler mission. The rectangles represent the CCD modules described above.

1.2. K2#

The Kepler mission ended in 2013 following the loss of two reaction wheels, leaving the spacecraft unable to stay fixed on one portion of the sky. Instead, it changed its focus to the ecliptic plane, and performed 80-day observing campaigns of 19 separate fields. K2 data are very similar to Kepler data, but are subject to higher levels of instrument noise due to the increased instability of the spacecraft. For more details read the K2 Handbook, specifically Section 2: What’s New in K2.

1.3. TESS#

The Transiting Exoplanet Survey Satellite (TESS) succeeded Kepler in 2018. The data it collects are very similar to those from Kepler and K2, but TESS covers a much larger area of the sky at a lower resolution. TESS observes large sectors of the sky for 27 days at a time. The overlap of these sectors means that stars near the ecliptic poles will receive a year of uninterrupted data, while those near the ecliptic receive only ~27 days. Compared to Kepler, TESS observes in several different cadence modes, including 20 seconds, 120 seconds, 10 minutes, and 30 minutes. For more details, see the Mission Overview and the TESS Instrument Handbook, specifically Section 2: Introduction to TESS.

Some stars that have been observed by TESS will also have been observed by Kepler, and in some rare cases K2.

2. Downloading a Light Curve File#

The light curves of stars created by the Kepler mission are stored at the Mikulksi Archive for Space Telescopes (MAST) archive, along with metadata about the observations, such as which CCD channel was used at each time.

Lightkurve’s built-in tools allow us to search for light curve files in the archive, and download them and their metadata. In this example, we will start by downloading one quarter of Kepler data for a star named Kepler-8, a star somewhat larger than the Sun, and the host of a hot Jupiter planet.

Using Lightkurve’s search_lightcurve function, we can find an itemized list of different light curve file products available for Kepler-8:

[2]:
search_result = lk.search_lightcurve("Kepler-8", author="Kepler", cadence="long")
search_result
[2]:
SearchResult containing 18 data products.
#missionyearauthorexptimetarget_namedistance
sarcsec
0Kepler Quarter 002009Kepler1800kplr0069222440.0
1Kepler Quarter 012009Kepler1800kplr0069222440.0
2Kepler Quarter 022009Kepler1800kplr0069222440.0
3Kepler Quarter 032009Kepler1800kplr0069222440.0
4Kepler Quarter 042010Kepler1800kplr0069222440.0
5Kepler Quarter 052010Kepler1800kplr0069222440.0
.....................
11Kepler Quarter 112012Kepler1800kplr0069222440.0
12Kepler Quarter 122012Kepler1800kplr0069222440.0
13Kepler Quarter 132012Kepler1800kplr0069222440.0
14Kepler Quarter 142012Kepler1800kplr0069222440.0
15Kepler Quarter 162013Kepler1800kplr0069222440.0
16Kepler Quarter 152013Kepler1800kplr0069222440.0
17Kepler Quarter 172013Kepler1800kplr0069222440.0
Length = 18 rows

In this list, each row represents a different observing period. We find that Kepler recorded the maxmimum of 18 quarters of data for this target across four years. The observation column lists the Kepler Quarter. The target_name represents the Kepler Input Catalogue (KIC) ID of the target, and the productFilename column is the name of the FITS files downloaded from MAST. The distance column shows the separation on the sky between the searched coordinates and the downloaded objects — this is only relevant when you pass a radius argument to the search_lightcurve function to search for targets within a given search radius around a set of coordinates.

The search_lightcurve function takes several additional arguments, such as the quarter number or the mission name.

The search function returns a SearchResult object which has several convenient operations. For example, we can select the fourth data product in the list as follows:

[3]:
search_result[4]
[3]:
SearchResult containing 1 data products.
#missionyearauthorexptimetarget_namedistance
sarcsec
0Kepler Quarter 042010Kepler1800kplr0069222440.0

We can download this data product using the download() method:

[4]:
klc = search_result[4].download()

This instruction is identical to the following line:

[5]:
klc = lk.search_lightcurve("Kepler-8", author="Kepler", cadence="long", quarter=4).download()

The klc variable we have obtained in this way is a KeplerLightCurve object. This object contains time, flux, and flux error information, as well as a whole lot of data about spacecraft systematics. We can view all of them by calling the object by itself:

[6]:
klc
[6]:
KeplerLightCurve length=4116 LABEL="KIC 6922244" QUARTER=4 AUTHOR=Kepler FLUX_ORIGIN=pdcsap_flux
timefluxflux_errqualitytimecorrcentroid_colcentroid_rowcadencenosap_fluxsap_flux_errsap_bkgsap_bkg_errpdcsap_fluxpdcsap_flux_errsap_qualitypsf_centr1psf_centr1_errpsf_centr2psf_centr2_errmom_centr1mom_centr1_errmom_centr2mom_centr2_errpos_corr1pos_corr2
electron / selectron / sdpixpixelectron / selectron / selectron / selectron / selectron / selectron / spixpixpixpixpixpixpixpixpixpix
Timefloat32float32int32float32float64float64int32float32float32float32float32float32float32int32float64float32float64float32float64float32float64float32float32float32
352.37632485035283——————0-1.410670e-03682.69125190.13296119144.3689148e+046.6459765e+001.6722699e+034.6767941e-01——————0682.609277.8001787e-05190.368141.1752916e-04682.691251.8638317e-04190.132961.8306405e-049.8764673e-02-1.7217098e-01
352.39675804848965.2490750e+048.0003128e+0010000000000000-1.411072e-03682.69084190.13270119154.3698070e+046.6462421e+001.6698400e+034.6764868e-015.2490750e+048.0003128e+0010000000000000682.609007.7997785e-05190.367771.1751152e-04682.690841.8633612e-04190.132701.8303936e-049.8700106e-02-1.7229939e-01
352.43762444557075.2484055e+047.9999790e+0010000-1.411874e-03682.69038190.13302119174.3694105e+046.6461620e+001.6731306e+034.6705514e-015.2484055e+047.9999790e+0010000682.608627.7994831e-05190.368481.1754913e-04682.690381.8634219e-04190.133021.8301954e-049.8306537e-02-1.7180158e-01
352.458057644638765.2491809e+048.0006199e+000-1.412275e-03682.69084190.13257119184.3698316e+046.6463132e+001.6741406e+034.6687824e-015.2491809e+048.0006199e+000682.608727.7998680e-05190.367921.1751390e-04682.690841.8635279e-04190.132571.8304381e-049.8410256e-02-1.7202987e-01
352.47849084393245.2478277e+047.9992733e+000-1.412676e-03682.68949190.13304119194.3687648e+046.6459165e+001.6723815e+034.6764576e-015.2478277e+047.9992733e+000682.608297.7993544e-05190.368141.1756293e-04682.689491.8641398e-04190.133041.8308057e-049.8039381e-02-1.7183834e-01
352.49892404346615.2475855e+047.9986620e+000-1.413077e-03682.69036190.13318119204.3686480e+046.6458707e+001.6734375e+034.6817183e-015.2475855e+047.9986620e+000682.608527.7998702e-05190.368751.1761812e-04682.690361.8637831e-04190.133181.8304847e-049.8102726e-02-1.7151666e-01
...........................................................................
442.10133236614645.2484648e+047.9707704e+000-3.378539e-04682.49086190.34446163054.3164066e+046.6142449e+001.4996798e+034.6686992e-015.2484648e+047.9707704e+000682.422957.3321760e-05190.684979.3209848e-05682.490861.8497877e-04190.344461.8690305e-04-7.9818368e-021.3874538e-01
442.12176673195795.2479809e+047.9702587e+0010000000000000-3.370880e-04682.49145190.34413163064.3160660e+046.6141462e+001.4999071e+034.6648329e-015.2479809e+047.9702587e+0010000000000000682.423127.3320341e-05190.685169.3171802e-05682.491451.8498853e-04190.344131.8685416e-04-7.9732254e-021.3886212e-01
442.14220099791425.2475605e+047.9712372e+000-3.363221e-04682.49124190.34487163074.3157629e+046.6139336e+001.4981315e+034.6694338e-015.2475605e+047.9712372e+000682.422827.3328265e-05190.685569.3097420e-05682.491241.8495553e-04190.344871.8686226e-04-7.9895072e-021.3914314e-01
442.162635463981135.2475305e+047.9707313e+000-3.355560e-04682.49104190.34460163084.3155801e+046.6138582e+001.4982946e+034.6778497e-015.2475305e+047.9707313e+000682.422887.3337091e-05190.685009.3226627e-05682.491041.8501762e-04190.344601.8689682e-04-7.9854071e-021.3877387e-01
442.18306983020015.2465984e+047.9693055e+000-3.347898e-04682.49114190.34490163094.3148465e+046.6134605e+001.4987802e+034.6625513e-015.2465984e+047.9693055e+000682.422677.3346317e-05190.685429.3117917e-05682.491141.8503764e-04190.344901.8691395e-04-7.9959184e-021.3906266e-01
442.203504096527475.2471043e+047.9698005e+000-3.340235e-04682.49069190.34464163104.3151559e+046.6137042e+001.4977747e+034.6697757e-015.2471043e+047.9698005e+000682.422727.3345473e-05190.685289.3169489e-05682.490691.8501126e-04190.344641.8690964e-04-7.9990946e-021.3905971e-01

This object provides a convenient way to interact with the data file that has been returned by the archive, which contains both the light curve data and metadata about the observations.

Before diving into the properties of the light curve file, we can plot the data, also using Lightkurve.

[7]:
%matplotlib inline
klc.plot();
../../_images/tutorials_1-getting-started_using-light-curve-file-products_24_0.png

On this plot, the y-axis is flux in electrons per second. This unit may appear counterintutive, as flux is a measure of brightness. The CCD cameras measure an electrical charge, and so light is recorded as electrons, not photons as you might expect. On the x-axis we have time in Barycentric Kepler Julian Date (BKJD). In short, the x-axis values are days since the start of the Kepler mission. The repeating dips in brightness are transits, the effect of a planet orbiting Kepler-8 and passing between us and the star.

Note#

You can also download light curve FITS files from the archive by hand, store them on your local disk, and open them using the lk.read(<filename>) function. This function will return a KeplerLightCurve object just as in the above example. You can find out where Lightkurve stored a light curve file using the filename attribute:

[8]:
klc.filename
[8]:
'/Users/chedges/.lightkurve/cache/mastDownload/Kepler/kplr006922244_lc_Q111111111111111111/kplr006922244-2010078095331_llc.fits'

3. The SAP and PDCSAP Light Curves#

As you can see in the Table above, there are two different types of flux stored in the KeplerLightCurve object. These correspond to different levels of data treatment performed for this star by NASA’s Kepler Data Processing Pipeline: the simple aperture photometry (SAP) flux, and the presearch data conditioning SAP (PDCSAP) flux.

By default, a KeplerLightCurve will set the PDCSAP flux to its .flux property.

To compare the PDCSAP and the SAP flux, we can use the column keyword while plotting.

Note: alternatively, you can replace the flux column with the sap_flux column by using klc.flux = klc['sap_flux'].

[9]:
ax = klc.plot(column='pdcsap_flux', label='PDCSAP Flux', normalize=True)
klc.plot(column='sap_flux', label='SAP Flux', normalize=True, ax=ax);
../../_images/tutorials_1-getting-started_using-light-curve-file-products_31_0.png

In brief:

  • The SAP light curve is calculated by summing together the brightness of pixels that fall within an aperture set by the Kepler mission. This is often referred to as the optimal aperture, but in spite of its name can sometimes be improved upon! Because the SAP light curve is a sum of the brightness in chosen pixels, it is still subject to systematic artifacts of the mission.

  • The PDCSAP light curve is subject to more treatment than the SAP light curve, and is specifically intended for detecting planets. The PDCSAP pipeline attempts to remove systematic artifacts while keeping planetary transits intact.

Looking at the figure we made above, you can see that the SAP light curve has a long-term change in brightness that has been removed in the PDCSAP light curve, while keeping the transits at the same depth. For most inspections, a PDCSAP light curve is what you want to use, but when looking at astronomical phenomena that aren’t planets (for example, long-term variability), the SAP flux may be preferred.

For now, let’s continue to use the PDCSAP flux only. Because this is the default .flux property of our light curve object, we don’t need to change anything.

Note#

The plot() methods in Lightkurve always return a Matplotlib object. This is useful because it lets us manipulate the plot using standard Matplotlib functions. For example, we can set the title as follows:

[10]:
ax = klc.plot()
ax.set_title("PDCSAP light curve of Kepler-8");
../../_images/tutorials_1-getting-started_using-light-curve-file-products_35_0.png

And the figure can be saved as follows:

[11]:
ax.figure.savefig('demo-lightcurve.png')

4. Accessing the Metadata#

When downloading data from MAST, that data usually comes in the format of a FITS file. These FITS files carry a wealth of metadata about the observation. When these are loaded in to Lightkurve to create a KeplerLightCurve, all of the metadata are stored in the .meta property of the object.

We can view these metadata by calling this property, as follows:

[12]:
klc.meta
[12]:
{'INHERIT': True,
 'EXTNAME': 'PRIMARY',
 'EXTVER': 1,
 'TELESCOP': 'Kepler',
 'INSTRUME': 'Kepler Photometer',
 'OBJECT': 'KIC 6922244',
 'KEPLERID': 6922244,
 'RADESYS': 'ICRS',
 'RA_OBJ': 281.28812,
 'DEC_OBJ': 42.45108,
 'EQUINOX': 2000.0,
 'EXPOSURE': 82.71685005,
 'TIMEREF': 'SOLARSYSTEM',
 'TASSIGN': 'SPACECRAFT',
 'TIMESYS': 'TDB',
 'BJDREFI': 2454833,
 'BJDREFF': 0.0,
 'TIMEUNIT': 'd',
 'TELAPSE': 89.84761299,
 'LIVETIME': 82.71685005,
 'TSTART': 352.36610827,
 'TSTOP': 442.21372126,
 'LC_START': 55184.87773552,
 'LC_END': 55274.70383812,
 'DEADC': 0.92063492,
 'TIMEPIXR': 0.5,
 'TIERRELA': 5.78e-07,
 'TIERABSO': <astropy.io.fits.card.Undefined at 0x13f7cc100>,
 'INT_TIME': 6.01980290327,
 'READTIME': 0.518948526144,
 'FRAMETIM': 6.538751429414,
 'NUM_FRM': 270,
 'TIMEDEL': 0.02043359821692,
 'DATE-OBS': '2009-12-19T20:49:13.619Z',
 'DATE-END': '2010-03-19T17:08:14.343Z',
 'BACKAPP': True,
 'DEADAPP': True,
 'VIGNAPP': True,
 'GAIN': 115.49,
 'READNOIS': 83.014212,
 'NREADOUT': 270,
 'TIMSLICE': 1,
 'MEANBLCK': 715,
 'LCFXDOFF': 419400,
 'SCFXDOFF': 219400,
 'CDPP3_0': 74.77433013916016,
 'CDPP6_0': 61.75667190551758,
 'CDPP12_0': 56.56961441040039,
 'CROWDSAP': 1.0,
 'FLFRCSAP': 0.8286,
 'NSPSDDET': 0,
 'NSPSDCOR': 0,
 'PDCVAR': 0.5488878488540649,
 'PDCMETHD': 'multiScaleMap',
 'NUMBAND': 3,
 'FITTYPE1': 'robust',
 'PR_GOOD1': 0.0,
 'PR_WGHT1': 0.0,
 'FITTYPE2': 'prior',
 'PR_GOOD2': 0.47542938590049744,
 'PR_WGHT2': 22.81161117553711,
 'FITTYPE3': 'prior',
 'PR_GOOD3': 0.9755752682685852,
 'PR_WGHT3': 46.809146881103516,
 'PDC_TOT': 0.45028069615364075,
 'PDC_TOTP': 0.2651563882827759,
 'PDC_COR': 0.9997496604919434,
 'PDC_CORP': 86.80510711669922,
 'PDC_VAR': 0.9991965293884277,
 'PDC_VARP': 86.88060760498047,
 'PDC_NOI': 0.9822107553482056,
 'PDC_NOIP': 99.34284210205078,
 'PDC_EPT': 1.0,
 'PDC_EPTP': 77.33592224121094,
 'CHECKSUM': '9pCbEmCZ9mCbCmCZ',
 'SIMPLE': True,
 'BITPIX': 8,
 'NAXIS': 0,
 'EXTEND': True,
 'NEXTEND': 2,
 'ORIGIN': 'NASA/Ames',
 'DATE': '2015-09-11',
 'CREATOR': '859340 FluxExporter2PipelineModule',
 'PROCVER': 'svn+ssh://murzim/repo/soc/tags/release/9.3.22 r60269',
 'FILEVER': '6.1',
 'TIMVERSN': 'OGIP/93-003',
 'CHANNEL': 31,
 'SKYGROUP': 31,
 'MODULE': 10,
 'OUTPUT': 3,
 'QUARTER': 4,
 'SEASON': 2,
 'DATA_REL': 25,
 'OBSMODE': 'long cadence',
 'MISSION': 'Kepler',
 'TTABLEID': 29,
 'PMRA': 0.0,
 'PMDEC': 0.0,
 'PMTOTAL': 0.0,
 'PARALLAX': None,
 'GLON': 71.6589,
 'GLAT': 19.012749,
 'GMAG': 13.886,
 'RMAG': 13.511,
 'IMAG': 13.424,
 'ZMAG': 13.413,
 'D51MAG': 13.7,
 'JMAG': 12.576,
 'HMAG': 12.323,
 'KMAG': 12.292,
 'KEPMAG': 13.563,
 'GRCOLOR': 0.375,
 'JKCOLOR': 0.284,
 'GKCOLOR': 1.594,
 'TEFF': 6225,
 'LOGG': 4.169,
 'FEH': -0.04,
 'EBMINUSV': 0.096,
 'AV': 0.297,
 'RADIUS': 1.451,
 'TMINDEX': 262064792,
 'SCPID': 262064792,
 'LABEL': 'KIC 6922244',
 'RA': 281.28812,
 'DEC': 42.45108,
 'FILENAME': '/Users/chedges/.lightkurve/cache/mastDownload/Kepler/kplr006922244_lc_Q111111111111111111/kplr006922244-2010078095331_llc.fits',
 'FLUX_ORIGIN': 'pdcsap_flux',
 'AUTHOR': 'Kepler',
 'TARGETID': 6922244,
 'QUALITY_BITMASK': 'default',
 'QUALITY_MASK': array([ True,  True, False, ...,  True,  True,  True])}

As you can see, there is a lot here if you don’t know what you are looking for! These metadata don’t just include information about the observations, but also data from the Kepler Input Catalogue (KIC) used to select observing targets, such as their magnitudes and temperature.

The .meta property is a Python dictionary, which has some convenient features. For example, we can retrieve the value of an individual keyword as follows:

[13]:
klc.meta['QUARTER']
[13]:
4

Alternatively, we can use the .get() method, which accounts for queries that aren’t in the dictionary.

[14]:
klc.meta.get('MISSION')
[14]:
'Kepler'

A feature of the KeplerLightCurve object is that the metadata can also be accessed via user-friendly object properties for convenience. For example, the Kepler Quarter number is directly accessible via the quarter property:

[15]:
klc.quarter
[15]:
4

5. Understanding the Data Arrays and Units#

As we saw above, the KeplerLightCurve object is a table that contains many arrays other than the PDCSAP and SAP fluxes. Detailed information on each of these can be found in the Kepler Archive Manual, Section 2.3.1. Light Curve Files.

The first six columns appear in all KeplerLightCurve objects, and contain the most commonly used information. These are:

  • time: the time measurements at each cadence.

  • flux: the flux of the target star at each time measurement. This is populated with PDCSAP flux by default.

  • flux_err: the statistical uncertainty on each flux data point.

  • quality: information on the data quality at each time measurement.

  • centroid_col & centroid_row: the position of the target star on the CCD at each observation. This changes over time due to, for example, small jitters of the spacecraft.

The remaining columns are more detailed information on the observation. Some of these are duplicated in the first five columns described above:

  • timecorr: correction values that allow users to revert back to non-barycentric timestamps.

  • cadenceno: these are mission-specific identifiers of each exposure.

  • sap_flux & sap_flux_err: the SAP flux and associated error.

  • sap_bkg & sap_bkg_err: the calculated background (and associated error) inside the aperture used to calculate the SAP flux.

  • pdcsap_flux & pdcsap_flux_err: the PDCSAP flux and associated error. Duplicated by default in flux and flux_err.

  • sap_quality: information on the data quality at each time measurement. Duplicated in quality.

  • psf_centr1 & psf_centr2 (and errors): the column and row centroid positions of a PSF model fit to the target star.

  • mom_centr1 & mom_centr2 (and errors): the column and row centroid positions of the target star, weighted by flux. Duplicated in centroid_col and centroid_row respectively.

  • pos_corr1 & pos_corr2: the column and row components of the calculated image motion.

These columns can be accessed as properties of the KeplerLightCurve , for example, as follows:

[16]:
klc.sap_bkg
[16]:
$[1672.2699,~1669.84,~1673.1306,~\dots,~1498.2946,~1498.7802,~1497.7747] \; \mathrm{\frac{e^{-}}{s}}$

The unit information of the arrays are stored using Astropy’s `astropy.units <https://docs.astropy.org/en/stable/units/>`__ module, which means that they are an Astropy `Quantity <https://docs.astropy.org/en/stable/api/astropy.units.Quantity.html#astropy.units.Quantity>`__ object. We can view the units as follows:

[17]:
print(f'Centroid column unit: {klc.centroid_col.unit}')
print(f'Flux unit: {klc.flux.unit}')
Centroid column unit: pix
Flux unit: electron / s

You can access the data in the form of a standard NumPy array using the value attribute:

[18]:
klc.centroid_col.value
[18]:
MaskedNDArray([682.69124789, 682.69084371, 682.6903808 , ...,
               682.49103683, 682.49113696, 682.49069432])

We can also plot the data using the KeplerLightCurve’s plot() method by passing a column keyword argument:

[19]:
ax = klc.plot(column='mom_centr1', label='Flux-weighted column position')
klc.plot(ax=ax, column='psf_centr1', label='PSF centroid column position');
../../_images/tutorials_1-getting-started_using-light-curve-file-products_58_0.png

Finally, the .time property is a little different. Instead of an Astropy Quantity object, it is an Astropy `Time <https://docs.astropy.org/en/stable/time/>`__ object, and has some additional time scale and format information.

[20]:
klc.time
[20]:
<Time object: scale='tdb' format='bkjd' value=[352.37632485 352.39675805 352.43762445 ... 442.16263546 442.18306983
 442.2035041 ]>
[21]:
print(f'Time scale: {klc.time.scale}')
print(f'Time format: {klc.time.format}')
Time scale: tdb
Time format: bkjd

Here, the time format is the unit of time, in this case Barycentric Kepler Julian Date (BKJD). The time scale indicates how the time is measured, in this case by taking the Barycentric Dynamical Time (TDB). This detailed information may be important when comparing observations of a periodic event (such as a planet transit) with observations made with other telescopes on Earth.

Exercises#

Some stars, such as Kepler-10, have been observed both with Kepler and TESS. In this exercise, download and plot the TESS PDCSAP flux only. You can do this by either selecting it from the SearchResult returned by `search_lightcurve() <https://docs.lightkurve.org/reference/api/lightkurve.search_lightcurve.html?highlight=search_lightcurve>`__ or by using the mission keyword argument when searching.

[22]:
#search_result = lk.search_lightcurvefile(...)
[23]:
# Solution:
search_result = lk.search_lightcurve('Kepler-10', mission='TESS')
search_result
[23]:
SearchResult containing 36 data products.
#missionyearauthorexptimetarget_namedistance
sarcsec
0TESS Sector 142019SPOC1203777807900.0
1TESS Sector 412021SPOC203777807900.0
2TESS Sector 402021SPOC203777807900.0
3TESS Sector 412021SPOC1203777807900.0
4TESS Sector 402021SPOC1203777807900.0
5TESS Sector 542022SPOC203777807900.0
.....................
29TESS Sector 142019TASOC18003777807900.0
30TESS Sector 142019TASOC18003777807900.0
31TESS Sector 152019TASOC18003777807900.0
32TESS Sector 152019CDIPS18003777807900.0
33TESS Sector 262020TASOC18003777807900.0
34TESS Sector 262020TASOC18003777807900.0
35TESS Sector 262020CDIPS18003777807900.0
Length = 36 rows
[24]:
search_result.download().plot();
/Users/chedges/repos/lightkurve/src/lightkurve/search.py:424: LightkurveWarning: Warning: 36 files available to download. Only the first file has been downloaded. Please use `download_all()` or specify additional criteria (e.g. quarter, campaign, or sector) to limit your search.
  warnings.warn(
../../_images/tutorials_1-getting-started_using-light-curve-file-products_67_1.png

About this Notebook#

Authors: Oliver Hall (oliver.hall@esa.int), Geert Barentsen

Updated On: 2020-08-31

Citing Lightkurve and Astropy#

If you use lightkurve or astropy for published research, please cite the authors. Click the buttons below to copy BibTeX entries to your clipboard.

[25]:
lk.show_citation_instructions()
[25]:

When using Lightkurve, we kindly request that you cite the following packages:

  • lightkurve
  • astropy
  • astroquery — if you are using search_lightcurve() or search_targetpixelfile().
  • tesscut — if you are using search_tesscut().

Space Telescope Logo