Python package for astrometric plate solving
When the coordinates of an image (RA, dec) and the size of its field of view is approximately known, twirl can be used to compute a World Coordinate System (WCS) using GAIA reference stars.
twirl can be installed using pip:
pip install twirl
or using poetry:
poetry add twirl
twirl is designed to be complementary to the astropy package. It is used to compute a WCS by matching an image detected stars with catalog stars. To query the catalog stars, the center coordinates of the image must be known, as well as the size of the field of view. If not available, the latter can be computed using the known pixel scale of the detector.
Hence, the process starts by extracting the image RA-DEC center equatorial coordinate and compute the instrument field of view
import numpy as np
from astropy.io import fits
from astropy import units as u
from astropy.coordinates import SkyCoord
# Open some FITS image
hdu = fits.open("...")[0]
# get the center of the image
ra, dec = hdu.header["RA"], hdu.header["DEC"]
center = SkyCoord(ra, dec, unit=["deg", "deg"])
# and the size of its field of view
pixel = 0.66 * u.arcsec # known pixel scale
shape = hdu.data.shape
fov = np.max(shape) * pixel.to(u.deg)
We can then query the gaia stars in the field using this information
import twirl
sky_coords = twirl.gaia_radecs(center, 1.2 * fov)[0:12]
and match the queried stars to stars detected in the image
# detect stars in the image
pixel_coords = twirl.find_peaks(hdu.data)[0:12]
# compute the World Coordinate System
wcs = twirl.compute_wcs(pixel_coords, sky_coords)
leading to a World Coordinate System object.
A more complete example is provided in docs/ipynb/wcs.ipynb
The twirl project manages Python package dependencies using Poetry. You'll need to follow the instructions for installation there.
Then you can start a shell session with the new environment with:
$ poetry shell
N.B. For development with vscode you will need to run the following command:
$ poetry config virtualenvs.in-project true
This will installed the poetry .venv
in the root of the project and allow vscode to setup the environment correctly for development.
To start development, install all of the dependencies as:
$ poetry install
N.B. Ensure that any dependency changes are committed to source control, so everyone has a consistenct package dependecy list.
This package has made use of the algorithm from
Lang, D. et al. (2010). Astrometry.net: Blind Astrometric Calibration of Arbitrary Astronomical Images. The Astronomical Journal, 139(5), pp.1782–1800. doi:10.1088/0004-6256/139/5/1782.
implemented in
Garcia, L. J. et al. (2022). prose: a Python framework for modular astronomical images processing. MNRAS, vol. 509, no. 4, pp. 4817–4828, 2022. doi:10.1093/mnras/stab3113.
See this documentation page for the BibTeX entries.