forked from erosita/uds
final catalog ready
This commit is contained in:
4281
data/4XMM-DR12/4XMM_DR12cat_slim_v1.0_UDS.fits.catalog
Normal file
4281
data/4XMM-DR12/4XMM_DR12cat_slim_v1.0_UDS.fits.catalog
Normal file
File diff suppressed because one or more lines are too long
10
data/4XMM-DR12/README.md
Normal file
10
data/4XMM-DR12/README.md
Normal file
@@ -0,0 +1,10 @@
|
||||
В данной директории находится каталог 4XMM-DR12
|
||||
|
||||
Источник: http://xmmssc.irap.omp.eu/Catalogue/4XMM-DR12/4XMM_DR12.html
|
||||
|
||||
Для вырезки источников для работы с полем UDS была использована эта команда:
|
||||
|
||||
```
|
||||
ftselect '4XMM_DR12cat_slim_v1.0.fits[1]' 4XMM_DR12cat_slim_v1.0_UDS.fits 'SC_RA > 32.75 && SC_RA < 36.31 && SC_DEC > -6.55 && SC_DEC < -3.0' clobber=yes
|
||||
```
|
||||
|
15
data/4XMM-DR12/print_ds9reg.py
Executable file
15
data/4XMM-DR12/print_ds9reg.py
Executable file
@@ -0,0 +1,15 @@
|
||||
from astropy.io import fits
|
||||
import sys
|
||||
|
||||
filename='4XMM_DR12cat_slim_v1.0_UDS.fits.catalog'
|
||||
fout=filename.replace(".fits.catalog", ".names.reg")
|
||||
|
||||
hdul = fits.open(filename)
|
||||
#hdul.info()
|
||||
|
||||
tbdata = hdul[1].data
|
||||
|
||||
with open("../../products/{}".format(fout), 'w') as writer:
|
||||
for rec in tbdata:
|
||||
#writer.write("fk5;point({}, {})\n".format(rec['sc_ra'],rec['sc_dec']))
|
||||
writer.write("fk5;circle({}, {}, {}) # text={{{}}}\n".format(rec['sc_ra'],rec['sc_dec'],rec['sc_poserr']/3600,rec['IAUNAME']))
|
196
data/MCXC/mcxc.fits.catalog
Normal file
196
data/MCXC/mcxc.fits.catalog
Normal file
File diff suppressed because one or more lines are too long
15
data/MCXC/print_ds9reg.py
Executable file
15
data/MCXC/print_ds9reg.py
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
from astropy.io import fits
|
||||
|
||||
hdul = fits.open('mcxc.fits.catalog')
|
||||
tbdata = hdul[1].data
|
||||
hdul.close()
|
||||
|
||||
with open("../../products/mcxc.reg", 'w') as writer:
|
||||
for rec in tbdata:
|
||||
writer.write("fk5;point({}, {}) # color=magenta text={{{}}}\n".format(rec['RAJ2000'],
|
||||
rec['DEJ2000'],
|
||||
rec['OName'],))
|
||||
|
||||
|
4
data/SXDS/README.md
Normal file
4
data/SXDS/README.md
Normal file
@@ -0,0 +1,4 @@
|
||||
В данной директории находится каталог Subaru/XMM-Newton deep survey (SXDS) https://ui.adsabs.harvard.edu/abs/2008ApJS..179..124U/abstract
|
||||
|
||||
Каталог был получен с этого ресурса: https://cdsarc.cds.unistra.fr/viz-bin/cat/J/ApJS/179/124
|
||||
|
477
data/SXDS/SXDS.fits.catalog
Normal file
477
data/SXDS/SXDS.fits.catalog
Normal file
File diff suppressed because one or more lines are too long
16
data/SXDS/print_ds9reg.py
Executable file
16
data/SXDS/print_ds9reg.py
Executable file
@@ -0,0 +1,16 @@
|
||||
from astropy.io import fits
|
||||
import sys
|
||||
|
||||
filename='SXDS.fits.catalog'
|
||||
fout=filename.replace(".fits.catalog", ".reg")
|
||||
|
||||
hdul = fits.open(filename)
|
||||
#hdul.info()
|
||||
|
||||
tbdata = hdul[1].data
|
||||
|
||||
with open("../../products/{}".format(fout), 'w') as writer:
|
||||
for rec in tbdata:
|
||||
text="{}{}".format(rec['__UWS2008_'],rec['Note'])
|
||||
#writer.write("fk5;point({}, {})\n".format(rec['sc_ra'],rec['sc_dec']))
|
||||
writer.write("fk5;circle({}, {}, {}) # text={{{}}}\n".format(rec['RAJ2000'],rec['DEJ2000'],rec['e_pos']/3600,text))
|
10
data/X-CLASS/README.md
Normal file
10
data/X-CLASS/README.md
Normal file
@@ -0,0 +1,10 @@
|
||||
В данной директории находится каталог скоплений галактик X-CLASS из статьи https://ui.adsabs.harvard.edu/abs/2021A%26A...652A..12K/abstract
|
||||
|
||||
Каталог был получен с этого ресурса: https://vizier.cds.unistra.fr/viz-bin/VizieR-3?-source=J/A%2bA/652/A12/table3
|
||||
|
||||
Для вырезки источников для работы с полем UDS была использована эта команда:
|
||||
|
||||
```
|
||||
ftselect 'x-class.fits[1]' x-class_UDS.fits 'RAJ2000 > 32.75 && RAJ2000 < 36.31 && DEJ2000 > -6.55 && DEJ2000 < -3.0' clobber=yes
|
||||
```
|
||||
|
18
data/X-CLASS/print_ds9reg.py
Executable file
18
data/X-CLASS/print_ds9reg.py
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
from astropy.io import fits
|
||||
|
||||
hdul = fits.open('x-class_UDS.fits.catalog')
|
||||
tbdata = hdul[1].data
|
||||
hdul.close()
|
||||
|
||||
with open("../../products/x-class_UDS.fits.reg", 'w') as writer:
|
||||
for rec in tbdata:
|
||||
writer.write("fk5;circle({}, {}, {}) # color=magenta text={{{} {:.2f} {:.2f}}}\n".format(rec['RAJ2000'],
|
||||
rec['DEJ2000'],
|
||||
rec['extent']/3600,
|
||||
rec['XClass'],
|
||||
rec['MLdet'],
|
||||
rec['MLext'],))
|
||||
|
||||
|
603
data/X-CLASS/x-class.fits.catalog
Normal file
603
data/X-CLASS/x-class.fits.catalog
Normal file
File diff suppressed because one or more lines are too long
10
data/X-CLASS/x-class_UDS.fits.catalog
Normal file
10
data/X-CLASS/x-class_UDS.fits.catalog
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user