juliensimon/rc3-galaxy-morphology
收藏Hugging Face2026-03-25 更新2026-03-29 收录
下载链接:
https://hf-mirror.com/datasets/juliensimon/rc3-galaxy-morphology
下载链接
链接失效反馈官方服务:
资源简介:
---
license: cc-by-4.0
pretty_name: "Third Reference Catalogue of Bright Galaxies (RC3)"
language:
- en
description: "RC3 catalog of 23,011 bright galaxies with morphological classifications, photometry, and redshifts."
task_categories:
- tabular-classification
- tabular-regression
tags:
- space
- galaxy
- morphology
- rc3
- hubble-type
- astronomy
- open-data
size_categories:
- 10K<n<100K
---
# Third Reference Catalogue of Bright Galaxies (RC3)
The Third Reference Catalogue of Bright Galaxies (RC3), the classic comprehensive catalog of
**23,011** bright galaxies with Hubble-type morphological classifications, photometry,
diameters, and radial velocities.
## Dataset description
RC3 is the definitive catalog of bright galaxies, compiled by de Vaucouleurs, de Vaucouleurs,
Corwin, Buta, Paturel, and Fouque (1991). It provides homogeneous morphological classifications
on the revised Hubble system (numerical type T from -5 for ellipticals to +10 for irregulars),
total B magnitudes, colors, diameters, axis ratios, luminosity classes, surface brightnesses,
and heliocentric radial velocities. RC3 remains the standard reference for galaxy morphology
and is widely used for training galaxy classification models.
## Schema
| Column | Type | Description |
|--------|------|-------------|
| `name` | string | Galaxy name/designation |
| `pgc_number` | string | PGC (Principal Galaxies Catalogue) number |
| `ra_deg` | float64 | Right ascension J2000 (degrees) |
| `dec_deg` | float64 | Declination J2000 (degrees) |
| `morphological_type` | string | Morphological type string (e.g. "SBbc", "E3") |
| `morphological_type_t` | float64 | Numerical Hubble type T (-5=E to +10=Irr) |
| `luminosity_class` | float64 | Luminosity class (van den Bergh system) |
| `surface_brightness` | float64 | Mean surface brightness |
| `bt_magnitude` | float64 | Total apparent B magnitude |
| `e_bt_magnitude` | float64 | Error on B magnitude |
| `b_v_color` | float64 | B-V color index |
| `u_b_color` | float64 | U-B color index |
| `helio_radial_velocity` | float64 | Heliocentric radial velocity (km/s) |
| `e_helio_radial_velocity` | float64 | Error on radial velocity (km/s) |
| `log_diameter_d25` | float64 | Log of isophotal diameter D25 (0.1 arcmin) |
| `log_axis_ratio_r25` | float64 | Log of axis ratio at D25 isophote |
## Quick stats
- **23,011** bright galaxies
- **0** with morphological type
- **0** with radial velocity
- **4,014** with B magnitude
- Hubble type T range: -6 to 99
## Usage
```python
from datasets import load_dataset
ds = load_dataset("juliensimon/rc3-galaxy-morphology", split="train")
df = ds.to_pandas()
# Hubble type distribution
import matplotlib.pyplot as plt
df["morphological_type_t"].dropna().hist(bins=30)
plt.xlabel("Hubble Type T (-5=E, 0=S0/a, 5=Sc, 10=Irr)")
plt.ylabel("Count")
plt.title("RC3 Galaxy Morphological Type Distribution")
plt.show()
# Color-magnitude diagram
valid = df.dropna(subset=["bt_magnitude", "b_v_color"])
plt.scatter(valid["b_v_color"], valid["bt_magnitude"], s=1, alpha=0.3)
plt.gca().invert_yaxis()
plt.xlabel("B-V Color")
plt.ylabel("B magnitude")
plt.title("RC3 Color-Magnitude Diagram")
plt.show()
# Ellipticals vs spirals
ellipticals = df[df["morphological_type_t"] <= -3]
spirals = df[(df["morphological_type_t"] >= 1) & (df["morphological_type_t"] <= 9)]
print(f"Ellipticals (T <= -3): {len(ellipticals):,}")
print(f"Spirals (1 <= T <= 9): {len(spirals):,}")
```
## Data source
de Vaucouleurs, G., de Vaucouleurs, A., Corwin, H.G. Jr., Buta, R.J., Paturel, G.,
and Fouque, P. (1991), *Third Reference Catalogue of Bright Galaxies (RC3).*
Springer-Verlag, New York. Via [VizieR](https://vizier.cds.unistra.fr/) CDS Strasbourg (VII/155).
## Pipeline
Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
## Citation
```bibtex
@dataset{rc3_galaxy_morphology,
author = {Simon, Julien},
title = {Third Reference Catalogue of Bright Galaxies (RC3)},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/juliensimon/rc3-galaxy-morphology},
note = {Based on de Vaucouleurs et al. (1991) via VizieR CDS Strasbourg}
}
```
## License
[CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
提供机构:
juliensimon



