Draw circles in ds9 on top of an image

1.4k Views Asked by At

I have an astronomical image of the entire night sky (the galactic plane in gamma rays) opened on ds9 in galactic coordinates. I would like to have ds9 draw circles over a list of coordinates that I provide, and draw these circles on top of the night sky image I already have. I know there must be a simple way of doing this, scratching my head over here....

1

There are 1 best solutions below

0
On

if you have a catalog of objects

import pandas as pd
from astropy.table import Table

# read catalog
candels_catalog = 'cat.csv'
df = pd.read_csv(candels_catalog)

# CSV to Astropy Table
table = Table.from_pandas(df)

# prepare .reg f=ile
reg_filename = "cat.reg"
with open(reg_filename, 'w') as regfile:
    regfile.write("# Region file format: DS9 version 4.1\n")
    regfile.write("global color=green dashlist=8 3 width=2 font=\"helvetica 10 normal roman\" select=1 highlite=1 dash=0 fixed=0 edit=1 move=1 delete=1 include=1 source=1\n")
    regfile.write("image\n")

    # over table'objects
    for obj in table:
        x, y = obj['X_IMAGE'], obj['Y_IMAGE']
        a, b = obj['A_IMAGE'], obj['B_IMAGE']
        theta = obj['THETA_IMAGE']

        # write.reg(use pixel coor)
        regfile.write("ellipse({},{},{},{},{})\n".format(x, y, a, b, theta))