Published December 2, 2020 | Version 0.1.0
Dataset Open

Anomaly detection in the Zwicky Transient Facility DR3

  • 1. Department of Astronomy, University of Illinois at Urbana-Champaign
  • 2. Lomonosov Moscow State University, Sternberg Astronomical Institute
  • 3. Central Aerohydrodynamic Institute

Description

The feature data set extracted from ZTF DR3 light curves. It was used in Malanchev et al. 2020 to detect anomalous astrophysical sources in ZTF data. 

"feature_XXX.dat" files contain object-ordered light curve feature data, every object is built on 42 feature values, which are encoded as little endian single precision IEEE-754 float (32bit float) numbers. Feature code-names are the same for all three data sets and are listed in plain text files "feature_XXX.name", one code-name per line. "oid_XXX.dat" files contain ZTF DR object identifiers encoded as little endian 64-bit unsigned integer numbers. "oid_XXX.dat" and "feature_XXX.dat" have same object order, for example the first 8 bytes of "oid_m31.dat" files contain the OID of the ZTF DR3 light curve which feature are presented in the first 168 bytes of "feature_m31.dat" file. "m31", "deep" and "disk" denote different ZTF fields and contain 57 546, 406 611, 1 790 565 objects. Note that observations between 58194 ≤ MJD ≤ 58483 are used, see the paper for field and features details.

The sample Python code to access the data as Numpy arrays:

import numpy as np

oid = np.memmap('oid_m31.dat', mode='r', dtype=np.uint64)
with open('feature_m31.name') as f:
    names = f.read().split()
dtype = [(name, np.float32) for name in names]
feature = np.memmap('feature_m31.dat', mode='r', dtype=dtype, shape=oid.shape)

idx = np.argmax(feature['amplitude'])
print('Object {} has maximum amplitude {:.3f}'.format(oid[idx], feature['amplitude'][idx]))

 

Files

Files (396.8 MB)

Name Size Download all
md5:dcafe92554670352964dc0bde26022ba
68.3 MB Download
md5:f48924da2104ac4372f5af3d232cd00f
788 Bytes Download
md5:29675db02f294eb81911834424b985eb
300.8 MB Download
md5:f48924da2104ac4372f5af3d232cd00f
788 Bytes Download
md5:1fdfaa96fab157ade978b2839bcbd889
9.7 MB Download
md5:f48924da2104ac4372f5af3d232cd00f
788 Bytes Download
md5:ab2aebf4c226a15b9cd5887a8630f9ef
3.3 MB Download
md5:5c111dc2b3b8bb2a8d7a32028de110db
14.3 MB Download
md5:16a3bd4bdec2880d865e8b667d55f55e
460.4 kB Download

Additional details

Related works

Is supplement to
Preprint: arXiv:2012.01419 (arXiv)
Journal article: 10.1093/mnras/stab316 (DOI)