juliensimon commited on
Commit
836cafc
·
verified ·
1 Parent(s): da0ef0b

Upload Roma-BZCAT blazar catalog: 3,561 blazars

Browse files
Files changed (3) hide show
  1. README.md +174 -0
  2. banner.jpg +3 -0
  3. data/roma_bzcat_blazars.parquet +3 -0
README.md ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "Roma-BZCAT Blazar Catalog"
4
+ language:
5
+ - en
6
+ description: "The definitive catalog of confirmed blazars from the Roma-BZCAT 5th edition — ~3,500 AGN with relativistic jets, including BL Lacs and FSRQs, with multi-frequency data."
7
+ task_categories:
8
+ - tabular-classification
9
+ tags:
10
+ - space
11
+ - open-data
12
+ - tabular-data
13
+ - parquet
14
+ - blazar
15
+ - agn
16
+ - roma-bzcat
17
+ - astronomy
18
+ - radio
19
+ size_categories:
20
+ - 1K<n<10K
21
+ configs:
22
+ - config_name: default
23
+ data_files:
24
+ - split: train
25
+ path: data/roma_bzcat_blazars.parquet
26
+ default: true
27
+ ---
28
+
29
+ # Roma-BZCAT Multi-frequency Blazar Catalog
30
+
31
+ <div align="center">
32
+ <img src="banner.jpg" alt="Hubble Deep Field revealing myriad galaxies across cosmic time" width="400">
33
+ <p><em>Credit: NASA/ESA/STScI</em></p>
34
+ </div>
35
+
36
+ *Part of the [Astronomy Datasets](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) collection on Hugging Face.*
37
+
38
+ ![Updated](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/juliensimon/space-datasets/main/status.json&query=$["roma-bzcat"]&label=updated&color=brightgreen)
39
+
40
+ The Roma-BZCAT 5th edition — **3,561** confirmed blazars, the definitive multi-frequency
41
+ catalog of active galactic nuclei with relativistic jets. Includes **0** BL Lac objects,
42
+ **0** flat-spectrum radio quasars (FSRQs), and **0** galaxy-dominated blazars.
43
+
44
+ ## Dataset description
45
+
46
+ Blazars are the most extreme class of active galactic nuclei (AGN). They are powered by
47
+ supermassive black holes at the centers of galaxies, but what makes them extraordinary is
48
+ that one of their relativistic jets — twin beams of plasma moving at nearly the speed of
49
+ light — points almost directly at Earth. This geometric alignment produces dramatic
50
+ observational effects: apparent superluminal motion, extreme variability across the
51
+ electromagnetic spectrum (from radio to TeV gamma-rays on timescales from minutes to years),
52
+ strong and variable polarization, and Doppler-boosted luminosities that can outshine the
53
+ entire host galaxy by orders of magnitude.
54
+
55
+ Blazars are divided into two main subclasses based on their optical spectra:
56
+
57
+ - **BL Lac objects (BZB)**: named after the prototype BL Lacertae, these sources show
58
+ featureless or nearly featureless optical continua with weak or absent emission lines
59
+ (equivalent width < 5 angstroms). Their spectral energy distributions (SEDs) are
60
+ dominated by non-thermal synchrotron and inverse-Compton emission from the jet, and they
61
+ are further subdivided by the frequency of their synchrotron peak into low-, intermediate-,
62
+ and high-synchrotron-peaked BL Lacs (LSP, ISP, HSP).
63
+
64
+ - **Flat-spectrum radio quasars (BZQ/FSRQ)**: these display strong, broad optical emission
65
+ lines characteristic of quasars, indicating a luminous accretion disk and broad-line region
66
+ in addition to the jet. FSRQs tend to be more luminous than BL Lacs and dominate the
67
+ high-redshift blazar population.
68
+
69
+ The Roma-BZCAT (Massaro et al. 2009, 2015) is the most comprehensive and widely cited catalog
70
+ of confirmed blazars, compiled from multi-wavelength observations spanning radio, optical,
71
+ and X-ray bands. It serves as the reference catalog for blazar identification in gamma-ray
72
+ surveys (Fermi-LAT), neutrino follow-up programs (IceCube), and multi-messenger astrophysics.
73
+ Every source in Roma-BZCAT has been spectroscopically confirmed or classified through its
74
+ multi-frequency properties, making it the gold standard for blazar demographics and population
75
+ studies.
76
+
77
+ ## Schema
78
+
79
+ | Column | Type | Description |
80
+ |--------|------|-------------|
81
+ | `seq` | int64 | Seq |
82
+ | `name` | string | Source name / BZCAT designation |
83
+ | `ra_deg` | float64 | Right ascension J2000 (degrees) |
84
+ | `dec_deg` | float64 | Declination J2000 (degrees) |
85
+ | `glon` | float64 | Glon |
86
+ | `glat` | float64 | Glat |
87
+ | `redshift` | float64 | Spectroscopic redshift |
88
+ | `u_z` | string | U z |
89
+ | `r_mag` | float64 | R-band magnitude |
90
+ | `blazar_class` | string | Blazar classification (BZB=BL Lac, BZQ=FSRQ, BZG=galaxy-dominated, BZU=uncertain) |
91
+ | `fr` | float64 | Fr |
92
+ | `f143` | float64 | F143 |
93
+ | `fx` | float64 | Fx |
94
+ | `ff` | float64 | Ff |
95
+ | `aro` | float64 | Aro |
96
+
97
+ ## Quick stats
98
+
99
+ - **3,561** confirmed blazars
100
+ - **0** BL Lac objects (BZB), **0** FSRQs (BZQ), **0** galaxy-dominated (BZG), **0** uncertain (BZU)
101
+ - **3,561** with measured redshift (median z = 0.636, max z = 6.802)
102
+ - **0** with radio flux, **0** with X-ray flux
103
+ - Classes: QSO RLoud flat radio sp. (1,909), BL Lac (1,059), BL Lac-galaxy dominated (274), Blazar Uncertain type (227), BL Lac Candidate (92)
104
+
105
+ ## Usage
106
+
107
+ ```python
108
+ from datasets import load_dataset
109
+
110
+ ds = load_dataset("juliensimon/roma-bzcat-blazars", split="train")
111
+ df = ds.to_pandas()
112
+
113
+ # BL Lac objects vs FSRQs
114
+ bl_lacs = df[df["blazar_class"].str.startswith("BZB", na=False)]
115
+ fsrqs = df[df["blazar_class"].str.startswith("BZQ", na=False)]
116
+ print(f"{len(bl_lacs):,} BL Lacs, {len(fsrqs):,} FSRQs")
117
+
118
+ # Redshift distribution by class
119
+ import matplotlib.pyplot as plt
120
+ for cls, label in [("BZB", "BL Lac"), ("BZQ", "FSRQ")]:
121
+ subset = df[df["blazar_class"].str.startswith(cls, na=False)]
122
+ subset["redshift"].dropna().hist(bins=50, alpha=0.6, label=label)
123
+ plt.xlabel("Redshift")
124
+ plt.ylabel("Count")
125
+ plt.legend()
126
+ plt.title("Roma-BZCAT Redshift Distribution by Blazar Class")
127
+
128
+ # Radio-loud blazars
129
+ radio_bright = df[df["radio_flux_mjy"] > 1000].sort_values("radio_flux_mjy", ascending=False)
130
+ print(f"{len(radio_bright):,} blazars with radio flux > 1 Jy")
131
+ ```
132
+
133
+ ## Data source
134
+
135
+ Massaro, E., Maselli, A., Leto, C., Marchegiani, P., Perri, M., Giommi, P., Piranomonte, S.
136
+ (2015), "The 5th edition of the Roma-BZCAT. A short presentation",
137
+ *Astrophysics and Space Science*, 357, 75.
138
+ Accessed via [VizieR](https://vizier.cds.unistra.fr/) catalog VII/274, CDS Strasbourg.
139
+
140
+ ## Update schedule
141
+
142
+ Static dataset — rebuilt manually when a new edition is published.
143
+
144
+ ## Related datasets
145
+
146
+ - [quasar-catalog](https://huggingface.co/datasets/juliensimon/quasar-catalog) — SIMBAD Quasar & AGN Catalog
147
+ - [milliquas](https://huggingface.co/datasets/juliensimon/milliquas) — Million Quasars Catalog v8
148
+ - [fermi-4lac-agn-catalog](https://huggingface.co/datasets/juliensimon/fermi-4lac-agn-catalog) — Fermi 4LAC AGN Catalog
149
+ - [fermi-4fgl-dr4](https://huggingface.co/datasets/juliensimon/fermi-4fgl-dr4) — Fermi 4FGL-DR4 Source Catalog
150
+
151
+ ## Pipeline
152
+
153
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
154
+
155
+ ## Support
156
+
157
+ If you find this dataset useful, please give it a ❤️ on the [dataset page](https://huggingface.co/datasets/juliensimon/roma-bzcat-blazars) and share feedback in the Community tab! Also consider giving a ⭐️ to the [space-datasets](https://github.com/juliensimon/space-datasets) repo.
158
+
159
+ ## Citation
160
+
161
+ ```bibtex
162
+ @dataset{roma_bzcat_blazars,
163
+ author = {Simon, Julien},
164
+ title = {Roma-BZCAT Multi-frequency Blazar Catalog},
165
+ year = {2026},
166
+ publisher = {Hugging Face},
167
+ url = {https://huggingface.co/datasets/juliensimon/roma-bzcat-blazars},
168
+ note = {Based on Roma-BZCAT 5th edition (Massaro et al. 2015) via VizieR CDS Strasbourg}
169
+ }
170
+ ```
171
+
172
+ ## License
173
+
174
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
banner.jpg ADDED

Git LFS Details

  • SHA256: 389594a3e5063b2b6f6f963d27b0d0d83908e880b4bcb411a1657f9abb35b8a8
  • Pointer size: 130 Bytes
  • Size of remote file: 89.6 kB
data/roma_bzcat_blazars.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9121d2a90bbe9a7ef7145beaf1cce462630763b0a8a21d73e60863107dec009d
3
+ size 168517