Working with FITS-cubes

Working with FITS-cubes#

Authors#

Dhanesh Krishnarao (DK), Shravan Shetty, Diego Gonzalez-Casanova, Audra Hernandez, Kris Stern, Kelle Cruz, Stephanie Douglas

Learning Goals#

  • Find and download data using astroquery

  • Read and plot slices across different dimensions of a data cube

  • Compare different data sets (2D and 3D) by overploting contours

  • Transform coordinate projections and match data resolutions with reproject

  • Create intensity moment maps / velocity maps with spectral_cube

Keywords#

FITS, image manipulation, data cubes, radio astronomy, WCS, astroquery, reproject, spectral cube, matplotlib, contour plots, colorbar

Summary#

In this tutorial we will visualize 2D and 3D data sets in Galactic and equatorial coordinates.

The tutorial will walk you though a visual analysis of the Small Magellanic Cloud (SMC) using HI 21cm emission and a Herschel 250 micron map. We will learn how to read in data from a file, query and download matching data from Herschel using astroquery, and plot the resulting images in a multitude of ways.

The primary libraries we’ll be using are: astroquery, spectral_cube, reproject, matplotlib)

They can be installed using conda:

conda install -c conda-forge astroquery
conda install -c conda-forge spectral-cube
conda install -c conda-forge reproject

Alternatively, if you don’t use conda, you can use pip.

import numpy as np
import matplotlib.pyplot as plt
from matplotlib.colors import LogNorm

import astropy.units as u
from astropy.utils.data import download_file
from astropy.io import fits  # We use fits to open the actual data file

from astropy.utils import data

from spectral_cube import SpectralCube

from astroquery.esasky import ESASky
from astroquery.utils import TableList
from astropy.wcs import WCS
from reproject import reproject_interp

data.conf.remote_timeout = 60
/opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
  from .autonotebook import tqdm as notebook_tqdm

Download the HI Data#

We’ll be using HI 21 cm emission data from the HI4Pi survey. We want to look at neutral gas emission from the Magellanic Clouds and learn about the kinematics of the system and column densities. Using the VizieR catalog, we’ve found a relevant data cube to use that covers this region of the sky. You can also download an allsky data cube, but this is a very large file, so picking out sub-sections can be useful!

For us, the relevant file is available via ftp from CDS Strasbourg. We have a reduced version of it which will be a FITS data cube in Galactic coordinates using the tangential sky projection.

Sure, we could download this file directly, but why do that when we can load it up via one line of code and have it ready to use in our cache?

Download the HI Fits Cube#

# Downloads the HI data in a fits file format
hi_datafile = download_file(
    "http://data.astropy.org/tutorials/FITS-cubes/reduced_TAN_C14.fits",
    cache=True,
    show_progress=True,
)

Awesome, so now we have a copy of the data file (a FITS file). So how do we do anything with it?

Luckily for us, the spectral_cube package does a lot of the nitty gritty work for us to manipulate this data and even quickly look through it. So let’s open up our data file and read in the data as a SpectralCube!

The variable cube has the data using SpectralCube and hi_data is the data cube from the FITS file without the special formating from SpectralCube.

hi_data = fits.open(hi_datafile)  # Open the FITS file for reading
cube = SpectralCube.read(hi_data)  # Initiate a SpectralCube
hi_data.close()  # Close the FITS file - we already read it in and don't need it anymore!
If you happen to already have the FITS file on your system, you can also skip the fits.open step and just directly read a FITS file with SpectralCube like this:

#cube = SpectralCube.read('path_to_data_file/TAN_C14.fits')

So what does this SpectralCube object actually look like? Let’s find out! The first check is to print out the cube.

print(cube)
SpectralCube with shape=(450, 150, 150) and unit=K:
 n_x:    150  type_x: GLON-TAN  unit_x: deg    range:   286.727203 deg:  320.797623 deg
 n_y:    150  type_y: GLAT-TAN  unit_y: deg    range:   -50.336450 deg:  -28.401234 deg
 n_s:    450  type_s: VRAD      unit_s: m / s  range:  -598824.534 m / s:  600409.133 m / s

Some things to pay attention to here:#

A data cube has three axes. In this case, there is Galactic Longitude (x), Galactic Latitude (y), and a spectral axis in terms of a LSR Velocity (z - listed as s with spectral_cube).

The data hidden in the cube lives as an ndarray with shape (n_s, n_y, n_x) so that axis 0 corresponds with the Spectral Axis, axis 1 corresponds with the Galactic Latitude Axis, and axis 2 corresponds with the Galactic Longitude Axis.

When we print(cube) we can see the shape, size, and units of all axes as well as the data stored in the cube. With this cube, the units of the data in the cube are temperatures (K). The spatial axes are in degrees and the Spectral Axis is in (meters / second).

The cube also contains information about the coordinates corresponding to the data in the form of a WCS (World Coordinate System) object.

SpectralCube is clever and keeps all the data masked until you really need it so that you can work with large sets of data. So let’s see what our data actually looks like!

SpectralCube has a quicklook() method which can give a handy sneak-peek preview of the data. It’s useful when you just need to glance at a slice or spectrum without knowing any other information (say, to make sure the data isn’t corrupted or is looking at the right region.)

To do this, we index our cube along one axis (for a slice) or two axes (for a spectrum):

cube[
    300, :, :
].quicklook()  # Slice the cube along the spectral axis, and display a quick image
_images/9975fe7596148d50097c14981a812a829aedb2254de77f112d76982489f11327.png
cube[:, 75, 75].quicklook()  # Extract a single spectrum through the data cube
_images/51c97ca462963e6399451d6411b343a844dc2dd3d68ce38af859c6a1f7fcc456.png

Try messing around with slicing the cube along different axes, or picking out different spectra#

Make a smaller cube, focusing on the Magellanic Clouds#

The HI data cube we downloaded is bigger than we actually need it to be. Let’s try zooming in on just the part we need and make a new sub_cube.

The easiest way to do this is to cut out part of the cube with indices or coordinates.

We can extract the world coordinates from the cube using the .world() method.

Warning: using .world() will extract coordinates from every position you ask for. This can be a TON of data if you don't slice through the cube. One work around is to slice along two axes and extract coordinates just along a single dimension.

The output of .world() is an Astropy Quantity representing the pixel coordinates, which includes units. You can extract these Astropy Quantity objects by slicing the data.

_, lat, _ = cube.world[0, :, 0]  # extract latitude world coordinates from cube
_, _, lon = cube.world[0, 0, :]  # extract longitude world coordinates from cube

You can then extract a sub_cube in the spatial coordinates of the cube

# Define desired latitude and longitude range
lat_range = [-46, -40] * u.deg
lon_range = [306, 295] * u.deg

# Create a sub_cube cut to these coordinates
sub_cube = cube.subcube(
    xlo=lon_range[0], xhi=lon_range[1], ylo=lat_range[0], yhi=lat_range[1]
)

print(sub_cube)
SpectralCube with shape=(450, 38, 57) and unit=K:
 n_x:     57  type_x: GLON-TAN  unit_x: deg    range:   294.113498 deg:  306.009028 deg
 n_y:     38  type_y: GLAT-TAN  unit_y: deg    range:   -46.014280 deg:  -40.027398 deg
 n_s:    450  type_s: VRAD      unit_s: m / s  range:  -598824.534 m / s:  600409.133 m / s

Cut along the Spectral Axis:#

We don’t really need data from such a large velocity range so let’s just extract a little slab. We can do this in any units that we want using the .spectral_slab() method.

sub_cube_slab = sub_cube.spectral_slab(-300.0 * u.km / u.s, 300.0 * u.km / u.s)

print(sub_cube_slab)
SpectralCube with shape=(226, 38, 57) and unit=K:
 n_x:     57  type_x: GLON-TAN  unit_x: deg    range:   294.113498 deg:  306.009028 deg
 n_y:     38  type_y: GLAT-TAN  unit_y: deg    range:   -46.014280 deg:  -40.027398 deg
 n_s:    226  type_s: VRAD      unit_s: m / s  range:  -299683.842 m / s:  301268.441 m / s

Moment Maps#

Moment maps are a useful analysis tool to study data cubes. In short, a moment is a weighted integral along an axis (typically the Spectral Axis) that can give information about the total Intensity (or column density), mean velocity, or velocity dispersion along lines of sight.

SpectralCube makes this very simple with the .moment() method. We can convert to friendlier spectral units of km/s and these new 2D projections can be saved as new FITS files, complete with modified WCS information as well.

moment_0 = sub_cube_slab.with_spectral_unit(u.km / u.s).moment(
    order=0
)  # Zero-th moment
moment_1 = sub_cube_slab.with_spectral_unit(u.km / u.s).moment(order=1)  # First moment

# Write the moments as a FITS image
# moment_0.write('hi_moment_0.fits')
# moment_1.write('hi_moment_1.fits')

print("Moment_0 has units of: ", moment_0.unit)
print("Moment_1 has units of: ", moment_1.unit)

# Convert Moment_0 to a Column Density assuming optically thin media
hi_column_density = moment_0 * 1.82 * 10**18 / (u.cm * u.cm) * u.s / u.K / u.km
Moment_0 has units of:  K km / s
Moment_1 has units of:  km / s

Display the Moment Maps#

The WCSAxes framework in Astropy allows us to display images with different coordinate axes and projections.

As long as we have a WCS object associated with the data, we can transfer that projection to a matplotlib axis. SpectralCube makes it possible to access just the WCS object associated with a cube object.

print(moment_1.wcs)  # Examine the WCS object associated with the moment map
WCS Keywords

Number of WCS axes: 2
CTYPE : 'GLON-TAN' 'GLAT-TAN' 
CRVAL : 303.75 -40.0 
CRPIX : 11.557620817843869 40.3723930634757 
PC1_1 PC1_2  : 1.0 0.0 
PC2_1 PC2_2  : 0.0 1.0 
CDELT : -0.1494444443846667 0.1538888888273333 
NAXIS : 0  0

As expected, the first moment image we created only has two axes (Galactic Longitude and Galactic Latitude). We can pass in this WCS object directly into a matplotlib axis instance.

# Initiate a figure and axis object with WCS projection information
fig = plt.figure(figsize=(18, 12))
ax = fig.add_subplot(111, projection=moment_1.wcs)

# Display the moment map image
im = ax.imshow(moment_1.hdu.data, cmap="RdBu_r", vmin=0, vmax=200)
ax.invert_yaxis()  # Flips the Y axis

# Add axes labels
ax.set_xlabel("Galactic Longitude (degrees)", fontsize=16)
ax.set_ylabel("Galactic Latitude (degrees)", fontsize=16)

# Add a colorbar
cbar = plt.colorbar(im, pad=0.07)
cbar.set_label("Velocity (km/s)", size=16)

# Overlay set of RA/Dec Axes
overlay = ax.get_coords_overlay("fk5")
overlay.grid(color="white", ls="dotted", lw=2)
overlay[0].set_axislabel("Right Ascension (J2000)", fontsize=16)
overlay[1].set_axislabel("Declination (J2000)", fontsize=16)

# Overplot column density contours
levels = (1e20, 5e20, 1e21, 3e21, 5e21, 7e21, 1e22)  # Define contour levels to use
ax.contour(hi_column_density.hdu.data, cmap="Greys_r", alpha=0.5, levels=levels)
<matplotlib.contour.QuadContourSet at 0x7f3220de8410>
_images/7ea6258532f3b8288f0a99a7b00b5be61254d83625099953158e04a32eefee2e.png

As you can see, the WCSAxes framework is very powerful and similiar to making any matplotlib style plot.

Display a Longitude-Velocity Slice#

The WCSAxes framework in Astropy also lets us slice the data accross different dimensions. It is often useful to slice along a single latitude and display an image showing longtitude and velocity information only (position-velocity or longitude-velocity diagram).

This can be done by specifying the slices keyword and selecting the appropriate slice through the data.

slices requires a 3D tuple containing the index to be sliced along and where we want the two axes to be displayed. This should be specified in the same order as the WCS object (longitude, latitude, velocity) as opposed to the order of numpy array holding the data (velocity, latitude, longitude).

We then select the appropriate data by indexing along the numpy array.

lat_slice = 18  # Index of latitude dimension to slice along

# Initiate a figure and axis object with WCS projection information
fig = plt.figure(figsize=(18, 12))
ax = fig.add_subplot(111, projection=sub_cube_slab.wcs, slices=("y", lat_slice, "x"))
# Above, we have specified to plot the longitude along the y axis, pick only the lat_slice
# indicated, and plot the velocity along the x axis

# Display the slice
im = ax.imshow(
    sub_cube_slab[:, lat_slice, :].transpose().data
)  # Display the image slice
ax.invert_yaxis()  # Flips the Y axis

# Add axes labels
ax.set_xlabel("LSR Velocity (m/s)", fontsize=16)
ax.set_ylabel("Galactic Longitude (degrees)", fontsize=16)

# Add a colorbar
cbar = plt.colorbar(im, pad=0.07, orientation="horizontal")
cbar.set_label("Temperature (K)", size=16)
WARNING: WCSWarning: Slicing across a celestial axis results in an invalid WCS, so the celestial projection (TAN) is being removed.  The WCS indices being kept were [0 2]. [spectral_cube.wcs_utils]
WARNING: WCSWarning: Slicing across a celestial axis results in an invalid WCS, so the celestial projection (TAN) is being removed.  The view used was (slice(None, None, None), 18, slice(None, None, None)). [spectral_cube.wcs_utils]
_images/3cf78b5ca13f10f3aa2179da4f7aed610b78a12038de74e295efddaf64fa357c.png

As we can see, the SMC seems to be only along positive velocities.

Try:#

Create a new spectral slab isolating just the SMC and slice along a different dimension to create a latitude-velocity diagram#

Find and Download a Herschel Image#

This is great, but we want to compare the HI emission data with Herschel 350 micron emission to trace some dust. This can be done with astroquery. We can query for the data by mission, take a quick look at the table of results, and download data after selecting a specific wavelength or filter.

Since we are looking for Herschel data from an ESA mission, we will use the astroquery.ESASky class.

Specifically, the ESASKY.query_region_maps() method allows us to search for a specific region of the sky either using an Astropy SkyCoord object or a string specifying an object name. In this case, we can just search for the SMC. A radius to search around the object can also be specified.

# Query for Herschel data in a 1 degree radius around the SMC
result = ESASky.query_region_maps("SMC", radius=1 * u.deg, missions="Herschel")

print(result)
TableList with 1 tables:
	'0:HERSCHEL' with 15 column(s) and 28 row(s) 

Here, the result is a TableList which contains 24 Herschel data products that can be downloaded. We can see what information is available in this TableList by examining the keys in the Herschel Table.

result["HERSCHEL"].keys()
['fov',
 'postcard_url',
 'product_url',
 'observation_id',
 'observation_oid',
 'ra_deg',
 'dec_deg',
 'target_name',
 'instrument',
 'filter',
 'start_time',
 'end_time',
 'duration',
 'observing_mode_name',
 'stc_s']

We want to find a 350 micron image, so we need to look closer at the filters used for these observations.

result["HERSCHEL"]["filter"]
<MaskedColumn name='filter' dtype='object' unit='microns' description='Filter or filters used' length=28>
70, 160
250, 350, 500
100, 160
70, 160
70, 160
70, 160
70, 160
250, 350, 500
100, 160
70, 160
70, 160
70, 160
...
70, 160
100, 160
70, 160
250, 350, 500
70, 160
250, 350, 500
100, 160
70, 160
70, 160
70, 160
250, 350, 500

Luckily for us, there is an observation made with three filters: 250, 350, and 500 microns. This is the object we will want to download. One way to do this is by making a boolean mask to select out the Table entry corresponding with the desired filter. Then, the ESASky.get_maps() method will download our data provided a TableList argument.

Note that the below command requires an internet connection to download five quite large files. It could take several minutes to complete.
filters = result["HERSCHEL"]["filter"].astype(
    str
)  # Convert the list of filters from the query to a string

# Construct a boolean mask, searching for only the desired filters
mask = np.array(["250, 350, 500" == s for s in filters], dtype="bool")

# Re-construct a new TableList object containing only our desired query entry
target_obs = TableList(
    {"HERSCHEL": result["HERSCHEL"][mask]}
)  # This will be passed into ESASky.get_maps()

IR_images = ESASky.get_maps(target_obs)  # Download the images
IR_images["HERSCHEL"][0][
    "350"
].info()  # Display some information about the 350 micron image
INFO: Starting download of HERSCHEL data. (5 files) [astroquery.esasky.core]
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
Cell In[17], line 13
      8 # Re-construct a new TableList object containing only our desired query entry
      9 target_obs = TableList(
     10     {"HERSCHEL": result["HERSCHEL"][mask]}
     11 )  # This will be passed into ESASky.get_maps()
---> 13 IR_images = ESASky.get_maps(target_obs)  # Download the images
     14 IR_images["HERSCHEL"][0][
     15     "350"
     16 ].info()  # Display some information about the 350 micron image

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/site-packages/astroquery/esasky/core.py:1083, in ESASkyClass.get_maps(self, query_table_list, missions, download_dir, cache, verbose)
   1080     if query_mission.lower() in sanitized_missions:
   1081         table = self._table_for_mission(query_mission, descriptors)
   1082         maps[query_mission] = (
-> 1083             self._get_maps_for_mission(sanitized_query_table_list[query_mission], query_mission, download_dir,
   1084                                        cache, table, verbose=verbose))
   1086 if all([maps[mission].count(None) == len(maps[mission])
   1087         for mission in maps]):
   1088     log.info("No maps got downloaded, check errors above.")

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/site-packages/astroquery/esasky/core.py:1500, in ESASkyClass._get_maps_for_mission(self, maps_table, mission, download_dir, cache, table, is_spectra, verbose)
   1498         maps[key] = self._get_herschel_spectra(product_url, directory_path, cache, verbose=verbose)
   1499     else:
-> 1500         maps.append(self._get_herschel_map(product_url, directory_path, cache, verbose=verbose))
   1501 except HTTPError as err:
   1502     log.error("Download failed with {}.".format(err))

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/site-packages/astroquery/esasky/core.py:1585, in ESASkyClass._get_herschel_map(self, product_url, directory_path, cache, verbose)
   1583 def _get_herschel_map(self, product_url, directory_path, cache, verbose=False):
   1584     observation = dict()
-> 1585     response = self._request('GET', product_url, cache=cache,
   1586                              stream=True, headers=self._get_header())
   1587     response.raise_for_status()
   1589     with esatar.open(fileobj=BytesIO(response.content)) as tar:

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/site-packages/astroquery/query.py:386, in BaseQuery._request(self, method, url, params, data, headers, files, save, savedir, timeout, cache, stream, auth, continuation, verify, allow_redirects, json, return_response_on_save)
    378     if not response:
    379         response = query.request(self._session,
    380                                  self.cache_location,
    381                                  stream=stream,
   (...)    384                                  verify=verify,
    385                                  json=json)
--> 386         to_cache(response, query.request_file(self.cache_location))
    388 self._last_query = query
    389 return response

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/site-packages/astroquery/query.py:36, in to_cache(response, cache_file)
     33 def to_cache(response, cache_file):
     34     log.debug("Caching data to {0}".format(cache_file))
---> 36     response = copy.deepcopy(response)
     37     if hasattr(response, 'request'):
     38         for key in tuple(response.request.hooks.keys()):

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/copy.py:151, in deepcopy(x, memo, _nil)
    149 reductor = getattr(x, "__reduce_ex__", None)
    150 if reductor is not None:
--> 151     rv = reductor(4)
    152 else:
    153     reductor = getattr(x, "__reduce__", None)

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/site-packages/requests/models.py:715, in Response.__getstate__(self)
    711 def __getstate__(self):
    712     # Consume everything; accessing the content attribute makes
    713     # sure the content has been fully read.
    714     if not self._content_consumed:
--> 715         self.content
    717     return {attr: getattr(self, attr, None) for attr in self.__attrs__}

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/site-packages/requests/models.py:902, in Response.content(self)
    900         self._content = None
    901     else:
--> 902         self._content = b"".join(self.iter_content(CONTENT_CHUNK_SIZE)) or b""
    904 self._content_consumed = True
    905 # don't need to release the connection; that's been handled by urllib3
    906 # since we exhausted the data.

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/site-packages/requests/models.py:820, in Response.iter_content.<locals>.generate()
    818 if hasattr(self.raw, "stream"):
    819     try:
--> 820         yield from self.raw.stream(chunk_size, decode_content=True)
    821     except ProtocolError as e:
    822         raise ChunkedEncodingError(e)

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/site-packages/urllib3/response.py:1088, in HTTPResponse.stream(self, amt, decode_content)
   1072 """
   1073 A generator wrapper for the read() method. A call will block until
   1074 ``amt`` bytes have been read from the connection or until the
   (...)   1085     'content-encoding' header.
   1086 """
   1087 if self.chunked and self.supports_chunked_reads():
-> 1088     yield from self.read_chunked(amt, decode_content=decode_content)
   1089 else:
   1090     while not is_fp_closed(self._fp) or len(self._decoded_buffer) > 0:

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/site-packages/urllib3/response.py:1251, in HTTPResponse.read_chunked(self, amt, decode_content)
   1249 if self.chunk_left == 0:
   1250     break
-> 1251 chunk = self._handle_chunk(amt)
   1252 decoded = self._decode(
   1253     chunk, decode_content=decode_content, flush_decoder=False
   1254 )
   1255 if decoded:

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/site-packages/urllib3/response.py:1197, in HTTPResponse._handle_chunk(self, amt)
   1195     returned_chunk = value
   1196 else:  # amt > self.chunk_left
-> 1197     returned_chunk = self._fp._safe_read(self.chunk_left)  # type: ignore[union-attr]
   1198     self._fp._safe_read(2)  # type: ignore[union-attr] # Toss the CRLF at the end of the chunk.
   1199     self.chunk_left = None

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/http/client.py:642, in HTTPResponse._safe_read(self, amt)
    635 def _safe_read(self, amt):
    636     """Read the number of bytes requested.
    637 
    638     This function should be used when <amt> bytes "should" be present for
    639     reading. If the bytes are truly not available (due to EOF), then the
    640     IncompleteRead exception can be used to detect the problem.
    641     """
--> 642     data = self.fp.read(amt)
    643     if len(data) < amt:
    644         raise IncompleteRead(data, amt-len(data))

File /opt/hostedtoolcache/Python/3.12.11/x64/lib/python3.12/socket.py:720, in SocketIO.readinto(self, b)
    718 while True:
    719     try:
--> 720         return self._sock.recv_into(b)
    721     except timeout:
    722         self._timeout_occurred = True

KeyboardInterrupt: 

Since we are just doing some qualitative analysis, we only need the image, but you can also access lots of other information from our downloaded object, such as errors.

Let’s go ahead and extract just the WCS information and image data from the 350 micron image.

herschel_header = IR_images["HERSCHEL"][0]["350"]["image"].header
herschel_wcs = WCS(IR_images["HERSCHEL"][0]["350"]["image"])  # Extract WCS information
herschel_imagehdu = IR_images["HERSCHEL"][0]["350"]["image"]  # Extract Image data
print(herschel_wcs)

With this, we can display this image using matplotlib with WCSAxes and the LogNorm() object so we can log scale our image.

# Set Nans to zero
himage_nan_locs = np.isnan(herschel_imagehdu.data)
herschel_data_nonans = herschel_imagehdu.data
herschel_data_nonans[himage_nan_locs] = 0

# Initiate a figure and axis object with WCS projection information
fig = plt.figure(figsize=(18, 12))
ax = fig.add_subplot(111, projection=herschel_wcs)

# Display the moment map image
im = ax.imshow(herschel_data_nonans, cmap="viridis", norm=LogNorm(vmin=2, vmax=50))
# ax.invert_yaxis() # Flips the Y axis

# Add axes labels
ax.set_xlabel("Right Ascension", fontsize=16)
ax.set_ylabel("Declination", fontsize=16)
ax.grid(color="white", ls="dotted", lw=2)

# Add a colorbar
cbar = plt.colorbar(im, pad=0.07)
cbar.set_label(
    "".join(["Herschel 350" r"$\mu$m ", "(", herschel_header["BUNIT"], ")"]), size=16
)

# Overlay set of Galactic Coordinate Axes
overlay = ax.get_coords_overlay("galactic")
overlay.grid(color="black", ls="dotted", lw=1)
overlay[0].set_axislabel("Galactic Longitude", fontsize=14)
overlay[1].set_axislabel("Galactic Latitude", fontsize=14)

Overlay HI 21 cm Contours on the IR 30 micron Image#

To visually compare the neutral gas and dust as traced by HI 21 cm emission and IR 30 micron emission, we can use contours and colorscale images produced using the WCSAxes framework and the .get_transform() method.

The WCSAxes.get_transform() method returns a transformation from a specified frame to the pixel/data coordinates. It accepts a string specifying the frame or a WCS object.

# Initiate a figure and axis object with WCS projection information
fig = plt.figure(figsize=(18, 12))
ax = fig.add_subplot(111, projection=herschel_wcs)

# Display the moment map image
im = ax.imshow(
    herschel_data_nonans, cmap="viridis", norm=LogNorm(vmin=5, vmax=50), alpha=0.8
)
# ax.invert_yaxis() # Flips the Y axis

# Add axes labels
ax.set_xlabel("Right Ascension", fontsize=16)
ax.set_ylabel("Declination", fontsize=16)
ax.grid(color="white", ls="dotted", lw=2)

# Extract x and y coordinate limits
x_lim = ax.get_xlim()
y_lim = ax.get_ylim()

# Add a colorbar
cbar = plt.colorbar(im, fraction=0.046, pad=-0.1)
cbar.set_label(
    "".join(["Herschel 350" r"$\mu$m ", "(", herschel_header["BUNIT"], ")"]), size=16
)

# Overlay set of RA/Dec Axes
overlay = ax.get_coords_overlay("galactic")
overlay.grid(color="black", ls="dotted", lw=1)
overlay[0].set_axislabel("Galactic Longitude", fontsize=14)
overlay[1].set_axislabel("Galactic Latitude", fontsize=14)

hi_transform = ax.get_transform(
    hi_column_density.wcs
)  # extract axes Transform information for the HI data

# Overplot column density contours
levels = (2e21, 3e21, 5e21, 7e21, 8e21, 1e22)  # Define contour levels to use
ax.contour(
    hi_column_density.hdu.data,
    cmap="Greys_r",
    alpha=0.8,
    levels=levels,
    transform=hi_transform,
)  # include the transform information with the keyword "transform"

# Overplot velocity image so we can also see the Gas velocities
im_hi = ax.imshow(
    moment_1.hdu.data,
    cmap="RdBu_r",
    vmin=0,
    vmax=200,
    alpha=0.5,
    transform=hi_transform,
)

# Add a second colorbar for the HI Velocity information
cbar_hi = plt.colorbar(im_hi, orientation="horizontal", fraction=0.046, pad=0.07)
cbar_hi.set_label("HI " r"$21$cm Mean Velocity (km/s)", size=16)

# Apply original image x and y coordinate limits
ax.set_xlim(x_lim)
ax.set_ylim(y_lim)

Using reproject to match image resolutions#

The reproject package is a powerful tool allowing for image data to be transformed into a variety of projections and resolutions. It’s most powerful use is in fact to transform data from one map projection to another without losing any information and still properly conserving flux values within the data. It even has a method to perform a fast reprojection if you are not too concerned with the absolute accuracy of the data values.

A simple use of the reproject package is to scale down (or up) resolutions of an image artificially. This could be a useful step if you are trying to get emission line ratios or directly compare the Intensity or Flux from a tracer to that of another tracer in the same physical point of the sky.

From our previously made images, we can see that the IR Herschel Image has a higher spatial resolution than that of the HI data cube. We can look into this more by taking a better look at both header objects and using reproject to downscale the Herschel Image.

print("IR Resolution (dx,dy) = ", herschel_header["cdelt1"], herschel_header["cdelt2"])

print(
    "HI Resolution (dx,dy) = ",
    hi_column_density.hdu.header["cdelt1"],
    hi_column_density.hdu.header["cdelt1"],
)
Note: Different ways of accessing the header are shown above corresponding to the different object types (coming from SpectralCube vs astropy.io.fits)

As we can see, the IR data has over 10 times higher spatial resolution. In order to create a new projection of an image, all we need to specifiy is a new header containing WCS information to transform into. These can be created manually if you wanted to completely change something about the projection type (i.e. going from a Mercator map projection to a Tangential map projection). For us, since we want to match our resolutions, we can just “steal” the WCS object from the HI data. Specifically, we will be using the reproject_interp() function. This takes two arguments: an HDU object that you want to reproject, and a header containing WCS information to reproject onto.

rescaled_herschel_data, _ = reproject_interp(
    herschel_imagehdu,
    # reproject the Herschal image to match the HI data
    hi_column_density.hdu.header,
)

rescaled_herschel_imagehdu = fits.PrimaryHDU(
    data=rescaled_herschel_data,
    # wrap up our reprojection as a new fits HDU object
    header=hi_column_density.hdu.header,
)

rescaled_herschel_imagehdu will now behave just like the other FITS images we have been working with, but now with a degraded resolution matching the HI data. This includes having its native coordinates in Galactic rather than RA and Dec.

# Set Nans to zero
image_nan_locs = np.isnan(rescaled_herschel_imagehdu.data)
rescaled_herschel_data_nonans = rescaled_herschel_imagehdu.data
rescaled_herschel_data_nonans[image_nan_locs] = 0

# Initiate a figure and axis object with WCS projection information
fig = plt.figure(figsize=(18, 12))
ax = fig.add_subplot(111, projection=WCS(rescaled_herschel_imagehdu))

# Display the moment map image
im = ax.imshow(
    rescaled_herschel_data_nonans,
    cmap="viridis",
    norm=LogNorm(vmin=5, vmax=50),
    alpha=0.8,
)
# im = ax.imshow(rescaled_herschel_imagehdu.data, cmap = 'viridis',
#               norm = LogNorm(), vmin = 5, vmax = 50, alpha = .8)
ax.invert_yaxis()  # Flips the Y axis

# Add axes labels
ax.set_xlabel("Galactic Longitude", fontsize=16)
ax.set_ylabel("Galactic Latitude", fontsize=16)
ax.grid(color="white", ls="dotted", lw=2)

# Extract x and y coordinate limits
x_lim = ax.get_xlim()
y_lim = ax.get_ylim()

# Add a colorbar
cbar = plt.colorbar(im, fraction=0.046, pad=-0.1)
cbar.set_label(
    "".join(["Herschel 350" r"$\mu$m ", "(", herschel_header["BUNIT"], ")"]), size=16
)

# Overlay set of RA/Dec Axes
overlay = ax.get_coords_overlay("fk5")
overlay.grid(color="black", ls="dotted", lw=1)
overlay[0].set_axislabel("Right Ascension", fontsize=14)
overlay[1].set_axislabel("Declination", fontsize=14)

hi_transform = ax.get_transform(
    hi_column_density.wcs
)  # extract axes Transform information for the HI data

# Overplot column density contours
levels = (2e21, 3e21, 5e21, 7e21, 8e21, 1e22)  # Define contour levels to use
ax.contour(
    hi_column_density.hdu.data,
    cmap="Greys_r",
    alpha=0.8,
    levels=levels,
    transform=hi_transform,
)  # include the transform information with the keyword "transform"

# Overplot velocity image so we can also see the Gas velocities
im_hi = ax.imshow(
    moment_1.hdu.data,
    cmap="RdBu_r",
    vmin=0,
    vmax=200,
    alpha=0.5,
    transform=hi_transform,
)

# Add a second colorbar for the HI Velocity information
cbar_hi = plt.colorbar(im_hi, orientation="horizontal", fraction=0.046, pad=0.07)
cbar_hi.set_label("HI " r"$21$cm Mean Velocity (km/s)", size=16)

# Apply original image x and y coordinate limits
ax.set_xlim(x_lim)
ax.set_ylim(y_lim)

The real power of reproject is in actually changing the map projection used to display the data. This is done by creating a WCS object that contains a different projection type such as CTYPE : 'RA---CAR'  'DEC--CAR' as opposed to CTYPE : 'RA---TAN'  'DEC--TAN'.

Challenge:#

Use reproject and WCS to create a new WCS object in a different map projection and see how distortions in the image can change.