1 Visualization Tutorial

1.2 Overplotting Apertures

1.3 Pixel-by-Pixel Light Curves

1.4 Overplotting Gaia Targets

2 Crossmatching Light Curves

1. Visualization Tutorial

We've created an eleanor.Visualization() class to help you understand what is going on with hyour light curves. If you have any additional tools you think would be useful in this class, please submit a pull request!

1.1 Setting up the class

Initializing the eleanor.visualization() class is very simple! Once you have the light curve you are interested in, created with the eleanor.TargetData() class, you pass this into the visualization class! We'll run through an example with WASP-100.

1.2 Overplotting your Aperture

We provide a very simple function that overplots the aperture you use on the target pixel file. You can also pass in your own aperture and change the color/linewidth of the plotted contour.

Here's an example of changing the default aperture contour color and linewidth and also passing in a new aperture to plot:

1.3 Pixel-By-Pixel Light Curves

Another useful tool is what we call a pixel-by-pixel light curve. It's exactly what it sounds like: we plot the light curve for a single pixel across the sector. The default light curve that is plotted is the "corrected flux" for each pixel. You can simply call:

Or you can specify which rows/columns you want to focus in on within the target pixel file:

Or you can plot the raw flux light curve per each pixel (yay Earthshine!):

Or you can plot a Lomb Scargle periodogram for each pixel AND you can color each light curve by the color of the associated pixel in the TPF plotted to the left:

1.4 Overplotting Gaia Targets

You can now overplot nearby Gaia sources on your TPF as well thanks to this handy tool from Nick Saunders.

2. Crossmatching

On to new things! It's important to check all of the light curves that are available for your target to make sure your astrophysical signal is indeed real. We've made this really easy for you to do by introducting a new eleanor.Crossmatch() class. Within this class, you can check if your target has been observed at either 2-minute cadence or is created by the TASOC or Oelkers & Stassun (2019) pipelines.

The eleanor.Crossmatch() class is initialized using an eleanor.TargetData() object.

Two-minute Light Curves

The 2-minute function returns a list of lightkurve.search.SearchResult objects if your target has been observed in this mode. Users also have the option to set download=True, which then returns a list of lightkurve.lightcurve.TessLightCurve objects. You also have the option to specify which sectors you want to search/download!

TASOC pipeline

The TESS Asteroseismic Consortium (TASC) is providing light curves for the community to use that are tailored towards finding asteroseismic signals. Callingn eleanor.Crossmatch.tasoc_lc() searches MAST to find if these light curves are available. For more information on the TASOC light curves, see https://archive.stsci.edu/hlsp/tasoc.

The TASOC light curves have their own quality flags called eleanor.Crossmatch.tasoc_pixel_quality. We can apply these quality flags to the light curve and see that the WASP-100b transits are recovered really nicely!

Oelkers & Stassun pipeline

Additionally, the Vanderbilt team is providing light curves for stars in the FFIs via difference imaging.

We can now plot all light curves on the same plot and compare. All of the transits pop out really nicely! This (and the fact that WASP-100 has already been confirmed) is very reassuring that our transits are indeed real.