juliensimon commited on
Commit
9ce037a
·
verified ·
1 Parent(s): 39d4953

Upload GALAH DR4: 917,588 stars, 30 elements

Browse files
Files changed (2) hide show
  1. README.md +151 -0
  2. data/galah_dr4_allstar.parquet +3 -0
README.md ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "GALAH DR4 — Stellar Abundances for 917k Stars"
4
+ language:
5
+ - en
6
+ description: "The fourth data release of the Galactic Archaeology with HERMES survey — radial velocities, stellar parameters, and up to 31 elemental abundances for 917,588 stars."
7
+ task_categories:
8
+ - tabular-classification
9
+ - tabular-regression
10
+ tags:
11
+ - space
12
+ - stars
13
+ - spectroscopy
14
+ - galah
15
+ - abundances
16
+ - astronomy
17
+ - open-data
18
+ - tabular-data
19
+ size_categories:
20
+ - 100K<n<1M
21
+ configs:
22
+ - config_name: default
23
+ data_files:
24
+ - split: train
25
+ path: data/galah_dr4_allstar.parquet
26
+ default: true
27
+ ---
28
+
29
+ # GALAH DR4 — Stellar Abundances for 917k Stars
30
+
31
+ *Part of the [Astronomy Datasets](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) collection on Hugging Face.*
32
+
33
+ The fourth data release of the GALactic Archaeology with HERMES (GALAH) survey,
34
+ providing radial velocities, stellar parameters, and up to 31 elemental abundances
35
+ for **917,588** stars observed with the HERMES spectrograph on the
36
+ Anglo-Australian Telescope.
37
+
38
+ ## Dataset description
39
+
40
+ GALAH DR4 is one of the largest stellar spectroscopic surveys, designed to unravel
41
+ the formation and evolution of the Milky Way through chemical tagging. Each star has
42
+ high-resolution spectra decomposed into fundamental stellar parameters and individual
43
+ elemental abundances spanning light elements, alpha-elements, iron-peak elements,
44
+ and neutron-capture elements.
45
+
46
+ Key properties:
47
+ - **906,689** stars with radial velocity measurements
48
+ - **906,432** stars with at least one elemental abundance
49
+ - **30** elemental abundance columns ([X/Fe])
50
+ - Median **24** abundances per star
51
+ - Median SNR: **48.1** per pixel
52
+
53
+ ## Schema
54
+
55
+ | Column | Type | Description |
56
+ |--------|------|-------------|
57
+ | `sobject_id` | string | GALAH observation identifier |
58
+ | `star_id` | string | GALAH unique star identifier |
59
+ | `tmass_id` | string | 2MASS identifier |
60
+ | `gaiadr3_source_id` | string | Gaia DR3 source identifier |
61
+ | `ra` | float64 | Right Ascension J2000 (degrees) |
62
+ | `dec` | float64 | Declination J2000 (degrees) |
63
+ | `teff_k` | float64 | Effective temperature (K) |
64
+ | `logg` | float64 | Surface gravity (log cm/s^2) |
65
+ | `fe_h_dex` | float64 | Iron abundance [Fe/H] (dex) |
66
+ | `vmic` | float64 | Microturbulence velocity (km/s) |
67
+ | `vsini` | float64 | Projected rotational velocity (km/s) |
68
+ | `radial_velocity_kms` | float64 | Barycentric radial velocity (km/s) |
69
+ | `radial_velocity_comp2_kms` | float64 | Binary companion RV (km/s) |
70
+ | `snr_px_ccd1`..`snr_px_ccd4` | float64 | Signal-to-noise per pixel (4 CCDs) |
71
+ | `snr_mean` | float64 | Mean SNR across all 4 CCDs |
72
+ | `flag_sp` | Int64 | Spectroscopic quality flag (0 = best) |
73
+ | `flag_red` | Int64 | Reduction pipeline quality flag |
74
+ | `li_fe`..`eu_fe` | float64 | Elemental abundances [X/Fe] (dex) — 31 elements |
75
+ | `n_abundances` | Int64 | Count of non-null abundance measurements |
76
+
77
+ ### Abundance columns
78
+
79
+ Light: `li_fe`, `c_fe`, `n_fe`, `o_fe` ·
80
+ Odd-Z: `na_fe`, `al_fe`, `k_fe` ·
81
+ Alpha: `mg_fe`, `si_fe`, `ca_fe`, `ti_fe` ·
82
+ Iron-peak: `sc_fe`, `v_fe`, `cr_fe`, `mn_fe`, `co_fe`, `ni_fe`, `cu_fe`, `zn_fe` ·
83
+ s-process: `rb_fe`, `sr_fe`, `y_fe`, `zr_fe`, `mo_fe`, `ba_fe`, `la_fe`, `ce_fe`, `nd_fe` ·
84
+ r-process: `ru_fe`, `sm_fe`, `eu_fe`
85
+
86
+ ## Usage
87
+
88
+ ```python
89
+ from datasets import load_dataset
90
+
91
+ ds = load_dataset("juliensimon/galah-dr4-stellar-abundances", split="train")
92
+ df = ds.to_pandas()
93
+
94
+ # High-quality stars with best spectroscopic flags
95
+ best = df[df["flag_sp"] == 0]
96
+
97
+ # Metal-poor stars
98
+ metal_poor = df[df["fe_h_dex"] < -1.0]
99
+
100
+ # Stars rich in europium (r-process)
101
+ eu_rich = df[df["eu_fe"] > 0.5]
102
+
103
+ # Stars with the most measured abundances
104
+ well_measured = df.sort_values("n_abundances", ascending=False).head(1000)
105
+
106
+ # Kiel diagram (logg vs Teff)
107
+ import matplotlib.pyplot as plt
108
+ sample = df[df["flag_sp"] == 0].sample(50000)
109
+ plt.scatter(sample["teff_k"], sample["logg"], c=sample["fe_h_dex"],
110
+ s=0.1, cmap="coolwarm", vmin=-1.5, vmax=0.5)
111
+ plt.gca().invert_xaxis()
112
+ plt.gca().invert_yaxis()
113
+ plt.xlabel("Teff (K)")
114
+ plt.ylabel("log g")
115
+ plt.colorbar(label="[Fe/H]")
116
+ ```
117
+
118
+ ## Data source
119
+
120
+ [GALAH Survey DR4](https://www.galah-survey.org/dr4/) (Buder et al. 2024).
121
+ Observed with the HERMES spectrograph (R ≈ 28,000) on the 3.9m Anglo-Australian
122
+ Telescope at Siding Spring Observatory.
123
+
124
+ ## Update schedule
125
+
126
+ Static dataset — uploaded once from the DR4 release catalog.
127
+
128
+ ## Related datasets
129
+
130
+ - [gaia-dr3-astrophysical-parameters](https://huggingface.co/datasets/juliensimon/gaia-dr3-astrophysical-parameters) — Gaia DR3 stellar parameters
131
+ - [exoplanet-catalog](https://huggingface.co/datasets/juliensimon/exoplanet-catalog) — Confirmed exoplanets
132
+ - [pulsar-catalog](https://huggingface.co/datasets/juliensimon/pulsar-catalog) — Pulsar catalog
133
+
134
+ ## Pipeline
135
+
136
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
137
+
138
+ ## Citation
139
+
140
+ ```bibtex
141
+ @article{buder2024galah,
142
+ author = {Buder, Sven and others},
143
+ title = {The GALAH Survey: Data Release 4},
144
+ year = {2024},
145
+ journal = {arXiv preprint arXiv:2409.19858},
146
+ }
147
+ ```
148
+
149
+ ## License
150
+
151
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
data/galah_dr4_allstar.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72e98d1bff7cb56814e1f162c24ddd21ac541129f22cb2bdac0837917161bffc
3
+ size 166772615