Datasets:
Update GCVS variable stars: 60,894 stars
Browse files- README.md +49 -68
- banner.jpg +3 -0
- data/gcvs_variable_stars.parquet +1 -1
README.md
CHANGED
|
@@ -3,7 +3,7 @@ license: cc-by-4.0
|
|
| 3 |
pretty_name: "General Catalogue of Variable Stars (GCVS)"
|
| 4 |
language:
|
| 5 |
- en
|
| 6 |
-
description: "The canonical catalog of variable stars maintained since 1948 by the Sternberg Astronomical Institute
|
| 7 |
task_categories:
|
| 8 |
- tabular-classification
|
| 9 |
tags:
|
|
@@ -27,64 +27,44 @@ configs:
|
|
| 27 |
|
| 28 |
# General Catalogue of Variable Stars (GCVS)
|
| 29 |
|
| 30 |
-
*Part of the [Astronomy Datasets](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) collection on Hugging Face.*
|
| 31 |
|
| 32 |
-
|
| 33 |
-
|
|
|
|
|
|
|
| 34 |
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
Currently **60,894** variable stars with 544 variability types.
|
| 38 |
|
| 39 |
## Dataset description
|
| 40 |
|
| 41 |
-
Variable
|
| 42 |
-
|
| 43 |
-
is the internationally recognized authority for variable star designations and classifications.
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
variables (SR) occupy a similar evolutionary stage but pulsate with smaller amplitudes and
|
| 54 |
-
less predictable cycles. Eclipsing binaries (EA, EB, EW) are not intrinsically variable at
|
| 55 |
-
all -- their brightness changes arise purely from orbital geometry as one star transits the
|
| 56 |
-
disk of its companion. At the other extreme, eruptive variables like UV Ceti flare stars and
|
| 57 |
-
FU Orionis objects undergo sudden, dramatic outbursts linked to magnetic reconnection events
|
| 58 |
-
or disk accretion instabilities.
|
| 59 |
-
|
| 60 |
-
Among the most scientifically important classes are the pulsating variables used as standard
|
| 61 |
-
candles: classical Cepheids (DCEP), whose period-luminosity relation underpins the
|
| 62 |
-
extragalactic distance ladder, and RR Lyrae stars (RR), horizontal-branch pulsators that
|
| 63 |
-
trace the old stellar populations of the Galactic halo and globular clusters. The GCVS
|
| 64 |
-
classification scheme, refined over decades, remains the basis for variable star taxonomy
|
| 65 |
-
worldwide, and GCVS designations are the official IAU-recognized names for variable stars
|
| 66 |
-
not already named in the Bayer or Flamsteed systems.
|
| 67 |
-
|
| 68 |
-
Because the GCVS draws on over a century of photometric monitoring, it captures variability
|
| 69 |
-
on timescales inaccessible to modern surveys that have operated for only a few years. Many
|
| 70 |
-
entries include epochs of maximum light stretching back to the early twentieth century,
|
| 71 |
-
enabling studies of period changes, evolutionary effects, and long-term amplitude modulation
|
| 72 |
-
that would be impossible from any single contemporary survey alone.
|
| 73 |
|
| 74 |
## Schema
|
| 75 |
|
| 76 |
-
| Column | Type | Description |
|
| 77 |
-
|--------|------|-------------|
|
| 78 |
-
| `gcvs_name` |
|
| 79 |
-
| `ra_deg` | float64 | Right ascension J2000
|
| 80 |
-
| `dec_deg` | float64 | Declination J2000
|
| 81 |
-
| `variable_type` |
|
| 82 |
-
| `magnitude_max` | float64 |
|
| 83 |
-
| `magnitude_min_flag` |
|
| 84 |
-
| `magnitude_min` | float64 |
|
| 85 |
-
| `period_days` | float64 |
|
| 86 |
-
| `epoch_jd` | float64 |
|
| 87 |
-
| `spectral_type` |
|
| 88 |
|
| 89 |
## Quick stats
|
| 90 |
|
|
@@ -99,6 +79,13 @@ that would be impossible from any single contemporary survey alone.
|
|
| 99 |
```python
|
| 100 |
from datasets import load_dataset
|
| 101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
ds = load_dataset("juliensimon/gcvs-variable-stars", split="train")
|
| 103 |
df = ds.to_pandas()
|
| 104 |
|
|
@@ -120,42 +107,36 @@ plt.gca().invert_yaxis()
|
|
| 120 |
plt.xlabel("Period (days)")
|
| 121 |
plt.ylabel("Magnitude (max brightness)")
|
| 122 |
plt.title("GCVS Period vs Magnitude")
|
|
|
|
| 123 |
```
|
| 124 |
|
| 125 |
## Data source
|
| 126 |
|
| 127 |
-
|
| 128 |
-
(Samus' N.N., Kazarovets E.V., Durlevich O.V., Kireeva N.N., Pastukhova E.N., 2017,
|
| 129 |
-
Astronomy Reports, 61, 80), accessed via [VizieR](https://vizier.cds.unistra.fr/), CDS Strasbourg.
|
| 130 |
-
|
| 131 |
-
## Update schedule
|
| 132 |
-
|
| 133 |
-
Quarterly (1st of the month at 08:00 UTC) via [GitHub Actions](https://github.com/juliensimon/space-datasets).
|
| 134 |
|
| 135 |
## Related datasets
|
| 136 |
|
| 137 |
-
- [pulsar-catalog](https://huggingface.co/datasets/juliensimon/pulsar-catalog)
|
| 138 |
-
|
| 139 |
-
- [
|
| 140 |
|
| 141 |
-
|
| 142 |
|
| 143 |
-
|
| 144 |
|
| 145 |
-
##
|
| 146 |
|
| 147 |
-
|
| 148 |
|
| 149 |
## Citation
|
| 150 |
|
| 151 |
```bibtex
|
| 152 |
@dataset{gcvs_variable_stars,
|
| 153 |
-
author = {Simon, Julien},
|
| 154 |
title = {General Catalogue of Variable Stars (GCVS)},
|
|
|
|
| 155 |
year = {2026},
|
| 156 |
-
publisher = {Hugging Face},
|
| 157 |
url = {https://huggingface.co/datasets/juliensimon/gcvs-variable-stars},
|
| 158 |
-
|
| 159 |
}
|
| 160 |
```
|
| 161 |
|
|
|
|
| 3 |
pretty_name: "General Catalogue of Variable Stars (GCVS)"
|
| 4 |
language:
|
| 5 |
- en
|
| 6 |
+
description: "The General Catalogue of Variable Stars (GCVS) is the canonical reference catalog of variable stars, maintained since 1948 by the Sternberg Astronomical Institute at Moscow State University. Variable"
|
| 7 |
task_categories:
|
| 8 |
- tabular-classification
|
| 9 |
tags:
|
|
|
|
| 27 |
|
| 28 |
# General Catalogue of Variable Stars (GCVS)
|
| 29 |
|
|
|
|
| 30 |
|
| 31 |
+
<div align="center">
|
| 32 |
+
<img src="banner.jpg" alt="The Crab Nebula, a supernova remnant" width="400">
|
| 33 |
+
<p><em>Credit: NASA/ESA/Hubble</em></p>
|
| 34 |
+
</div>
|
| 35 |
|
| 36 |
+
|
| 37 |
+
*Part of a [dataset collection](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) on Hugging Face.*
|
|
|
|
| 38 |
|
| 39 |
## Dataset description
|
| 40 |
|
| 41 |
+
The General Catalogue of Variable Stars (GCVS) is the canonical reference catalog of variable stars, maintained since 1948 by the Sternberg Astronomical Institute at Moscow State University.
|
| 42 |
+
|
| 43 |
+
Variable stars are stars whose brightness changes over time, either due to intrinsic physical processes (pulsation, eruption, rotation) or extrinsic geometry (eclipsing binaries). The GCVS is the internationally recognized authority for variable star designations and classifications. It has been compiled and updated for over 75 years, serving as the foundation for stellar variability research.
|
| 44 |
+
|
| 45 |
+
The catalog spans an extraordinary range of stellar physics. Mira variables (type M) are asymptotic giant branch stars with periods of hundreds of days and visual amplitudes exceeding 2.5 magnitudes, driven by radial pulsations in their extended hydrogen envelopes. Semi-regular variables (SR) occupy a similar evolutionary stage but pulsate with smaller amplitudes and less predictable cycles. Eclipsing binaries (EA, EB, EW) are not intrinsically variable at all -- their brightness changes arise purely from orbital geometry as one star transits the disk of its companion. At the other extreme, eruptive variables like UV Ceti flare stars and FU Orionis objects undergo sudden, dramatic outbursts linked to magnetic reconnection events or disk accretion instabilities.
|
| 46 |
+
|
| 47 |
+
Among the most scientifically important classes are the pulsating variables used as standard candles: classical Cepheids (DCEP), whose period-luminosity relation underpins the extragalactic distance ladder, and RR Lyrae stars (RR), horizontal-branch pulsators that trace the old stellar populations of the Galactic halo and globular clusters.
|
| 48 |
+
|
| 49 |
+
Because the GCVS draws on over a century of photometric monitoring, it captures variability on timescales inaccessible to modern surveys that have operated for only a few years. Many entries include epochs of maximum light stretching back to the early twentieth century, enabling studies of period changes, evolutionary effects, and long-term amplitude modulation that would be impossible from any single contemporary survey alone.
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
This dataset is suitable for **tabular classification** tasks.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
|
| 54 |
## Schema
|
| 55 |
|
| 56 |
+
| Column | Type | Description | Sample | Null % |
|
| 57 |
+
|--------|------|-------------|--------|--------|
|
| 58 |
+
| `gcvs_name` | str | GCVS official designation — Greek letter + constellation for bright variables (e.g. 'R And', 'delta Cep'), or V+number for fainter ones (e.g. 'V1500 Cyg'); IAU-recognized identifier | AA And | 0.0% |
|
| 59 |
+
| `ra_deg` | float64 | Right ascension, ICRS J2000.0, in decimal degrees (0-360) | 346.3451666666666 | 0.3% |
|
| 60 |
+
| `dec_deg` | float64 | Declination, ICRS J2000.0, in decimal degrees (-90 to +90) | 47.67630555555555 | 0.3% |
|
| 61 |
+
| `variable_type` | str | GCVS variability type code; common values: DCEP (classical Cepheid, period-luminosity standard candle), RR (RR Lyrae, old metal-poor horizontal-branch pulsator), M (Mira, AGB long-period pulsator), SR (semi-regular), EA/EB/EW (eclipsing binaries), UV (UV Ceti/flare star), N (nova), SN (supernova); ~100 distinct types | EB | 1.4% |
|
| 62 |
+
| `magnitude_max` | float64 | Brightness at maximum light in V-band (mag); lower value = brighter star; null for a small number of entries | 10.3 | 0.4% |
|
| 63 |
+
| `magnitude_min_flag` | str | Qualifier on magnitude_min: '(' means value is amplitude (mag range) rather than absolute minimum magnitude; blank otherwise | < | 83.4% |
|
| 64 |
+
| `magnitude_min` | float64 | Brightness at minimum light in V-band (mag); for eclipsing binaries this is the primary minimum; amplitude = magnitude_min - magnitude_max; null for irregular variables with poorly defined minima | 11.2 | 0.8% |
|
| 65 |
+
| `period_days` | float64 | Pulsation or orbital period in days; null for irregular variables (type L, I), single-event novae, and eruptive stars with no recurring period | 0.9350969 | 34.2% |
|
| 66 |
+
| `epoch_jd` | float64 | Julian Date of the light curve reference point — epoch of maximum light for pulsators, epoch of primary minimum for eclipsing binaries; null when no reliable epoch has been established | 52500.73 | 46.1% |
|
| 67 |
+
| `spectral_type` | str | MK spectral type at the phase of maximum light; null for ~40% of entries where spectral classification is unavailable | B8V | 75.2% |
|
| 68 |
|
| 69 |
## Quick stats
|
| 70 |
|
|
|
|
| 79 |
```python
|
| 80 |
from datasets import load_dataset
|
| 81 |
|
| 82 |
+
ds = load_dataset("juliensimon/gcvs-variable-stars", split="train")
|
| 83 |
+
df = ds.to_pandas()
|
| 84 |
+
```
|
| 85 |
+
|
| 86 |
+
```python
|
| 87 |
+
from datasets import load_dataset
|
| 88 |
+
|
| 89 |
ds = load_dataset("juliensimon/gcvs-variable-stars", split="train")
|
| 90 |
df = ds.to_pandas()
|
| 91 |
|
|
|
|
| 107 |
plt.xlabel("Period (days)")
|
| 108 |
plt.ylabel("Magnitude (max brightness)")
|
| 109 |
plt.title("GCVS Period vs Magnitude")
|
| 110 |
+
plt.show()
|
| 111 |
```
|
| 112 |
|
| 113 |
## Data source
|
| 114 |
|
| 115 |
+
https://www.sai.msu.su/gcvs/gcvs/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 116 |
|
| 117 |
## Related datasets
|
| 118 |
|
| 119 |
+
- [juliensimon/pulsar-catalog](https://huggingface.co/datasets/juliensimon/pulsar-catalog)
|
| 120 |
+
|
| 121 |
+
- [juliensimon/messier-catalog](https://huggingface.co/datasets/juliensimon/messier-catalog)
|
| 122 |
|
| 123 |
+
- [juliensimon/ngc-ic-catalog](https://huggingface.co/datasets/juliensimon/ngc-ic-catalog)
|
| 124 |
|
| 125 |
+
> If you find this dataset useful, please consider [giving it a like](https://huggingface.co/datasets/juliensimon/gcvs-variable-stars) on Hugging Face. It helps others discover it.
|
| 126 |
|
| 127 |
+
## About the author
|
| 128 |
|
| 129 |
+
Created by [Julien Simon](https://julien.org) — AI Operating Partner at Fortino Capital. Part of the [Space Datasets](https://julien.org/datasets) collection.
|
| 130 |
|
| 131 |
## Citation
|
| 132 |
|
| 133 |
```bibtex
|
| 134 |
@dataset{gcvs_variable_stars,
|
|
|
|
| 135 |
title = {General Catalogue of Variable Stars (GCVS)},
|
| 136 |
+
author = {juliensimon},
|
| 137 |
year = {2026},
|
|
|
|
| 138 |
url = {https://huggingface.co/datasets/juliensimon/gcvs-variable-stars},
|
| 139 |
+
publisher = {Hugging Face}
|
| 140 |
}
|
| 141 |
```
|
| 142 |
|
banner.jpg
ADDED
|
Git LFS Details
|
data/gcvs_variable_stars.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 2061902
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7dd058efeb864f648f9e154ac3db1b7b1c21c880230baf4f87e721b64fd1b15
|
| 3 |
size 2061902
|