Hubble Catalog of Variables Notebook (CasJobs version)#

This notebook shows how to access the Hubble Catalogs of Variables (HCV). The HCV is a large catalog of faint variable objects extracted from version 3 of the Hubble Source Catalog. The HCV project at the National Observatory of Athens was funded by the European Space Agency (PI: Alceste Bonanos). The data products for the HCV are available both at the ESA Hubble Archive at ESAC through the HCV Explorer interface and at STScI. See Bonanos et al. (2019) for more details.

Data tables in MAST CasJobs are queried from Python using the mastcasjobs module. For similar examples using the MAST API, which is easier to use but less powerful than CasJobs, see HCV_API_demo.

Instructions:#

  • Complete the initialization steps described below.

  • Run the notebook to completion.

  • Modify and rerun any sections of the Table of Contents below.

Table of Contents#

  • Intialization

  • Variable objects in IC 1613

    • Name resolver

    • Select objects from HCV

    • Information on HCV variable classification

    • Sky coverage

    • Properties of variable objects

    • Color magnitude diagram

  • Light curve for a nova in M87

    • Extract and plot light curve for the nova

    • HLA cutout images for selected measurements

  • Compare the HCV automatic classification to expert validations

    • Plot MAD variability index distribution

    • Plot fraction of artifacts vs. MAD

  • Plot light curve for most variable high-quality candidate in the HCV

Initialization #

Install Python modules#

  1. This notebook requires the use of Python 3.

  2. Modules can be installed with conda, if using the Anaconda distribution of python, or with pip.

    • If you are using conda, do not install / update / remove a module with pip, that exists in a conda channel.

    • If a module is not available with conda, then it’s okay to install it with pip

  3. Install mastcasjobs and casjobs with pip:

pip install mastcasjobs

Set up your CasJobs account information#

You must have a MAST Casjobs account. Note that MAST Casjobs accounts are independent of SDSS Casjobs accounts.

For easy startup, you can optionally set the environment variables CASJOBS_USERID and/or CASJOBS_PW with your Casjobs account information. The Casjobs user ID and password are what you enter when logging into Casjobs.

This script prompts for your Casjobs user ID and password during initialization if the environment variables are not defined.

import astropy
from astropy.coordinates import SkyCoord
import time
import sys
import os
import requests
import json
import numpy as np
import matplotlib.pyplot as plt

from PIL import Image
from io import BytesIO

from astropy.table import Table, join

# check that version of mastcasjobs is new enough
# we are using some features not in version 0.0.1
from pkg_resources import get_distribution
from packaging.version import Version as V

assert V(get_distribution("mastcasjobs").version) >= V('0.0.2'), """
A newer version of mastcasjobs is required.
Update mastcasjobs to current version using this command:
pip install --upgrade git+git://github.com/rlwastro/mastcasjobs@master
"""

import mastcasjobs

# set width for pprint
astropy.conf.max_width = 150
/tmp/ipykernel_1947/2985569151.py:18: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
  from pkg_resources import get_distribution
# set universal matplotlib parameters
plt.rcParams.update({'font.size': 16})
HSCContext = "HSCv3"

Set up Casjobs environment.

import getpass
if not os.environ.get('CASJOBS_USERID'):
    os.environ['CASJOBS_USERID'] = input('Enter Casjobs UserID:')
if not os.environ.get('CASJOBS_PW'):
    os.environ['CASJOBS_PW'] = getpass.getpass('Enter Casjobs password:')

Variable objects near IC 1613 #

Use astropy name resolver to get position of IC 1613 #

target = 'IC 1613'
coord_ic1613 = SkyCoord.from_name(target)

ra_ic1613 = coord_ic1613.ra.degree
dec_ic1613 = coord_ic1613.dec.degree
print(f'ra: {ra_ic1613}\ndec: {dec_ic1613}')
ra: 16.2016962
dec: 2.1194959

Select objects near IC 1613 with ACS F475W and F814W measurements from HCV #

This searches the HCV summary table for objects within 0.5 degrees of the galaxy center. Note that this returns both variable and non-variable objects. We restrict the sample to objects with measurements in the two filters of interest. This uses the SearchHCVMatchID function to do the cone search.

DBtable = "HCV_demo"
jobs = mastcasjobs.MastCasJobs(context="MyDB")

# drop table if it already exists
jobs.drop_table_if_exists(DBtable)

# get main information
radius = 1800.0 # arcsec
query = f"""
select m.MatchID, m.GroupID, m.SubGroupID, m.RA, m.Dec,
   m.AutoClass, m.ExpertClass, m.NumFilters,
   f.Filter, f.FilterDetFlag, f.VarQualFlag, f.NumLC, 
   f.MeanMag, f.MeanCorrMag, f.MAD, f.Chi2
into mydb.{DBtable}
from SearchHCVMatchID({ra_ic1613},{dec_ic1613},{radius}) s
join HCVmatch m on m.MatchID=s.MatchID
join HCVfilter f on f.MatchID=s.MatchID and (f.Filter='ACS_F475W' or f.Filter='ACS_F814W')
"""

t0 = time.time()
results = jobs.quick(query, task_name="HCV demo", context=HSCContext)

print(f"Completed in {(time.time()-t0):.1f} sec")
print(results)

# fast retrieval using special MAST Casjobs service
tab = jobs.fast_table(DBtable, verbose=True)

# clean up the output format
tab['MeanMag'].format = "{:.3f}"
tab['MeanCorrMag'].format = "{:.3f}"
tab['MAD'].format = "{:.4f}"
tab['Chi2'].format = "{:.4f}"
tab['RA'].format = "{:.6f}"
tab['Dec'].format = "{:.6f}"

# show some of the variable sources
tab[tab['AutoClass'] > 0]
Completed in 4.2 sec
Rows Affected
-------------
        40196
1.1 s: Retrieved 6.34MB table MyDB.HCV_demo
1.4 s: Converted to 40196 row table
Table length=522
MatchIDGroupIDSubGroupIDRADecAutoClassExpertClassNumFiltersFilterFilterDetFlagVarQualFlagNumLCMeanMagMeanCorrMagMADChi2
int64int32int32float64float64int32int32int32str9uint8str5int32float64float64float64float64
1213128869810-516.0956592.161246112ACS_F475W1BACAA1225.24825.2500.129611.8544
1213128869810-516.0956592.161246112ACS_F814W0AAAAC1225.21525.2170.06112.3024
8265372269810-516.0972392.162066212ACS_F475W1AACAA1225.23725.2380.231264.6089
8265372269810-516.0972392.162066212ACS_F814W1BACAA1225.06925.0700.141620.4986
10043722869810-516.1113092.160908212ACS_F475W1ABCAA1223.24923.2490.12151231.5608
10043722869810-516.1113092.160908212ACS_F814W1ABCAA1222.85022.8500.0719329.2444
435874569810-516.1119612.157844121ACS_F475W1AACAA726.10826.1110.101144.0548
7821790469810-516.1103552.162592212ACS_F475W1AACAA925.37425.3750.434344.1083
7821790469810-516.1103552.162592212ACS_F814W1AACAB925.18925.1890.180411.1780
2465231969810-516.1074122.164411122ACS_F475W0BABAC825.22525.2230.04853.9213
................................................
8599225169810-516.1077862.137201122ACS_F475W1BABBB1223.77123.7720.042923.5525
8599225169810-516.1077862.137201122ACS_F814W0AABCC1222.62722.6290.020875.8925
9206051869810-516.1158202.133626242ACS_F475W1BACBA1224.59024.5890.070915.7116
9206051869810-516.1158202.133626242ACS_F814W1CACBA1223.87423.8750.101142.4428
9721241869810-516.1120972.133198222ACS_F475W1BAAAB1220.35520.3560.0433948.4441
9721241869810-516.1120972.133198222ACS_F814W1CACCA1221.34621.3470.0481491.1791
2970444869810-516.1136442.131329122ACS_F475W0ABAAC1223.66423.6650.031113.4779
2970444869810-516.1136442.131329122ACS_F814W1CBCAA1222.42222.4230.0788191.6911
3071733969810-516.1056592.133198212ACS_F475W1CACAA1225.48125.4810.118942.3048
3071733969810-516.1056592.133198212ACS_F814W1AABAB1225.19625.1980.09386.4070

Description of the variable classification columns #

Several of the table columns have information on the variability.

  • The columns AutoClass and ExpertClass have summary information on the variability for a given MatchID object.

    • AutoClass: Classification as provided by the system: 0=constant 1=single filter variable candidate (SFVC) 2=multi-filter variable candidate (MFVC)

    • ExpertClass: Classification as provided by expert: 0=not classified by expert, 1=high confidence variable, 2=probable variable, 4=possible artifact

  • The columns MAD and Chi2 are variability indices using the median absolute deviation and the \(\chi^2\) parameter for the given filter.

  • The column VarQualFlag is a variability quality flag (see Section 5 of the paper). The five letters correspond to CI, D, MagerrAper2, MagAper2-MagAuto, p2p; AAAAA corresponds to the highest quality flag.

  • The column FilterDetFlag is the filter detection flag: 1=source is variable in this filter, 0=source is not variable in this filter.

See the HCV paper by Bonanos et al. (2019, AAp) for more details on the computation and meaning of these quantities.

Find objects with measurements in both F475W and F814W#

This could also be done in the SQL query. Here we use the Astropy.table.join function instead.

# the only key needed to do the join is MatchID, but we include other common columns
# so that join includes only one copy of them
jtab = join(tab[tab['Filter'] == 'ACS_F475W'], tab[tab['Filter'] == 'ACS_F814W'],
            keys=['MatchID', 'GroupID', 'SubGroupID', 'RA', 'Dec', 'AutoClass', 'ExpertClass'],
            table_names=['f475', 'f814'])
print(len(jtab), "matched F475W+F814W objects")
jtab[jtab['AutoClass'] > 0]
17090 matched F475W+F814W objects
Table length=258
MatchIDGroupIDSubGroupIDRADecAutoClassExpertClassNumFilters_f475Filter_f475FilterDetFlag_f475VarQualFlag_f475NumLC_f475MeanMag_f475MeanCorrMag_f475MAD_f475Chi2_f475NumFilters_f814Filter_f814FilterDetFlag_f814VarQualFlag_f814NumLC_f814MeanMag_f814MeanCorrMag_f814MAD_f814Chi2_f814
int64int32int32float64float64int32int32int32str9uint8str5int32float64float64float64float64int32str9uint8str5int32float64float64float64float64
9645769810-516.1415162.177815212ACS_F475W1AACAA1223.19223.1920.0686424.70972ACS_F814W1AAAAC1222.94622.9470.040277.5733
81365369810-516.1283532.160147142ACS_F475W0AAAAC1025.50825.5070.02430.29452ACS_F814W1BACAB1124.90624.9080.07958.5797
101269269810-516.1348092.144720212ACS_F475W1AACAA725.43925.4380.144617.98672ACS_F814W1AABAB825.20825.2100.11526.6471
108538669810-516.1185442.160845142ACS_F475W0AAAAC1124.35124.3520.01743.13112ACS_F814W1BABBB1123.47623.4760.069740.7630
128685769810-516.1192052.184252122ACS_F475W1AABAB1223.13723.1380.047753.22822ACS_F814W0AAAAC1221.07321.0750.012846.8982
130927169810-516.1305712.152512212ACS_F475W1AACAA1225.34725.3480.139920.04342ACS_F814W1AAAAC1225.04325.0440.08045.2954
147964669810-516.1208522.152737122ACS_F475W0CACAA1223.69123.6920.033241.95252ACS_F814W1AABAB1222.50122.5030.036268.2414
166131569810-516.1105712.143526142ACS_F475W1AACAB1225.22025.2210.07805.86482ACS_F814W0AAAAC1225.88725.8890.05950.8037
182647469810-516.1015322.171855122ACS_F475W0AAAAC1125.73525.7370.02590.51952ACS_F814W1BACAB1124.88924.8900.08229.2131
184962169810-516.1470492.153722212ACS_F475W1AACAA1125.50125.5020.213457.07252ACS_F814W1AACAA1125.39325.3940.148318.3074
...........................................................................
10213280069810-516.1261602.145442212ACS_F475W1AACAA1223.69123.6920.0750129.57172ACS_F814W1AACBA1224.50324.5050.103827.1660
10223942369810-516.1387062.155652122ACS_F475W1AABAA1222.81022.8110.0982307.52262ACS_F814W0AABAA1222.73522.7370.038296.9001
10323269469810-516.1075652.174399142ACS_F475W0AAAAC1122.42222.4220.00601.71182ACS_F814W1AAAAC1122.42522.4260.033527.9930
10430019569810-516.1249812.171772212ACS_F475W1AACAA1225.54025.5410.105458.75872ACS_F814W1AACAA1225.38225.3840.12179.4811
10517375769810-516.1337032.184506212ACS_F475W1AAAAA1221.37221.3720.15892810.15722ACS_F814W1AACAA1222.24022.2420.1825829.2399
10646679569810-516.1270562.166390112ACS_F475W1AACAA1225.35725.3580.142513.40652ACS_F814W0AAAAC1225.25725.2590.04622.8032
10664036369810-516.1357962.149099122ACS_F475W1CACAA825.57725.5790.11615.81682ACS_F814W0AABAB924.94424.9460.06618.3312
10684321369810-516.1103422.150373142ACS_F475W0CACCB1223.69123.6910.026930.76902ACS_F814W1CACBA1224.42924.4310.071025.8158
10783453869810-516.1071052.160084112ACS_F475W1AABAC1225.40025.4010.08183.42542ACS_F814W0AAAAC1225.12825.1290.05781.7916
10804805369810-516.1505722.142590122ACS_F475W1AACCA1025.29725.2970.069722.90852ACS_F814W0AAAAC1124.54424.5460.02731.6361

Plot object positions on the sky #

We mark the galaxy center as well. Note that this field is in the outskirts of IC 1613. The 0.5 degree search radius (which is the maximum allowed in the API) allows finding these objects.

fig, ax = plt.subplots(figsize=(10, 10))
ax.plot('RA', 'Dec', 'bo', markersize=1, label=f'{len(tab):,} HCV measurements', data=jtab)
ax.plot(ra_ic1613, dec_ic1613, 'rx', label=target, markersize=10)
ax.invert_xaxis()
ax.set(aspect='equal', xlabel='RA [deg]', ylabel='Dec [deg]')
ax.legend(loc='best')
<matplotlib.legend.Legend at 0x7f309796d490>
../../../_images/8b1c3c8a143831121a8f3e19f9671eabb4ed5f484adea801e7ebcb68d7b1a4bf.png

Plot HCV MAD variability index versus magnitude in F475W #

The median absolute deviation variability index is used by the HCV to identify variables. It measures the scatter among the multi-epoch measurements. Some scatter is expected from noise (which increases for fainter objects). Objects with MAD values that are high are likely to be variable.

This plots single-filter and multi-filter variable candidates (SFVC and MFVC) in different colors. Note that variable objects with low F475W MAD values are variable in a different filter (typically F814W in this field).

This plot is similar to the upper panel of Figure 4 in Bonanos et al. (2019, AAp).

# define plot parameter lists
auto_class = np.unique(jtab['AutoClass'])
markers = ['x', 'o', 'o']
colors = ['silver', 'blue', 'tab:cyan']
labels = ['non-', 'single-filter ', 'multi-filter ']

fig, ax = plt.subplots(figsize=(15, 10))
for ac, marker, color, label in zip(auto_class, markers, colors, labels):
    data = jtab[jtab['AutoClass'] == ac]
    ax.plot('MeanCorrMag_f475', 'MAD_f475', marker, markersize=4, color=color,
            label=f'{len(data):,} {label}variable candidates', data=data)

ax.set(xlabel='ACS_F475W [mag]', ylabel='ACS_F475W MAD [mag]')
ax.legend(loc='best', title=f'{len(jtab)} HSC measurements near {target}')
<matplotlib.legend.Legend at 0x7f309db54550>
../../../_images/11763e32b243363c8f90cbb1d6ea87ed0309c1aacf432569fcd9bb4935a0051a.png

Plot variables in color-magnitude diagram #

Many of the candidate variables lie on the instability strip.

This plot is similar to the lower panel of Figure 4 in Bonanos et al. (2019, AAp).

# add a new column to jtab
jtab['MCMf475-MCMf814'] = jtab['MeanCorrMag_f475'] - jtab['MeanCorrMag_f814']

fig, ax = plt.subplots(figsize=(15, 10))
# uses same plot parameters defined in the previous plot
for ac, marker, color, label in zip(auto_class, markers, colors, labels):
    data = jtab[jtab['AutoClass'] == ac]
    ax.plot('MCMf475-MCMf814', 'MeanCorrMag_f475', marker, markersize=4, color=color,
            label=f'{len(data):,} {label}variable candidates', data=data)
    
ax.invert_yaxis()
ax.set(xlim=(-1.1, 4), xlabel='ACS F475W - F814W [mag]', ylabel='ACS F475W [mag]')
ax.legend(loc='best', title=f'{len(jtab)} HSC measurements near {target}')
<matplotlib.legend.Legend at 0x7f309db35f10>
../../../_images/d4215399299a62f5e1853d93f5a6ca46f929d67ae9eaa6ce79dfc34fc50f69ce.png

Get a light curve for a nova in M87 #

Extract light curve for a given MatchID #

Note that the MatchID could be determined by positional searches, filtering the catalog, etc. This object comes from the top left panel of Figure 9 in Bonanos et al. (2019, AAp).

matchid = 1905457

jobs = mastcasjobs.MastCasJobs(context=HSCContext)
t0 = time.time()

# get light curves for F606W and F814W
nova_606 = jobs.quick(f"""select * from HCVdetailed
where MatchID={matchid} and Filter='ACS_F606W'""", task_name="HCV demo")
print(f"{(time.time()-t0):.1f} sec: retrieved {len(nova_606)} F606W measurements")

nova_814 = jobs.quick("""select * from HCVdetailed
where MatchID={} and Filter='ACS_F814W'
""".format(matchid), task_name="HCV demo")
print(f"{(time.time()-t0):.1f} sec: retrieved {len(nova_814)} F814W measurements")

# get the object RA and Dec as well
nova_tab = jobs.quick(f"""select MatchID, RA, Dec from HCVmatch
where MatchID={matchid}""", task_name="HCV demo")
print(f"{(time.time()-t0):.1f} sec: retrieved object info")

nova_606
0.4 sec: retrieved 21 F606W measurements
0.8 sec: retrieved 22 F814W measurements
1.2 sec: retrieved object info
Table length=21
MatchIDFilterMJDImageNameMagCorrMagMagErrCID
int64str9float64str26float64float64float64float64float64
1905457ACS_F606W53767.4197952871hst_10543_29_acs_wfc_f606w25.32725.32671328029930.13050.84064811468124413.499119758606
1905457ACS_F606W53768.4190663833hst_10543_30_acs_wfc_f606w23.969423.96761098021960.03941.0437963008880611.9895544052124
1905457ACS_F606W53769.3576541713hst_10543_31_acs_wfc_f606w23.600523.60008421247370.03060.9741666316986089.30478286743164
1905457ACS_F606W53771.1017052617hst_10543_33_acs_wfc_f606w23.610523.61575105175430.0303000010.966574072837832.96933674812317
1905457ACS_F606W53772.8098534283hst_10543_35_acs_wfc_f606w23.62179923.6029938853950.03280.9920370578765874.45478820800781
1905457ACS_F606W53774.4746564087hst_10543_37_acs_wfc_f606w24.01549924.01238680238810.0425999981.02462971210483.4874792098999
1905457ACS_F606W53775.2799112014hst_10543_38_acs_wfc_f606w23.903723.90775473410580.03810.9851852059364323.49740219116211
1905457ACS_F606W53776.0893441574hst_10543_39_acs_wfc_f606w24.01549924.01821088403150.04141.053148150444038.44466972351074
1905457ACS_F606W53776.9439852673hst_10543_40_acs_wfc_f606w24.06570124.07438894903280.0445999991.241574048995977.6749701499939
1905457ACS_F606W53778.562434162hst_10543_42_acs_wfc_f606w24.43079924.42749372240490.0595000011.074259281158453.26662158966064
1905457ACS_F606W53779.4097260174hst_10543_43_acs_wfc_f606w24.41589924.41505845731050.0626000020.9652777910232542.09669971466064
1905457ACS_F606W53780.2090778507hst_10543_44_acs_wfc_f606w24.69759924.69448381196230.0804999990.8106481432914736.5630521774292
1905457ACS_F606W53782.61915897hst_10543_47_acs_wfc_f606w24.56080124.55707489945920.0653999971.099074125289922.88692712783813
1905457ACS_F606W53784.2176541714hst_10543_73_acs_wfc_f606w24.782724.77701107022670.0790000040.8881481885910033.16040587425232
1905457ACS_F606W53786.1563230369hst_10543_86_acs_wfc_f606w24.909124.85326845876910.09021.037777781486518.54914951324463
1905457ACS_F606W53787.0225386124hst_10543_92_acs_wfc_f606w25.11459925.08782309605640.11270.9244444370269784.14372444152832
1905457ACS_F606W53792.6850963715hst_10543_49_acs_wfc_f606w25.22800125.2318322366430.11471.1442593336105311.9895496368408
1905457ACS_F606W53793.5260915786hst_10543_a1_acs_wfc_f606w25.15360125.16043598617860.10710.9256481528282177.5528678894043
1905457ACS_F606W53796.1486378878hst_10543_b8_acs_wfc_f606w24.017223.99859200518370.04361.5117592811584510.1193161010742
1905457ACS_F606W53798.5892174062hst_10543_50_acs_wfc_f606w25.56360125.57089652347360.153500010.95324075222015412.9010400772095
1905457ACS_F606W53799.4608942058hst_10543_c4_acs_wfc_f606w25.589525.59087074177370.16020.929814815521245.97602415084839
fig, ax = plt.subplots(figsize=(15, 10))

ax.errorbar(x='MJD', y='CorrMag', yerr='MagErr', fmt='ob', ecolor='k', elinewidth=1, markersize=8, label='ACS F606W', data=nova_606)
ax.errorbar(x='MJD', y='CorrMag', yerr='MagErr', fmt='or', ecolor='k', elinewidth=1, markersize=8, label='ACS F814W', data=nova_814)

ax.invert_yaxis()
ax.set(xlabel='MJD [days]', ylabel='magnitude')
ax.legend(loc='best', title=f'Nova in M87 (MatchID: {matchid})')
<matplotlib.legend.Legend at 0x7f30b439b6d0>
../../../_images/0927cd321a340a3e4eaa2661b239b2174c867fff3a36847b0afd6ee4e5e05f32.png

Get HLA image cutouts for the nova #

The Hubble Legacy Archive (HLA) images were the source of the measurements in the HSC and HCV, and it can be useful to look at the images. Examination of the images can be useful to identified cosmic-ray contamination and other possible image artifacts. In this case, no issues are seen, so the light curve is reliable.

Note that the ACS F606W images of M87 have only a single exposure, so they do have cosmic ray contamination. The accompanying F814W images have multiple exposures, allowing CRs to be removed. In this case the F814W combined image is used to find objects, while the F606W exposure is used only for photometry. That reduces the effects of F606W CRs on the catalog but it is still a good idea to confirm the quality of the images.

The get_hla_cutout function reads a single cutout image (as a JPEG grayscale image) and returns a PIL image object. See the documentation on the fitscut image cutout service for more information on the web service being used.

def get_hla_cutout(imagename, ra, dec, size=33, autoscale=99.5, asinh=True, zoom=1):
    """Get JPEG cutout for an image"""
    url = "https://hla.stsci.edu/cgi-bin/fitscut.cgi"
    r = requests.get(url, params=dict(ra=ra, dec=dec, size=size, format="jpeg",
                                      red=imagename, autoscale=autoscale, asinh=asinh, zoom=zoom))
    im = Image.open(BytesIO(r.content))
    return im
# sort images by magnitude from brightest to faintest
phot = nova_606
isort = np.argsort(phot['CorrMag'])
# select the brightest, median and faintest magnitudes
ind = [isort[0], isort[len(isort)//2], isort[-1]]

# we plot zoomed-in and zoomed-out views side-by-side for each selected image
nim = len(ind)*2
ncols = 2 # images per row
nrows = (nim+ncols-1)//ncols

imsize1 = 19
imsize2 = 101
mra = nova_tab['RA'][0]
mdec = nova_tab['Dec'][0]

# define figure and axes
fig, axes = plt.subplots(nrows, ncols, figsize=(12, (12/ncols)*nrows), tight_layout=True)

t0 = time.time()

# iterate through each set of two subplots in axes
for (ax1, ax2), k in zip(axes, ind):
    
    # get the images
    im1 = get_hla_cutout(phot['ImageName'][k], mra, mdec, size=imsize1)
    im2 = get_hla_cutout(phot['ImageName'][k], mra, mdec, size=imsize2)
    
    # plot left column   
    ax1.imshow(im1, origin="upper", cmap="gray")
    ax1.set_title(f"{phot['ImageName'][k]} m={phot['CorrMag'][k]:.3f}", fontsize=14)
    
    # plot right column
    ax2.imshow(im2, origin="upper", cmap="gray")
    xbox = np.array([-1, 1])*imsize1/2 + (imsize2-1)//2
    ax2.plot(xbox[[0, 1, 1, 0, 0]], xbox[[0, 0, 1, 1, 0]], 'r-', linewidth=1)
    ax2.set_title(f"{phot['ImageName'][k]} m={phot['CorrMag'][k]:.3f}", fontsize=14)    
    
print(f"{(time.time()-t0):.1f} s: got {nrows*ncols} cutouts")
5.6 s: got 6 cutouts
../../../_images/a80c974b2dbb8bdd71fc181f3feff073eebf5e612ed660285e6d8ece1878387e.png

Compare the HCV automatic classification to expert validations #

The HCV includes an automatic classification AutoClass for candidate variables as well as an expert validation for some fields that were selected for visual examination. See the description of the classification columns and the HCV paper by Bonanos et al. (2019, AAp) for more details on the computation and meaning of these quantities.

For this example, we select all the objects in the HCV that have expert classification information.

DBtable = "HCV_demo2"
jobs = mastcasjobs.MastCasJobs(context="MyDB")

# drop table if it already exists
jobs.drop_table_if_exists(DBtable)

# get data for objects with an expert validation
query = f"""
select m.MatchID, m.GroupID, m.SubGroupID, m.RA, m.Dec,
   m.AutoClass, m.ExpertClass, m.NumFilters,
   f.Filter, f.FilterDetFlag, f.VarQualFlag, f.NumLC, 
   f.MeanMag, f.MeanCorrMag, f.MAD, f.Chi2
into mydb.{DBtable}
from HCVmatch m
join HCVfilter f on m.MatchID=f.MatchID
where m.ExpertClass>0
"""

t0 = time.time()
results = jobs.quick(query, task_name="HCV demo", context=HSCContext)

print(f"Completed in {(time.time()-t0):.1f} sec")
print(results)

# fast retrieval using special MAST Casjobs service
tab = jobs.fast_table(DBtable, verbose=True)

# clean up the output format
tab['MeanMag'].format = "{:.3f}"
tab['MeanCorrMag'].format = "{:.3f}"
tab['MAD'].format = "{:.4f}"
tab['Chi2'].format = "{:.4f}"
tab['RA'].format = "{:.6f}"
tab['Dec'].format = "{:.6f}"

# tab includes 1 row for each filter (so multiple rows for objects with multiple filters)
# get an array that has only one row per object
mval, uindex = np.unique(tab['MatchID'], return_index=True)
utab = tab[uindex]
print(f"{len(utab)} unique MatchIDs in table")

tab
Completed in 1.0 sec
Rows Affected
-------------
        31258
0.9 s: Retrieved 4.94MB table MyDB.HCV_demo2
1.1 s: Converted to 31258 row table
13533 unique MatchIDs in table
Table length=31258
MatchIDGroupIDSubGroupIDRADecAutoClassExpertClassNumFiltersFilterFilterDetFlagVarQualFlagNumLCMeanMagMeanCorrMagMADChi2
int64int32int32float64float64int32int32int32str11uint8str5int32float64float64float64float64
8751040153-564.149673-24.110353227ACS_F435W0AAAAA1324.16624.1660.03847.1169
8751040153-564.149673-24.110353227ACS_F606W0AAAAC922.83622.8350.034981.3676
8751040153-564.149673-24.110353227ACS_F814W0AAAAA2322.15622.1560.0325141.7171
8751040153-564.149673-24.110353227WFC3_F105W1CAAAB1421.84321.8430.0503223.4961
8751040153-564.149673-24.110353227WFC3_F125W1CBCCA621.81321.8140.0655792.8662
8751040153-564.149673-24.110353227WFC3_F140W0AAAAA621.70521.7040.0205127.6242
8751040153-564.149673-24.110353227WFC3_F160W1BABAA1321.62321.6240.0322112.8544
2006521507-5268.112152-17.684282222WFPC2_F555W1AAAAC721.81121.8210.154585.2812
2006521507-5268.112152-17.684282222WFPC2_F814W1AAAAA720.51320.5190.0988105.2348
158301037453-5340.407806-64.413185112ACS_F475W1AACAA1625.71325.7140.158220.3584
................................................
10811685010459048511.62759342.061874112ACS_F475W0AAAAA524.77224.7740.049852.0622
10811685010459048511.62759342.061874112ACS_F814W1AACAA524.60524.6070.112056.7844
1081275221043478-5211.15429754.521580111ACS_F606W1AACAA626.78626.7860.149612.5680
1081419671036556-534.188431-5.203189142ACS_F606W1BAACA526.17426.1750.18065.3338
1081419671036556-534.188431-5.203189142ACS_F814W0AAAAC525.97025.9690.05610.2748
1081541091084533-553.141266-27.710630125ACS_F606W0CAAAC724.47724.4770.01613.4616
1081541091084533-553.141266-27.710630125ACS_F775W0CAAAC1123.65023.6500.05882.6932
1081541091084533-553.141266-27.710630125ACS_F814W0CAAAC523.57723.5770.00372.9994
1081541091084533-553.141266-27.710630125ACS_F850LP1CAAAA1223.45523.4550.06393.4468
1081541091084533-553.141266-27.710630125WFC3_F105W0AAAAC621.54121.5410.00650.4013

An ExpertClass value of 1 indicates that the object is confidently confirmed to be a variable; 2 means that the measurements do not have apparent problems and so the object is likely to be variable (usually the variability is too small to be obvious in the image); 4 means that the variability is likely to be the result of artifacts in the image (e.g., residual cosmic rays or diffraction spikes from nearby bright stars).

Compare the distributions for single-filter variable candidates (SFVC, AutoClass=1) and multi-filter variable candidates (MFVC, AutoClass=2). The fraction of artifacts is lower in the MFVC sample.

sfcount = np.bincount(utab['ExpertClass'][utab['AutoClass'] == 1])
mfcount = np.bincount(utab['ExpertClass'][utab['AutoClass'] == 2])
sfrat = sfcount/sfcount.sum()
mfrat = mfcount/mfcount.sum()

print("Type Variable Likely Artifact Total")
print("SFVC {:8d} {:6d} {:8d} {:5d} counts".format(sfcount[1], sfcount[2], sfcount[4], sfcount.sum()))
print("MFVC {:8d} {:6d} {:8d} {:5d} counts".format(mfcount[1], mfcount[2], mfcount[4], mfcount.sum()))
print("SFVC {:8.3f} {:6.3f} {:8.3f} {:5.3f} fraction".format(sfrat[1], sfrat[2], sfrat[4], sfrat.sum()))
print("MFVC {:8.3f} {:6.3f} {:8.3f} {:5.3f} fraction".format(mfrat[1], mfrat[2], mfrat[4], mfrat.sum()))
Type Variable Likely Artifact Total
SFVC     3323   3055     1761  8139 counts
MFVC     2101   2442      851  5394 counts
SFVC    0.408  0.375    0.216 1.000 fraction
MFVC    0.390  0.453    0.158 1.000 fraction

Plot the MAD variability index distribution with expert classifications #

Note that only the filters identified as variable (FilterDetFlag > 0) are included here.

This version of the plot shows the distributions for the various ExpertClass values along with, for comparison, the distribution for all objects in gray (which is identical in each panel). Most objects are classified as confident or likely variables. Objects with lower MAD values (indicating a lower amplitude of variability) are less likely to be identified as confident variables because low-level variability is more difficult to confirm via visual examination.

Data & Bins#

w = np.where(tab['FilterDetFlag'] > 0)
mad = tab['MAD'][w]
e = tab['ExpertClass'][w]

xrange = [7.e-3, 2.0]
bins = xrange[0]*(xrange[1]/xrange[0])**np.linspace(0.0, 1.0, 50)

Plots#

fig, axes = plt.subplots(3, 1, figsize=(12, 12))

labels = ['Confident', 'Likely', 'Artifact']
colors = ['C2', 'C1', 'C0']

for ax, v, label, color in zip(axes, np.unique(e), labels, colors):
    ax.hist(mad, bins=bins, log=True, color='lightgray', label='All')
    ax.hist(mad[e == v], bins=bins, log=True, label=label, color=color)
    ax.set(xscale='log', ylabel='Count')
    ax.legend(loc='upper left')
    
fig.suptitle('HCV Expert Validation', y=0.9)
_ = axes[2].set_xlabel('MAD Variability Index [mag]')
../../../_images/2b8dd5a8adf170230338f810135a92dc519c48c87d1bb608bf8a4b136e219957.png

The plot below shows the same distributions, but plotted as stacked histograms. The top panel uses a linear scale on the y-axis and the bottom panel uses a log y scale.

fig, axes = plt.subplots(2, 1, figsize=(15, 12))

ylogs = [False, True]

for ax, ylog in zip(axes, ylogs):
    ax.hist(mad, bins=bins, log=ylog, label='Artifact')
    ax.hist(mad[e < 4], bins=bins, log=ylog, label='Likely Variable')
    ax.hist(mad[e == 1], bins=bins, log=ylog, label='Confident Variable')

    ax.set_xscale('log')
    ax.set_xlabel('MAD Variability Index [mag]')
    ax.set_ylabel('Count')
    ax.legend(loc='upper right', title='HCV Expert Validation')
../../../_images/714d577ec4f08532ef7d63538ebf8a02ae7c5f5571292e889bf6a33fd746cc41.png

Plot the fraction of artifacts as a function of MAD variability index #

This shows how the fraction of artifacts varies with the MAD value. For larger MAD values the fraction decreases sharply, presumably because such large values are less likely to result from the usual artifacts. Interestingly, the artifact fraction also declines for smaller MAD values (MAD < 0.1 mag). Probably that happens because typical artifacts are more likely to produce strong signals than the weaker signals indicated by a low MAD value.

w = np.where(tab['FilterDetFlag'] > 0)
mad = tab['MAD'][w]
e = tab['ExpertClass'][w]

xrange = [7.e-3, 2.0]
bins = xrange[0]*(xrange[1]/xrange[0])**np.linspace(0.0, 1.0, 30)

all_count, bin_edges = np.histogram(mad, bins=bins)
artifact_count, bin_edges = np.histogram(mad[e == 4], bins=bins)
wnz = np.where(all_count > 0)[0]
nnz = len(wnz)

artifact_count = artifact_count[wnz]
all_count = all_count[wnz]
xerr = np.empty((2, nnz), dtype=float)
xerr[0] = bin_edges[wnz]
xerr[1] = bin_edges[wnz+1]

# combine bins at edge into one big bin to improve the statistics there
iz = np.where(all_count.cumsum() > 10)[0][0]
if iz > 0:
    all_count[iz] += all_count[:iz].sum()
    artifact_count[iz] += artifact_count[:iz].sum()
    xerr[0, iz] = xerr[0, 0]
    all_count = all_count[iz:]
    artifact_count = artifact_count[iz:]
    xerr = xerr[:, iz:]
    
iz = np.where(all_count[::-1].cumsum() > 40)[0][0]
if iz > 0:
    all_count[-iz-1] += all_count[-iz:].sum()
    artifact_count[-iz-1] = artifact_count[-iz:].sum()
    xerr[1, -iz-1] = xerr[1, -1]
    all_count = all_count[:-iz]
    artifact_count = artifact_count[:-iz]
    xerr = xerr[:, :-iz]

x = np.sqrt(xerr[0]*xerr[1])
xerr[0] = x - xerr[0]
xerr[1] = xerr[1] - x

frac = artifact_count/all_count
# error on fraction using binomial distribution (approximate)
ferr = np.sqrt(frac*(1-frac)/all_count)

Create the plot

fig, ax = plt.subplots(figsize=(12, 12))
ax.errorbar(x, frac, xerr=xerr, yerr=ferr, fmt='ob', markersize=5, label='Artifact fraction')
ax.set(xscale='log', xlabel='MAD Variability Index [mag]', ylabel='Artifact Fraction')
ax.legend(loc='upper right', title='HCV Expert Validation')
<matplotlib.legend.Legend at 0x7f30ac383590>
../../../_images/bea962e74a2cd04b5a144b70b3eb59e3f35eccb047a41d045f2210ba1582208b.png

Plot light curve for the most variable high quality candidate in the HCV #

Select the candidate variable with the largest MAD value and VarQualFlag = ‘AAAAA’. To find the highest MAD value, we sort by MAD in descending order and select the first result.

jobs = mastcasjobs.MastCasJobs(context=HSCContext)

# join to the Groups table as well to get the target name

query = """
select top 1 m.MatchID, m.GroupID, m.SubGroupID, g.TargetName, m.RA, m.Dec,
   m.AutoClass, m.ExpertClass, m.NumFilters,
   f.Filter, f.FilterDetFlag, f.VarQualFlag, f.NumLC, 
   f.MeanMag, f.MeanCorrMag, f.MAD, f.Chi2
from HCVmatch m
join HCVfilter f on m.MatchID=f.MatchID
join Groups g on m.GroupID=g.GroupID
where f.VarQualFlag='AAAAA'
order by f.MAD desc
"""

t0 = time.time()
tab = jobs.quick(query, task_name="HCV demo", context=HSCContext)

print(f"Completed in {(time.time()-t0):.1f} sec")

# clean up the output format
tab['MeanMag'].format = "{:.3f}"
tab['MeanCorrMag'].format = "{:.3f}"
tab['MAD'].format = "{:.4f}"
tab['Chi2'].format = "{:.4f}"
tab['RA'].format = "{:.6f}"
tab['Dec'].format = "{:.6f}"

print(f"MatchID {tab['MatchID'][0]} in group '{tab['TargetName'][0]}' has largest MAD value = {tab['MAD'][0]:.2f}")
tab
Completed in 1.1 sec
MatchID 5742711 in group 'M31' has largest MAD value = 0.86
Table length=1
MatchIDGroupIDSubGroupIDTargetNameRADecAutoClassExpertClassNumFiltersFilterFilterDetFlagVarQualFlagNumLCMeanMagMeanCorrMagMADChi2
int64int64int64str3float64float64int64int64int64str9str4str5int64float64float64float64float64
5742711104590416M3110.92860141.164295101ACS_F814WTrueAAAAA522.26422.2650.85816698.4430

Get the light curve.

matchid = tab['MatchID'][0]
mfilter = tab['Filter'][0]

jobs = mastcasjobs.MastCasJobs(context=HSCContext)
t0 = time.time()

# get light curves for F606W and F814W
lc = jobs.quick("""select * from HCVdetailed
where MatchID={} and Filter='{}'
""".format(matchid, mfilter), task_name="HCV demo")
print(f"{(time.time()-t0):.1f} sec: retrieved {len(lc)} {mfilter} measurements")
0.4 sec: retrieved 5 ACS_F814W measurements

Plot the light curve.

fig, ax = plt.subplots(figsize=(15, 10))

ax.errorbar(x='MJD', y='CorrMag', yerr='MagErr', fmt='ob', ecolor='k', elinewidth=1, markersize=8, label=mfilter, data=lc)

ax.invert_yaxis()
ax.set(xlabel='MJD [days]', ylabel='magnitude')
ax.legend(loc='best', title=f"MatchID: {matchid} in {tab['TargetName'][0]} MAD={tab['MAD'][0]:.2f}")
<matplotlib.legend.Legend at 0x7f30ac224490>
../../../_images/29071ea7ddda6958496b600f67077930f994fd27e11b627a54b3bdc029c67616.png

Extract cutout images for the entire light curve (since it does not have many points).

# sort images in MJD order
ind = np.argsort(lc['MJD'])

# we plot zoomed-in and zoomed-out views side-by-side for each selected image
nim = len(ind)*2
ncols = 2 # images per row
nrows = (nim+ncols-1)//ncols

imsize1 = 19
imsize2 = 101
mra = tab['RA'][0]
mdec = tab['Dec'][0]

# define figure and axes
fig, axes = plt.subplots(nrows, ncols, figsize=(12, (12/ncols)*nrows), tight_layout=True)

t0 = time.time()

# iterate through each set of two subplots in axes
for i, ((ax1, ax2), k) in enumerate(zip(axes, ind), 1):
    
    # get the images
    im1 = get_hla_cutout(lc['ImageName'][k], mra, mdec, size=imsize1)
    im2 = get_hla_cutout(lc['ImageName'][k], mra, mdec, size=imsize2)
    
    # plot left column    
    ax1.imshow(im1, origin="upper", cmap="gray")
    ax1.set_title(lc['ImageName'][k], fontsize=14)
    
    # plot right column
    ax2.imshow(im2, origin="upper", cmap="gray")
    xbox = np.array([-1, 1])*imsize1/2 + (imsize2-1)//2
    ax2.plot(xbox[[0, 1, 1, 0, 0]], xbox[[0, 0, 1, 1, 0]], 'r-', linewidth=1)
    ax2.set_title(f"m={lc['CorrMag'][k]:.3f} MJD={lc['MJD'][k]:.2f}", fontsize=14)
    
    print(f"{(time.time()-t0):.1f} s: finished {i} of {len(ind)} epochs")
    
print(f"{(time.time()-t0):.1f} s: got {nrows*ncols} cutouts")
2.0 s: finished 1 of 5 epochs
4.0 s: finished 2 of 5 epochs
6.1 s: finished 3 of 5 epochs
8.2 s: finished 4 of 5 epochs
10.3 s: finished 5 of 5 epochs
10.3 s: got 10 cutouts
../../../_images/fd5a7a17b5393bf082a925ff9c1ca3b82302e7fbfc038c743c470833a846f944.png

About this Notebook#

If you have comments or questions on this notebook, please contact us through the Archive Help Desk e-mail at archive@stsci.edu.

Author(s): Rick White, Steve Lubow, Trenton McKinney
Last Updated: May 2023


Top of Page Space Telescope Logo