Creating your own light curves using custom aperture photometry#

Learning Goals#

By the end of this tutorial, you will:

  • Understand how to use aperture photometry to turn a series of two-dimensional images into a one-dimensional time series.

  • Be able to determine the most useful aperture for photometry on a Kepler/K2 target.

  • Create your own light curve for a single quarter/campaign of Kepler/K2 data.

Introduction#

This tutorial is part of a series on handling Kepler and K2 data with Astropy and Lightkurve. As you have seen earlier in this series, Lightkurve provides utilities that allow you to create your own light curve from a Kepler or K2 target pixel file. In this tutorial, we’ll look at the principles behind the process of performing aperture photometry on a target. Then we’ll get into specifics and learn how to customize our apertures to get the most out of our data.

Imports#

We’ll use Lightkurve for downloading and handling Kepler data throughout this tutorial. We’ll also use NumPy to handle arrays for aperture masks.

[1]:
import lightkurve as lk
import numpy as np
%matplotlib inline

1. Background#

1.1 Introduction to Kepler photometry#

When you search for Kepler or K2 light curves in the data archive, you can either access simple aperture photometry (SAP) light curves (for example, see the Kepler Data Processing Handbook, Section 6.3.6), or presearch data conditioning simple aperture photometry (PDCSAP) light curves (for example, Stumpe et al., 2012, Smith et al., 2012). You can also access the orignal target pixel files (TPFs) from which such light curves were extracted. TPFs are useful for inspecting the calibrated pixels, but when you’re doing science, you usually just want to look at a light curve. This tutorial covers how to use TPFs to create light curves. There are many reasons why you might want to produce your own light curve, which we’ll cover in Section 1.3. But more fundamentally, it’s important to know how the data you’re using is produced. In this tutorial, we’ll walk through the basics of photometry and then learn how to apply it to Kepler TPFs, producing light curves just like the ones produced by the official Kepler pipeline.

Before we get into it, it’s important to note that we’re only going to be performing photometry on one quarter at a time. Combining Kepler Quarters is not trivial: because the telescope rotated by 90° every quarter, the same star would fall on different pixels every fourth quarter. Different pixels have different sensitivities, so the size of the TPFs downloaded for a single target changes between adjacent quarters. It’s certainly possible to combine multiple quarters of Kepler data, or campaigns of K2 data, and you can read more about it in a different tutorial. We won’t cover quarter stitching here, however.

We also won’t cover systematics correction in this tutorial. Light curves created using custom aperture photometry will still include systematic noise from various sources, such as spacecraft motion. You can read more about noise and noise corrections in other tutorials in this series.

1.2 Aperture photometry#

In this tutorial, we’re going to explore photometry in a practical context by creating our own time series data. But first, we’ll go through a quick introduction of some of the theory behind it. Photometry is defined as the process of measuring the brightness of an astronomical object. Specifically, we’ll be doing time series photometry: measuring that brightness over time. Telescopes like Kepler use charge-coupled device (CCD) cameras (Kepler Instrument Handbook, Section 4) to take images of their targets at regular intervals — this interval is known as the cadence — and we perform photometry to turn each image into a flux measurement.

In Kepler and K2 data, each targeted object has a TPF, which is used to store the raw pixel data from which a light curve can be produced. Kepler’s pixels are 4x4 arcseconds large, and all stars take up less angular space than this as point sources in the sky. So, theoretically, we could track the flux of a single pixel over time, and call that our light curve. But light that falls on a CCD is spread onto surrounding pixels, proportional to its brightness.

Let’s have a look at a TPF to see what a star actually looks like in Kepler pixel data. The following line of code downloads the 30-minute long cadence light curve for KIC 7461601 from MAST. You can read more about using Lightkurve to download data in a separate tutorial.

[2]:
tpf_example = lk.search_targetpixelfile("KIC 7461601", author="Kepler", cadence='long', quarter=10).download()
[3]:
tpf_example.plot();
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_9_0.png

You can see how the light from this star is spread out across the TPF. The process of choosing which pixels to use for photometry is referred to as defining an aperture. By adding together the flux in multiple pixels, we get a more accurate measurement of the object’s brightness.

TPFs are designed to be big enough such that the vast majority of a target’s flux is captured within the available pixels. Because light from a star doesn’t spread out like a rectangle (we’ll talk about this more below), each TPF has pixels which we won’t need to use for our photometry. In the example above, the star has a Kepler magnitude of 13.4; this is analogous to a visual magnitude, and defined based on higher resolution photometry taken prior to the Kepler mission. For a star this bright, we can pick out six pixels by eye that almost certainly contain signal. Fainter targets are spread out across fewer pixels, and brighter targets may cover well over 20 pixels. Extremely bright targets will saturate the detector, making it very hard to perform photometry on them. We won’t be covering saturated stars in this tutorial; if you’re interested in working with them, the Halophot Python package is a good place to start.

So what about the pixels we don’t use? Think of a grainy photograph: we observe the same thing in all CCD data, but it’s harder to recognize by eye in photographs from telescopes with large pixels. This grainy noise is called “shot noise,” and arises from fluctuations in the current that powers an electronic photon-collecting device. For aperture photometry, we need to worry about shot noise because it dominates what we see in the “background” of an image, that is, the light we see in pixels that don’t have any light from our target. In reality, most pixels will be some kind of combination of “signal” and “background.” When we choose our aperture for photometry, we’re looking to optimize the amount of signal we collect, and minimize the noise contribution from the background.

This is what the aperture used by the Kepler pipeline looks like for our example star:

[4]:
tpf_example.plot(aperture_mask='pipeline');
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_11_0.png

You might not expect the star’s aperture to be this shape — stars are point sources, after all. In many cases, stars in Kepler will look circular, as we’d expect. However, at the edge of the focal plane, some targets may appear smeared in one direction. And even for a star with circular spread, the aperture may be a different shape. The way the spread of light interacts with the detector is defined by something called the point spread function (PSF), or pixel response function (PRF). Kepler’s PSF/PRF is described in detail in Section 3.5 of the Kepler Instrument Handbook.

We’ve looked at a basic example in this section, but as we’ll see later in this tutorial, it can be hard to determine the best aperture for a given target by eye. Choosing the best aperture for your target can be something of a balancing act: using a larger aperture will minimize the effects of PSF changes and spacecraft motion, but conversely it increases the presence of shot noise. This is why Kepler and K2 data were processed with an “optimal aperture.” Brightness, PSF, shot noise, crowding, and many other factors went into predicting the optimal aperture for producing a SAP or PDCSAP light curve with NASA’s Kepler and K2 pipelines. You can read more about the process of creating these apertures in Smith et al., 2016, which is equivalent to Chapter 7 of the Kepler Data Processing Handbook.

1.3 Why not just use published light curves?#

There are several reasons why we might want to create our own light curve from scratch, rather than using the readily available data. One of the main reasons is contamination: particularly in crowded fields, we might find multiple signals in one light curve, meaning there are multiple targets in the TPF. In that case, we would want to make our own light curve using a smaller aperture, to make sure that we’re only picking up the signal from our target star. Alternatively, we might want to use our TPF to produce a serendipitous light curve for a contaminating star, especially if it doesn’t have its own SAP/PDCSAP light curve available.

Another reason we might want to produce our own light curves is to minimize noise. Recall that some pixels might be dominated by shot noise over signal. If we find that some of the pixels in a Kepler pipeline aperture have more noise than signal, we can make our own aperture to see what happens if we exclude those pixels.

Finally, we might want to produce a light curve for a star that doesn’t have SAP/PDCSAP data available at all. This could be a star in the full-frame images (FFIs), or the superstamps (Kepler Archive Manual, Sections 2.3.3 and 2.2.1). This is less likely to come up with Kepler/K2 data, but all of these tools will come in handy when working with TESS full-frame images. There are hundreds of thousands of stars in the TESS field of view that weren’t targeted and don’t have readily available light curves. Custom aperture photometry is perfectly suited for inspecting individual targets in the TESS FFIs.

1.4 Choosing an aperture#

In NASA’s Kepler and K2 pipelines, the process of determining apertures is automated (Kepler Data Processing Handbook, Part II). Here, we’ll manually create our own apertures.

Without any knowledge of which pixels contain light from our target, the most basic approach is to look at individual pixels and manually determine which pixels to work with. Working offline, we can use Lightkurve’s TPF interact() function, which is a convenient way to inspect one or more pixels at a time. Another recommended way to define an aperture is by defining a median flux value and only selecting pixels at a certain sigma above that threshold. In the tutorial, we’ll look at using Lightkurve’s built-in functionality to perform this.

In most situations, a threshold mask will be the best choice for custom aperture photometry, as it doesn’t involve trial and error beyond finding the best sigma value. However, if you’re dealing with multiple bright objects in one TPF, a manual mask may be the better option.

Both of these methods are most useful when dealing with small amounts of data, such as looking at a handful of individual objects. When working with large datasets, it’s advisable to use the pipeline aperture, as this will be sufficient in the majority of cases with Kepler and K2. However, if you’re processing a large amount of stars which were not targeted during either mission — such as FFI or superstamp data — a good approach would be to experiment with multiple threshold apertures for each target and see which one produces the best results.

2. Getting Started#

2.1 Doing photometry with the pipeline aperture#

We’re going to use the built-in functions in Lightkurve for aperture photometry. You may have encountered to_lightcurve() in other tutorials in this series. In this section, we’ll explore a number of ways to use this function for custom aperture photometry — but first, let’s do a quick review of the function at its most basic.

We’ll start by downloading a target pixel file. We’re going to use Kepler long cadence data to look at KIC 2437317, a star which shows brightness variations due to rotation (Reinhold & Gizon, 2015). We’re downloading Quarter 10, as there was minimal data loss during this quarter (Kepler Data Characteristics Manual, Section 4.1).

[5]:
tpf = lk.search_targetpixelfile("KIC 2437317", author="Kepler", cadence="long", quarter=10).download(quality_bitmask="hard")

Before we do photometry on this star, let’s see what we’re working with by plotting the TPF:

[6]:
tpf.plot();
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_19_0.png

Notice that this TPF is more crowded than the one we looked at in Section 1. We can still point out which pixels probably contain the star’s signal, and which ones are dominated by noise. However, there’s also a background star in this TPF: the bright pixel to the left. We want to avoid picking up signal from that star.

We can use Lightkurve to plot the pipeline aperture:

[7]:
tpf.plot(aperture_mask='pipeline');
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_21_0.png

The pipeline aperture is small in this case, but it avoids capturing any light from the background star. Now we can generate the light curve that results from using that aperture as follows:

[8]:
lc = tpf.to_lightcurve(aperture_mask="pipeline")
lc.plot();
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_23_0.png

The signal you can see here is caused by rotational modulation.

Notice the spikes around 935 and 970 days. These coincide with breaks in the data collection during which Kepler was pointed at Earth to downlink data. These breaks are associated with small focus changes of the Kepler telescope, which are caused by the thermal effects associated with pointing Kepler’s antenna towards Earth. These artifical peaks are a form of systematic noise. We’ll see more evidence of systematic noise in the light curves we look at throughout this tutorial. As we’re only focused on performing photometry, we won’t do any light curve corrections to remove such noise, but you can read more about how to do so in other tutorials.

2.2 Adjusting the aperture#

Lightkurve’s to_lightcurve() function has an aperture_mask keyword, which changes the aperture used to perform photometry. Later we’ll look at creating our own apertures, but first, let’s look at the three standard arguments this keyword takes:

  • 'pipeline': this is the default option, which will return the same as above.

  • 'threshold': select all pixels which have a flux higher than 3 standard deviations above a median brightness.

  • 'all': use every pixel in the frame for photometry.

We can do a side-by-side comparison of the resulting light curves by normalizing them as follows:

[9]:
ax = tpf.to_lightcurve(aperture_mask='pipeline').normalize().plot(label='pipeline', linewidth=2);
tpf.to_lightcurve(aperture_mask='threshold').normalize().plot(ax=ax, label='threshold', linewidth=2);
tpf.to_lightcurve(aperture_mask='all').normalize().plot(ax=ax, label='all', linewidth=2);
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_26_0.png

Our star is fairly bright, with a Kepler magnitude of 14.6, so we don’t see much variation in the noise levels between these three light curves. But as you can see, using all of the pixels means including light from the background star which dilutes our star’s signal, making the rotation harder to detect by eye. On the other hand, using all of the pixels reduces the systematic noise near days 935 and 970, because telescope focus changes have less impact when a large aperture mask is used.

The threshold mask light curve looks less diluted than the one using all of the pixels, but it still looks markedly different from the light curve from the pipeline aperture. We can use another of Lightkurve’s functions to see why this is the case:

[10]:
tpf.create_threshold_mask()
[10]:
array([[False, False, False, False, False],
       [False, False, False, False, False],
       [False, False, False,  True, False],
       [False, False, False, False, False]])

This is Lightkurve’s default 3 standard deviations threshold mask, and for this TPF there’s only one pixel with flux above that cutoff. Note how Lightkurve apertures work: pixels marked True in the aperture mask array are the ones that are used for photometry.

We’ll make our own Boolean masks like this later. First, let’s play around with the create_threshold_mask() function and try to reproduce the pipeline mask. Keeping in mind that the TPF we looked at above has many more bright pixels than faint ones, we can expect a bright median, so let’s try using a lower threshold:

[11]:
custom_threshold_mask = tpf.create_threshold_mask(threshold=1)
custom_threshold_mask
[11]:
array([[False, False, False, False, False],
       [False, False,  True,  True, False],
       [False, False,  True,  True, False],
       [False, False, False, False, False]])

Now we’ve recreated the pipeline mask, which we can use to perform photometry again. As we’d expect, it produces the same results as the pipeline mask:

[12]:
ax = tpf.to_lightcurve(aperture_mask='pipeline').normalize().plot(label='pipeline', alpha=.3)
tpf.to_lightcurve(aperture_mask='threshold').normalize().plot(ax=ax, label='threshold', alpha=.3)
tpf.to_lightcurve(aperture_mask='all').normalize().plot(ax=ax, label='all', alpha=.3)
tpf.to_lightcurve(aperture_mask=custom_threshold_mask).normalize().plot(ax=ax, label='custom threshold', linewidth=2);
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_32_0.png

3. Manual Custom Apertures#

3.1 Creating a custom threshold aperture with Lightkurve#

In this section we’ll look at performing aperture photometry with a custom aperture. We’re going to switch to a different star, KIC 2437901. This star is an oscillating red giant (Colman et al., in prep), but we’re interested in it because it was processed using a large TPF, and there’s a second bright star captured in the image.

Have a look at the TPF:

[13]:
tpf_crowded = lk.search_targetpixelfile("KIC 2437901", author="Kepler", cadence="long", quarter=10).download(quality_bitmask="hard")
[14]:
tpf_crowded.plot(aperture_mask='pipeline');
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_36_0.png

We’re going to focus on that star in the top right. It’s not captured in the pipeline aperture, but it’s a serendipitous find in the TPF, so we can perform our own photometry on it with a custom aperture. Let’s see what the threshold mask looks like for this TPF:

[15]:
tpf_crowded.create_threshold_mask(threshold=1)
[15]:
array([[False, False, False, False, False, False, False, False],
       [False, False, False, False, False, False, False, False],
       [False, False, False,  True,  True,  True, False, False],
       [False, False, False,  True,  True, False, False, False],
       [False, False, False,  True,  True, False, False, False],
       [False, False, False, False, False, False, False, False],
       [False, False, False, False, False, False, False, False]])

We can plot this on top of the TPF, like so:

[16]:
tpf_crowded.plot(aperture_mask=tpf_crowded.create_threshold_mask(threshold=1));
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_40_0.png

No luck. Our custom aperture still selects the bright star in the center. When the thresholding method yields multiple contiguous regions, the default behavior of the create_threshold_mask method is to return the region closest to the center. We can modify this behavior by passing a reference_pixel argument to specify the region we are most interested in. The argument is defined such that reference_pixel=(0,0) refers to the lower left corner. Hence, we can select the region in the upper right corner as follows:

[17]:
custom_mask = tpf_crowded.create_threshold_mask(threshold=1, reference_pixel=(7,7))
tpf_crowded.plot(aperture_mask=custom_mask);
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_42_0.png

Now we can perform aperture photometry using this mask:

[18]:
lc_background_star = tpf_crowded.to_lightcurve(aperture_mask=custom_mask)
lc_background_star.plot();
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_44_0.png

Looks like there’s some signal in this star — a two-day period! In fact, this star is KIC 2437948, a likely binary (Colman et al., in prep).

We could make that signal even clearer by being more selective, and manually assigning True to the individual pixels we want to use. The downside to this method is that it takes time and manual work to create a mask by hand. However, when working with small volumes of data, such as one quarter or campaign at a time, or one star, this method can produce good results. In what follows, we will demonstrate three alternative methods to create a mask by hand.

3.2 Creating a custom aperture with NumPy arrays#

We can use NumPy to create an aperture mask array by hand. For this star, it would make sense to select a 3x3 zone in the top right of the image. This can be tricky: 2D NumPy arrays index the y-axis first, and are printed with the zeroth y index at the top of the array, whereas a plotted array places zero at the bottom, as with a normal plot.

[19]:
custom_mask = np.zeros((tpf_crowded[0].shape[1:]), dtype='bool')
custom_mask[-3:,5:] = True

custom_mask
[19]:
array([[False, False, False, False, False, False, False, False],
       [False, False, False, False, False, False, False, False],
       [False, False, False, False, False, False, False, False],
       [False, False, False, False, False, False, False, False],
       [False, False, False, False, False,  True,  True,  True],
       [False, False, False, False, False,  True,  True,  True],
       [False, False, False, False, False,  True,  True,  True]])

Let’s plot the custom mask on top of the TPF. Notice that the y-axis in our array appears reversed, as described above. When handling images and NumPy arrays, it’s good practice to plot them every time, and make sure you’re seeing what you expect.

[20]:
tpf_crowded.plot(aperture_mask=custom_mask);
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_49_0.png

3.3 “Cutting out” a background star#

Using Lightkurve’s cutout() function, we can emulate the process of creating a threshold mask on only the pixels we’re interested in. This method is only suitable for large TPFs with a clearly separated background star, like the case of KIC 2437901 and KIC 2437948.

Let’s start by cutting out those 3x3 pixels we just used as an aperture mask:

[21]:
tpf_crowded.plot();
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_51_0.png
[22]:
tpf_cut = tpf_crowded.cutout(center=(8,7))
[23]:
tpf_cut.plot();
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_53_0.png

This is still a TargetPixelFile object, so we can use all of the same functions:

[24]:
tpf_cut.create_threshold_mask(threshold=1)
[24]:
array([[False, False, False],
       [False,  True, False],
       [False, False, False]])

Unfortunately, the threshold mask only selects one pixel here. But with a smaller TPF, it’s also more convenient to select individual pixels for our mask:

[25]:
cut_mask = np.zeros(tpf_cut[0].shape[1:], dtype='bool')
cut_mask[:,1] = True
cut_mask[1,2] = True

cut_mask
[25]:
array([[False,  True, False],
       [False,  True,  True],
       [False,  True, False]])
[26]:
tpf_cut.plot(aperture_mask=cut_mask);
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_58_0.png
[27]:
lc_background_star_cut = tpf_cut.to_lightcurve(aperture_mask=cut_mask)
lc_background_star_cut.plot();
../../_images/tutorials_2-creating-light-curves_2-1-custom-aperture-photometry_59_0.png

And there’s our signal again, nice and clear!

3.4 Creating a custom aperture using the tpf.interact tool#

Finally, it is good to know that there is interactive functionality in Lightkurve to create a mask. We cannot demonstrate it in this static tutorial, but you can try it yourself in a local notebook by running tpf.interact(). This will bring up an interactive panel which allows you to select the pixels you want using mouse clicks. Next, press “Save Lightcurve” in the bottom left of the panel. This will export your custom aperture light curve to a FITS file in your working directory. The file name follows a similar convention to official Kepler data products. For example, the file name for the example above is kplr002437901-2011271113734_lpd-targ-custom-lc.fits.

About this Notebook#

Author: Isabel Colman (isabel.colman@sydney.edu.au)

Updated on: 2020-09-15

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.

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

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