Initial commit

This commit is contained in:
XMM
2025-04-22 11:27:02 +03:00
commit 2ef88dc858
49 changed files with 66656 additions and 0 deletions

13
data/NuSTAR/print_ds9reg.py Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from astropy.io import fits
hdul = fits.open('nustar.fits.catalog')
tbdata = hdul[1].data
hdul.close()
with open("../../products/nustar_UDS.reg", 'w') as writer:
for rec in tbdata:
writer.write("fk5;circle({}, {}, 0.0025) # color=magenta text={{{}}}\n".format(rec['RAJ2000'], rec['DEJ2000'], rec['NuSTAR']))