juliensimon commited on
Commit
f1ae470
·
verified ·
1 Parent(s): 5b79c67

Update GCVS variable stars: 60,894 stars

Browse files
Files changed (2) hide show
  1. README.md +126 -0
  2. data/gcvs_variable_stars.parquet +3 -0
README.md ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ 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, Moscow. Sourced via VizieR CDS Strasbourg."
7
+ task_categories:
8
+ - tabular-classification
9
+ tags:
10
+ - space
11
+ - variable-star
12
+ - astronomy
13
+ - gcvs
14
+ - stellar
15
+ - open-data
16
+ size_categories:
17
+ - 10K<n<100K
18
+ ---
19
+
20
+ # General Catalogue of Variable Stars (GCVS)
21
+
22
+ ![Update GCVS](https://github.com/juliensimon/space-datasets/actions/workflows/update-gcvs.yml/badge.svg)
23
+ ![Updated](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/juliensimon/space-datasets/main/status.json&query=$.gcvs&label=updated&color=brightgreen)
24
+
25
+ The General Catalogue of Variable Stars (GCVS) is **the** canonical reference catalog of variable
26
+ stars, maintained since 1948 by the Sternberg Astronomical Institute at Moscow State University.
27
+ Currently **60,894** variable stars with 544 variability types.
28
+
29
+ ## Dataset description
30
+
31
+ Variable stars are stars whose brightness changes over time, either due to intrinsic physical
32
+ processes (pulsation, eruption, rotation) or extrinsic geometry (eclipsing binaries). The GCVS
33
+ is the internationally recognized authority for variable star designations and classifications.
34
+ It has been compiled and updated for over 75 years, serving as the foundation for stellar
35
+ variability research.
36
+
37
+ Each entry includes the GCVS designation, coordinates, variability type, magnitude range,
38
+ period, epoch of maximum, and spectral type where known.
39
+
40
+ ## Schema
41
+
42
+ | Column | Type | Description |
43
+ |--------|------|-------------|
44
+ | `gcvs_name` | string | GCVS designation (e.g. "R And", "delta Cep") |
45
+ | `ra_deg` | float64 | Right ascension J2000 (degrees) |
46
+ | `dec_deg` | float64 | Declination J2000 (degrees) |
47
+ | `variable_type` | string | Variability type (e.g. M, SR, EA, DCEP, RR) |
48
+ | `magnitude_max` | float64 | Maximum brightness (mag, lower = brighter) |
49
+ | `magnitude_min_flag` | string | Flag on minimum magnitude (e.g. "(" for amplitude) |
50
+ | `magnitude_min` | float64 | Minimum brightness (mag) |
51
+ | `period_days` | float64 | Period in days |
52
+ | `epoch_jd` | float64 | Epoch of maximum/minimum (Julian Date) |
53
+ | `spectral_type` | string | Spectral type |
54
+
55
+ ## Quick stats
56
+
57
+ - **60,894** variable stars
58
+ - **544** variability types
59
+ - **40,096** with known period
60
+ - **15,116** with spectral type
61
+ - Top types: M (7,920), RRAB (7,590), EA (4,113), EW (3,616), LB (2,800)
62
+
63
+ ## Usage
64
+
65
+ ```python
66
+ from datasets import load_dataset
67
+
68
+ ds = load_dataset("juliensimon/gcvs-variable-stars", split="train")
69
+ df = ds.to_pandas()
70
+
71
+ # Cepheid variables (standard candles for distance measurement)
72
+ cepheids = df[df["variable_type"].str.startswith("DCEP", na=False)]
73
+ print(f"{len(cepheids):,} classical Cepheids")
74
+
75
+ # Eclipsing binaries
76
+ eclipsing = df[df["variable_type"].str.startswith("E", na=False)]
77
+ print(f"{len(eclipsing):,} eclipsing binaries")
78
+
79
+ # Period-luminosity distribution
80
+ import matplotlib.pyplot as plt
81
+ valid = df.dropna(subset=["period_days", "magnitude_max"])
82
+ valid = valid[valid["period_days"] > 0]
83
+ plt.scatter(valid["period_days"], valid["magnitude_max"], s=0.5, alpha=0.3)
84
+ plt.xscale("log")
85
+ plt.gca().invert_yaxis()
86
+ plt.xlabel("Period (days)")
87
+ plt.ylabel("Magnitude (max brightness)")
88
+ plt.title("GCVS Period vs Magnitude")
89
+ ```
90
+
91
+ ## Data source
92
+
93
+ [General Catalogue of Variable Stars](https://www.sai.msu.su/gcvs/gcvs/)
94
+ (Samus' N.N., Kazarovets E.V., Durlevich O.V., Kireeva N.N., Pastukhova E.N., 2017,
95
+ Astronomy Reports, 61, 80), accessed via [VizieR](https://vizier.cds.unistra.fr/), CDS Strasbourg.
96
+
97
+ ## Update schedule
98
+
99
+ Quarterly (1st of the month at 08:00 UTC) via [GitHub Actions](https://github.com/juliensimon/space-datasets).
100
+
101
+ ## Related datasets
102
+
103
+ - [pulsar-catalog](https://huggingface.co/datasets/juliensimon/pulsar-catalog) -- ATNF Pulsar Catalogue
104
+ - [messier-catalog](https://huggingface.co/datasets/juliensimon/messier-catalog) -- Messier deep-sky objects
105
+ - [ngc-ic-catalog](https://huggingface.co/datasets/juliensimon/ngc-ic-catalog) -- NGC/IC deep-sky catalog
106
+
107
+ ## Pipeline
108
+
109
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
110
+
111
+ ## Citation
112
+
113
+ ```bibtex
114
+ @dataset{gcvs_variable_stars,
115
+ author = {Simon, Julien},
116
+ title = {General Catalogue of Variable Stars (GCVS)},
117
+ year = {2026},
118
+ publisher = {Hugging Face},
119
+ url = {https://huggingface.co/datasets/juliensimon/gcvs-variable-stars},
120
+ note = {Based on GCVS (Samus' et al. 2017) via VizieR CDS Strasbourg}
121
+ }
122
+ ```
123
+
124
+ ## License
125
+
126
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
data/gcvs_variable_stars.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08b960e6ee39c27e94c1540997e6bb61811958842a77cc380db97ff5e3dce3c2
3
+ size 2061938