Datasets:
Update Kepler eclipsing binaries: 2,177 systems
Browse files- README.md +75 -0
- data/kepler_eclipsing_binaries.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
pretty_name: "Kepler Eclipsing Binary Catalog"
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
description: "Kepler mission eclipsing binary catalog. Sourced via VizieR CDS Strasbourg."
|
| 7 |
+
task_categories:
|
| 8 |
+
- tabular-classification
|
| 9 |
+
tags:
|
| 10 |
+
- space
|
| 11 |
+
- kepler
|
| 12 |
+
- eclipsing-binary
|
| 13 |
+
- binary-star
|
| 14 |
+
- astronomy
|
| 15 |
+
- open-data
|
| 16 |
+
size_categories:
|
| 17 |
+
- 1K<n<10K
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
# Kepler Eclipsing Binary Catalog
|
| 21 |
+
|
| 22 |
+
Catalog of **2,177** eclipsing binary systems identified by the Kepler mission,
|
| 23 |
+
with orbital periods, morphology parameters, and stellar properties.
|
| 24 |
+
|
| 25 |
+
## Dataset description
|
| 26 |
+
|
| 27 |
+
Eclipsing binaries are pairs of stars whose orbital plane is aligned with our line of
|
| 28 |
+
sight, producing periodic dips in brightness as one star passes in front of the other.
|
| 29 |
+
The Kepler mission's exquisite photometric precision made it ideal for detecting and
|
| 30 |
+
characterizing these systems. This catalog from Slawson et al. (2011) provides the
|
| 31 |
+
definitive Kepler eclipsing binary list with orbital periods, eclipse morphology
|
| 32 |
+
parameters, and derived stellar properties.
|
| 33 |
+
|
| 34 |
+
## Quick stats
|
| 35 |
+
|
| 36 |
+
- **2,177** eclipsing binaries
|
| 37 |
+
- **2,177** with measured orbital periods
|
| 38 |
+
- **2,022** with effective temperature estimates
|
| 39 |
+
- Median orbital period: **1.851** days
|
| 40 |
+
|
| 41 |
+
## Usage
|
| 42 |
+
|
| 43 |
+
```python
|
| 44 |
+
from datasets import load_dataset
|
| 45 |
+
|
| 46 |
+
ds = load_dataset("juliensimon/kepler-eclipsing-binaries", split="train")
|
| 47 |
+
df = ds.to_pandas()
|
| 48 |
+
|
| 49 |
+
# Short-period binaries (< 1 day)
|
| 50 |
+
if "period_days" in df.columns:
|
| 51 |
+
short = df[df["period_days"] < 1.0]
|
| 52 |
+
print(f"{len(short):,} short-period binaries")
|
| 53 |
+
|
| 54 |
+
# Period distribution
|
| 55 |
+
import matplotlib.pyplot as plt
|
| 56 |
+
if "period_days" in df.columns:
|
| 57 |
+
df["period_days"].dropna().hist(bins=100, log=True)
|
| 58 |
+
plt.xlabel("Orbital Period (days)")
|
| 59 |
+
plt.ylabel("Count")
|
| 60 |
+
plt.title("Kepler EB Period Distribution")
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
## Data source
|
| 64 |
+
|
| 65 |
+
Slawson, R.W. et al. (2011), "Kepler Eclipsing Binary Stars. II. 2165 Eclipsing
|
| 66 |
+
Binaries in the Second Data Release", AJ, 142, 160. Accessed via
|
| 67 |
+
[VizieR](https://vizier.cds.unistra.fr/), CDS Strasbourg.
|
| 68 |
+
|
| 69 |
+
## Pipeline
|
| 70 |
+
|
| 71 |
+
Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
|
| 72 |
+
|
| 73 |
+
## License
|
| 74 |
+
|
| 75 |
+
[CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
|
data/kepler_eclipsing_binaries.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3aa0b8aeabcb21722c8c5d29f26c7529d15d302da1575e0ba65d6055a29f1f06
|
| 3 |
+
size 180680
|