#!/usr/bin/env python # coding: utf-8 # # What are TargetPixelFile objects? # Target Pixel Files (TPFs) are a file common to Kepler/K2 and the TESS mission. They contain movies of the pixel data centered on a single target star. # # TPFs can be thought of as stacks of images, with one image for every timestamp the telescope took data. Each timestamp is referred to as a **cadence**. These images are cut out 'postage stamps' of the full observation to make them easier to work with. # # TPFs are given in FITS files, which you can read more about [here](https://fits.gsfc.nasa.gov/fits_primer.html). *Lightkurve* includes tools for you to work directly with these files easily and intuitively. # # In this tutorial we'll cover the basics of working with TPFs. In *lightkurve* there are classes to work with each mission. For example `KeplerTargetPixelFile` deals with data from the Kepler (and K2) mission. `TessTargetPixelFile` deals with data from the TESS mission. We'll use a Kepler TPF as an example. # # To load a `KeplerTargetPixelFile` from a local path or remote url, simply create a new object using the location of the file as the parameter: # In[1]: from lightkurve import KeplerTargetPixelFile tpf = KeplerTargetPixelFile("https://archive.stsci.edu/pub/kepler/target_pixel_files/0069/006922244/kplr006922244-2010078095331_lpd-targ.fits.gz") # You can also search for the url automatically using the `search_targetpixelfile()` function. This will search for the right file in the [MAST data archive](https://archive.stsci.edu/kepler/) which holds all of the Kepler and K2 data. # In this case we want the Target Pixel File with Kepler ID 6922244 for Quarter 4 (Kepler's observations were split into quarters of a year): # In[2]: from lightkurve import search_targetpixelfile tpf = search_targetpixelfile(6922244, quarter=4).download() # You can also pass the name of the target or its astronomical coordinates as a parameter to `search_targetpixelfile()`. # # The above code has created a variable named `tpf` which is a Python object of type `KeplerTargetPixelFile`: # In[3]: tpf # We can access lots of meta data using this object in a simple way. For example, we can find the mission name, and the quarter that the data was taken in by typing the following: # In[4]: tpf.mission # In[5]: tpf.quarter # You can find the full list of properties in the [API documentation](http://lightkurve.keplerscience.org/api/targetpixelfile.html) on this object. # The most interesting data in a `KeplerTargetPixelFile` object are the `flux` and `time` values which give access to the brightness of the observed target over time. You can access the timestamps of the observations using the `time` property: # In[6]: tpf.time # By default, `time` is in the Kepler-specific *Barycentric Kepler Julian Day* format (BKJD). You can easily convert this into [AstroPy Time objects](http://docs.astropy.org/en/stable/time/) using the `astropy_time` property: # In[7]: tpf.astropy_time # In turn, this gives you access to human-readable ISO timestamps using the `astropy_time.iso` property: # In[8]: tpf.astropy_time.iso # **Beware:** these timestamps are in the Solar System Barycentric frame (TDB) and do not include corrections for light travel time or leap seconds. To use a different time scale, such as the Earth-centered UTC system, you can use [AstroPy's time scale conversion features](http://docs.astropy.org/en/stable/time/#time-scale). For example: # In[9]: tpf.astropy_time.utc.iso # Next, let's look at the actual image data, which is available via the `flux` property: # In[10]: tpf.flux.shape # The `flux` data is a 4116x5x5 array in units electrons/second. The first axis is the time axis, and the images themselves are 5 pixels by 5 pixels. You can use the `plot` method on the `KeplerTargetPixelFile` object to view the data. (By default, this will show just one cadence of the data. But you can pass the cadence you want to look at to the `frame` keyword if you would like to check a particular flux point for thruster firings, cosmic rays or asteroids.) # In[11]: get_ipython().run_line_magic('matplotlib', 'inline') tpf.plot(frame=0); # The values shown in this image are also directly accessible as an array: # In[12]: tpf.flux[0] # You can use normal `numpy` methods on these to find the shape, mean etc! # We can now turn this Target Pixel File into a light curve, with a single flux value for every time value. Each of the pixels are 4 arcseconds across. The point spread function (PSF) of the telescope causes the light from the star fall onto several different pixels, which can be seen in the image above. Because of this spreading, we have to sum up many pixels to collect all the light from the source. To do this we sum up all the pixels in an **aperture**. An aperture is a pixel mask, where we take only the pixels related to the target. # The *Kepler* pipeline adds an aperture mask to each target pixel file. This aperture determines which pixels are summed to create a 1-D light curve of the target. There are some science cases where you might want to create a different aperture. For example, there may be a nearby contaminant or you may want to measure the background. # # The standard pipeline aperture is easily accessed in a `KeplerTargetPixelFile` object using `tpf.pipeline_mask`, which is a boolean array: # In[13]: tpf.pipeline_mask # We can also plot this aperture over the target pixel file above to see if the flux of the star is all contained within the aperture. # In[14]: tpf.plot(aperture_mask=tpf.pipeline_mask); # Now that we have the aperture we can create a Simple Aperture Photometry light curve in the next tutorial. # Finally, note that you can inspect all the raw metadata of the target by taking a look at the 'header' of the FITS file, which contains information about the data set. Let's just print the first 10 lines: # In[15]: tpf.header[:10] # We can look at the values in the second extension of the fits file by accessing the AstroPy FITS `HDUList` object. For example, to look at all the column titles: # In[16]: tpf.hdu[1].header['TTYPE*']