forked from erosita/uds
upd
This commit is contained in:
17226
data/Gaia_unWISE/Gaia_unWISE_Coma.fits.catalog
Normal file
17226
data/Gaia_unWISE/Gaia_unWISE_Coma.fits.catalog
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -2,9 +2,9 @@
|
||||
|
||||
Каталог был получен с этого ресурса: https://zenodo.org/record/6837642#.ZAcufYBByRR
|
||||
|
||||
Для вырезки источников для работы с полем UDS была использована эта команда:
|
||||
Для вырезки источников для работы с полем Coma была использована эта команда:
|
||||
|
||||
```
|
||||
ftselect 'Gaia_unWISE_AGNs.fits[1]' Gaia_unWISE_UDS.fits 'RA > 32.75 && RA < 36.31 && DEC > -6.55 && DEC < -3.0' clobber=yes
|
||||
ftselect 'Gaia_unWISE_AGNs.fits[1]' Gaia_unWISE_Coma.fits 'RA > 185 && RA < 205 && DEC > 20 && DEC < 34.0' clobber=yes
|
||||
```
|
||||
|
||||
|
269
data/Gaia_unWISE/mosa_all_tm0_attcorr.bck
Normal file
269
data/Gaia_unWISE/mosa_all_tm0_attcorr.bck
Normal file
File diff suppressed because one or more lines are too long
18
data/Gaia_unWISE/print_ds9reg.py
Executable file
18
data/Gaia_unWISE/print_ds9reg.py
Executable file
@@ -0,0 +1,18 @@
|
||||
from astropy.io import fits
|
||||
import sys
|
||||
|
||||
filename='Gaia_unWISE_Coma.fits.catalog'
|
||||
fout=filename.replace(".fits.catalog", ".reg")
|
||||
|
||||
hdul = fits.open(filename)
|
||||
#hdul.info()
|
||||
|
||||
tbdata = hdul[1].data
|
||||
hdul.close()
|
||||
|
||||
|
||||
with open("./{}".format(fout), 'w') as writer:
|
||||
for rec in tbdata:
|
||||
print("fk5;circle({}, {}, 0.008)".format(rec['RA'],rec['DEC']))
|
||||
writer.write("fk5;circle({}, {}, {})\n".format(rec['RA'],rec['DEC'],0.0080000))
|
||||
|
Reference in New Issue
Block a user