Candidate List Exercise#
Ogle et al. (2016) mined the NASA/IPAC Extragalactic Database (NED) to identify a new type of galaxy: Superluminous Spiral Galaxies.
Here’s the paper: https://ui.adsabs.harvard.edu/abs/2016ApJ…817..109O/abstract
Table 1 lists the positions of these Super Spirals. Based on those positions, let’s create multiwavelength cutouts for each super spiral to see what is unique about this new class of objects.
1. Import the Python modules we’ll be using#
# Suppress unimportant warnings.
import warnings
warnings.filterwarnings("ignore", module="astropy.io.votable.*")
warnings.filterwarnings("ignore", module="pyvo.utils.xml.*")
warnings.filterwarnings('ignore', '.*RADECSYS=*', append=True)
import matplotlib.pyplot as plt
import numpy as np
# For downloading files
from astropy.utils.data import download_file
from astropy.coordinates import SkyCoord
from astropy.io import fits
from astropy.nddata import Cutout2D
import astropy.visualization as vis
from astropy.wcs import WCS
from astroquery.ipac.ned import Ned
import pyvo as vo
The next cell prepares the notebook to display our visualizations.
%matplotlib inline
2. Search NED for objects in this paper#
Insert a Code Cell below by clicking on the “Insert” Menu and choosing “Insert Cell Below”. Then consult QuickReference.md to figure out how to use astroquery to search NED for all objects in a paper, based on the refcode of the paper. Inspect the resulting astropy table.
# Hint: the QuickReference has this example:
#objects_in_paper = Ned.query_refcode('2018ApJ...858...62K')
3. Filter the NED results#
The results from NED will include galaxies, but also other kinds of objects (e.g. galaxy clusters, galaxy groups). Print the ‘Type’ column to see the full range of classifications and filter the results so that we only keep the galaxies in the list.
6. Choose the AllWISE image service that you are interested in#
7. Choose one of the galaxies in the NED list#
What is the position of this galaxy?
# Hint: the QuickReference has this example:
# m83_pos = SkyCoord('13h37m00.950s -29d51m55.51s')
8. Search for a list of AllWISE images that cover this galaxy#
How many images are returned? Which are you most interested in?
# Hint: the QuickReference has this example:
#results = services[1].search(pos=m83_pos, size=.2)
9. Use the .to_table() method to view the results as an Astropy table#
10. From the result in 8., select the first record for an image taken in WISE band W1 (3.6 micron)#
Hints:
Loop over records and test on the
.bandpass_id
attribute of each recordPrint the
.title
and.bandpass_id
of the record you find, to verify it is the right one.
11. Visualize this AllWISE image#
Hint: Locate the galaxy in the image by overplotting a ring centered on the galaxy on the image
# Hint: the QuickReference has this example:
# file_name = download_file(results[0].getdataurl())
# Hint: when displaying the fits file play with the vmax value, a
# vmax value around 10 will display a nice image
12. Plot a cutout of the AllWISE image, centered on your position#
Try a 60 arcsecond cutout.
# Hint: using Cutout2D imported above from from astropy.nddata
13. Try visualizing a cutout of a GALEX image that covers your position#
Repeat steps 5, 6, 8 through 12 for GALEX.
# Steps 5 & 6: Search the services found in step 4 for GALEX Sources
# Hint: Choose the GALEX service on STSCI
# Steps 8 & 9: Find the images that contain your chosen galaxy
# and display using .to_table()
# Step 10: Select one of the images and print the title and relevent
# info. For example you can select an image with an 'enrValue' of 2.35e-07
# Step 11: Visualize the image and overplot a ring on the image centered
# on your galaxy. (A very small vmax value around 0.01 is recomended)
# Step 12: Use Cutout2D to get a 60 arcsecond cutout
# centered on the galaxy
14. Try visualizing a cutout of an SDSS image that covers your position#
Hints:
Search the registry using `keywords=[‘sloan’]
Find the service with a
short_name
of'SDSS SIAP'
From Known Issues, recall that an empty string must be specified to the
format
parameter dues to a bug in the service.After obtaining your search results, select r-band images using the
.title
attribute of the records that are returned, since.bandpass_id
is not populated.
(As a workaround to a bug in the SDSS service, pass format=''
as an argument to the search() function when using the SDSS service.)
# Search the registery to find a service
# Search the SDSS SIAP service for images containing your galaxy
# Find an image taken in the r filter
# Visualize the image and overplot a ring centered on the galaxy
# Hint: a vmax around 0.01 will produce a nice image
# use Cutout2D to get a 60 arcsecond cutout centered on the galaxy
15. Try looping over all positions and plotting multiwavelength cutouts#
Hint: Gather the data in ALLWISE, GALEX, and SDSS for each galaxy and plot as seperate cutouts centered on the galaxy position
Warning: this takes a long time to run! You can limit it to the first three galaxies only, for example, for testing.