Footprint

Where has MaNGA observed?

MaNGA survey area
MaNGA footprint in Data Release 14

 

MaNGA's target selection needs galaxies with SDSS imaging and known redshifts. Therefore, the sample is selected from the NYU VAGC LSS footprint. We assign all targets selected to a number of 3-degree-diameter circular fields which match the field of view of the telescope. Our final field list (what we refer to as “tiling catalogue”) contains ~1800 of these fields (tiles). Given the observing time allocated and the typical clear night fraction at APO, we will only be able to observe about 600 tiles in six years.

The grey symbols in the figure above show the distribution of all our potential fields (tiles) in the NYU VAGC LSS footprint. The blue symbols indicate the fields for the 166 plates whose data are being released in DR14. These exclude all-sky plates and standard star plates (see special plates page for detail). The observed plates are largely concentrated in a band around declination ~45 degrees. Fields around that declination are easier to observe, as they reach high altitude in the sky but not too close to the zenith where tracking is more challenging for an Alt-Az telescope. These fields also have longer visibility windows and are easier to schedule, given the observing strategy for MaNGA (see Law et al. 2015).

The fact that there are more fields or tiles than MaNGA will be able to observe during the lifetime of SDSS-IV means that we have a fair degree of freedom to optimize our footprint. We have started to prioritize fields that overlap with other surveys, which will provide additional, multi-wavelength data for MaNGA galaxies (see Yan et al. 2016 for details). This overlap will become more evident in future data releases, once those fields have been observed. A more in-depth discussion and forecast of the fields that MaNGA will observe in the future can be found in the MaNGA field layout forecast page.

How to get the list of observed plates?

Python

It is possible to obtain a list of all the observed plates from the drpall file, as well as select plates that contain certain targets in which you are interested. Using Astropy and Numpy to obtain a list of all reduced plates, you can do

from astropy.table import Table
import numpy as np
drpall = Table.read('drpall-v2_1_2.fits')
plates = np.unique(drpall['plate'])

At this point you may want to reject plates without galaxy targets, for instance:


targets = drpall[np.where((drpall[‘mngtarg1'] > 0) | (drpall['mngtarg3'] > 0))]
plates = np.unique(drpall['plate'])

If you are interested in finding all plates that contain ancillary targets for a specific program, you can use the manga_target3 column (see more about bitmasks). For instance, the bit for the Milky Way analogues program is 13. To get the plates for the two observed targets in DR14, we do

targets = drpall[np.where(drpall['mngtarg3'] & 1<<13)]
plates = np.unique(targets['plate'])