Science User Case - Inspecting a Candidate List

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.

The next cell prepares the notebook to display our visualizations.

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.

3. Filter the NED results.

The results from NED will include galaxies, but also other kinds of objects. Print the 'Type' column to see the full range of classifications. Next, print the 'Type' of just the first source in the table, in order to determine its data type (since Python 3 distinguishes between strings and byte strings). Finally, use the data type information to filter the results so that we only keep the galaxies in the list.

4. Search the NAVO Registry for image resources.

The paper selected super spirals using WISE, SDSS, and GALEX images. Search the NAVO registry for all image resources, using the 'service_type' search parameter. How many image resources are currently available?

5. Search the NAVO Registry for image resources that will allow you to search for AllWISE images.

There are hundreds of image resources...too many to quickly read through. Try adding the 'keywords' search parameter to your registry search, and find the image resource you would need to search the AllWISE images. Remember from the Known Issues that 'keywords' must be a list.

6. Choose the AllWISE image service that you are interested in.

7. Choose one of the galaxies in the NED list.

8. Search for a list of AllWISE images that cover this galaxy.

How many images are returned? Which are you most interested in?

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:

11. Visualize this AllWISE image.

12. Plot a cutout of the AllWISE image, centered on your position.

Try a 60 arcsecond cutout.

13. Try visualizing a cutout of a GALEX image that covers your position.

Repeat steps 4, 5, 6, 8 through 12 for GALEX.

14. Try visualizing a cutout of an SDSS image that covers your position.

Hints:

As a workaround to a bug in the SDSS service, pass format='' when searching.

15. Try looping over all positions and plotting multiwavelength cutouts.

Warning: this cell takes a long time to run! We limit it to the first three galaxies only.