CoolFace
Datasetpublic

juliensimon/integral-ibis-hard-xray

INTEGRAL IBIS 17-Year Hard X-Ray Survey Part of the Astronomy Datasets collection on Hugging Face. The INTEGRAL IBIS hard X-ray survey catalog from 17 years of observations with the IBIS coded-mask telescope aboard ESA's INTEGRAL satellite. Contains 929 hard X-ray sources detected in the 17--290 keV energy range across 24 source types, with multi-band flux measurements in 8 energy sub-bands. Dataset description This catalog (Krivonos et al. 2022, MNRAS 510, 4796)… See the full description on the dataset page: https://huggingface.co/datasets/juliensimon/integral-ibis-hard-xray.

sourceHugging Faceotherupdated 4mo agoView on Hugging Face
0likes11downloads
Dataset Card

INTEGRAL IBIS 17-Year Hard X-Ray Survey

Part of the [Astronomy Datasets](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) collection on Hugging Face.

The INTEGRAL IBIS hard X-ray survey catalog from 17 years of observations with the IBIS coded-mask telescope aboard ESA's INTEGRAL satellite. Contains 929 hard X-ray sources detected in the 17--290 keV energy range across 24 source types, with multi-band flux measurements in 8 energy sub-bands.

Dataset description

This catalog (Krivonos et al. 2022, MNRAS 510, 4796) presents the deepest all-sky survey in the hard X-ray band to date. Sources were detected using the IBIS/ISGRI detector over 17 years of INTEGRAL observations (2003--2020). The catalog provides flux measurements in 8 energy sub-bands spanning 17--290 keV, plus source classifications, redshifts, and transient/extended flags.

Schema

ColumnTypeDescription
source_idInt32Unique source identifier
source_namestringSource name
ra_degfloat64Right ascension J2000 (degrees)
dec_degfloat64Declination J2000 (degrees)
flux_17_60kevfloat64Flux in 17--60 keV band (mCrab)
flux_err_17_60kevfloat64Flux uncertainty in 17--60 keV band
snr_17_60kevfloat64Signal-to-noise ratio in 17--60 keV band
source_typestringSource classification
redshiftfloat64Redshift (when available)
transient_flagstringTransient source flag
extended_flagstringExtended source flag
confused_flagstringConfused source flag
noisy_flagstringNoisy region flag
referencesstringLiterature references
counterpartstringCounterpart identification
notesstringAdditional notes
flux_17_35kevfloat64Flux in 17--35 keV sub-band
flux_35_80kevfloat64Flux in 35--80 keV sub-band
flux_80_150kevfloat64Flux in 80--150 keV sub-band
flux_150_290kevfloat64Flux in 150--290 keV sub-band
flux_17_80kevfloat64Flux in 17--80 keV sub-band
flux_35_150kevfloat64Flux in 35--150 keV sub-band
flux_80_290kevfloat64Flux in 80--290 keV sub-band
flux_17_290kevfloat64Flux in 17--290 keV full band
flux_err_*float64Corresponding flux uncertainties for each sub-band
snr_*float64Signal-to-noise ratios for each sub-band
platestringSky plate identifier
simbad_namestringSIMBAD cross-matched name
has_redshiftboolTrue if redshift is available

Quick stats

  • 929 hard X-ray sources
  • 401 sources with measured redshift (43.2%)
  • Median flux (17--60 keV): 0.00 mCrab
  • Peak S/N: 15698.6

Usage

python
from datasets import load_dataset

ds = load_dataset("juliensimon/integral-ibis-hard-xray", split="train")
df = ds.to_pandas()

# Flux distribution
import matplotlib.pyplot as plt
df["flux_17_60kev"].clip(upper=100).hist(bins=100, log=True)
plt.xlabel("Flux 17-60 keV (mCrab)")
plt.ylabel("Count")
plt.title("INTEGRAL IBIS Hard X-Ray Flux Distribution")
plt.show()

# Source type breakdown
df["source_type"].value_counts().head(10).plot.barh()
plt.xlabel("Count")
plt.title("Top 10 Source Types")
plt.tight_layout()
plt.show()

# Sky map
plt.scatter(df["ra_deg"], df["dec_deg"], s=2, c=df["snr_17_60kev"].clip(upper=50), cmap="hot")
plt.colorbar(label="S/N")
plt.xlabel("RA (deg)")
plt.ylabel("Dec (deg)")
plt.title("INTEGRAL IBIS All-Sky Hard X-Ray Sources")
plt.show()

Data source

Krivonos, R. et al. (2022), INTEGRAL/IBIS 17-yr hard X-ray all-sky survey. Monthly Notices of the Royal Astronomical Society, 510, 4796--4828. Via VizieR CDS (J/MNRAS/510/4796/table1).

Pipeline

Source code: juliensimon/space-datasets

Citation

bibtex
@dataset{integral_ibis_hard_xray,
  author = {Simon, Julien},
  title = {INTEGRAL IBIS 17-Year Hard X-Ray Survey},
  year = {2026},
  publisher = {Hugging Face},
  url = {https://huggingface.co/datasets/juliensimon/integral-ibis-hard-xray},
  note = {Based on Krivonos et al. (2022) via VizieR CDS}
}

License

CC-BY-NC-3.0-IGO