juliensimon commited on
Commit
5dca6ea
·
verified ·
1 Parent(s): a45ab61

Upload Kepler transit timing: 295,187 transits, 2,599 KOIs

Browse files
Files changed (2) hide show
  1. README.md +121 -0
  2. data/kepler_transit_timing.parquet +3 -0
README.md ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "Kepler Transit Timing Catalog"
4
+ language:
5
+ - en
6
+ description: "Holczer et al. (2016) Kepler transit timing catalog — 295,187 individual transit times for 2,599 Kepler Objects of Interest (KOIs), with O-C residuals, durations, and depths."
7
+ task_categories:
8
+ - tabular-regression
9
+ tags:
10
+ - space
11
+ - exoplanets
12
+ - kepler
13
+ - transit-timing
14
+ - ttv
15
+ - astronomy
16
+ - open-data
17
+ - tabular-data
18
+ size_categories:
19
+ - 100K<n<1M
20
+ configs:
21
+ - config_name: default
22
+ data_files:
23
+ - split: train
24
+ path: data/kepler_transit_timing.parquet
25
+ default: true
26
+ ---
27
+
28
+ # Kepler Transit Timing Catalog
29
+
30
+ *Part of the [Astronomy Datasets](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) collection on Hugging Face.*
31
+
32
+ Transit timing catalog from Holczer et al. (2016), containing **295,187** individual transit
33
+ mid-times for **2,599** Kepler Objects of Interest (KOIs). Each record includes the
34
+ observed mid-transit time, observed-minus-computed (O-C) residual, transit duration, and
35
+ transit depth with uncertainties.
36
+
37
+ ## Dataset description
38
+
39
+ Transit timing variations (TTVs) occur when gravitational interactions between planets in a
40
+ multi-planet system cause measurable deviations from a strictly periodic transit schedule.
41
+ Holczer et al. (2016) performed a uniform analysis of all Kepler long-cadence light curves
42
+ to extract individual transit times, producing the most comprehensive Kepler TTV catalog.
43
+ The O-C (observed minus computed) residuals reveal planetary interactions, orbital
44
+ eccentricities, and the presence of additional non-transiting planets.
45
+
46
+ ## Key columns
47
+
48
+ | Column | Type | Description |
49
+ |--------|------|-------------|
50
+ | `koi` | float64 | Kepler Object of Interest number |
51
+ | `transit_number` | Int32 | Sequential transit number for this KOI |
52
+ | `t_obs_bjd` | float64 | Observed mid-transit time (BJD - 2454833) |
53
+ | `t_obs_err` | float64 | Uncertainty on mid-transit time (days) |
54
+ | `o_c` | float64 | Observed minus computed residual (days) |
55
+ | `o_c_err` | float64 | Uncertainty on O-C residual (days) |
56
+ | `duration_hr` | float64 | Transit duration (hours) |
57
+ | `duration_err` | float64 | Uncertainty on transit duration (hours) |
58
+ | `depth_ppm` | float64 | Transit depth (ppm) |
59
+ | `depth_err` | float64 | Uncertainty on transit depth (ppm) |
60
+
61
+ ## Quick stats
62
+
63
+ - **295,187** individual transit times
64
+ - **2,599** unique KOIs
65
+ - Median O-C residual: **0.0000** days
66
+ - Median transit depth: **nan** ppm
67
+ - Median transit duration: **nan** hours
68
+
69
+ ## Usage
70
+
71
+ ```python
72
+ from datasets import load_dataset
73
+
74
+ ds = load_dataset("juliensimon/kepler-transit-timing", split="train")
75
+ df = ds.to_pandas()
76
+
77
+ # TTVs for a specific KOI
78
+ koi_137 = df[df["koi"] == 137.01].sort_values("transit_number")
79
+ print(f"KOI 137.01: {len(koi_137)} transits")
80
+
81
+ # Plot O-C diagram
82
+ import matplotlib.pyplot as plt
83
+ plt.errorbar(koi_137["transit_number"], koi_137["o_c"],
84
+ yerr=koi_137["o_c_err"], fmt=".", ms=3)
85
+ plt.xlabel("Transit number")
86
+ plt.ylabel("O-C (days)")
87
+ plt.title("KOI 137.01 Transit Timing Variations")
88
+ plt.show()
89
+
90
+ # KOIs with the strongest TTVs (largest O-C scatter)
91
+ ttv_rms = df.groupby("koi")["o_c"].std().sort_values(ascending=False)
92
+ print("Top 10 TTV candidates:")
93
+ print(ttv_rms.head(10))
94
+ ```
95
+
96
+ ## Data source
97
+
98
+ Holczer, T. et al. (2016), "Transit Timing Observations from Kepler. IX. Catalog of
99
+ Transit Timing Measurements of the Long-Cadence Data", ApJS, 225, 9. Accessed via
100
+ [VizieR](https://vizier.cds.unistra.fr/), CDS Strasbourg (J/ApJS/225/9).
101
+
102
+ ## Pipeline
103
+
104
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
105
+
106
+ ## Citation
107
+
108
+ ```bibtex
109
+ @dataset{kepler_transit_timing,
110
+ author = {Simon, Julien},
111
+ title = {Kepler Transit Timing Catalog},
112
+ year = {2026},
113
+ publisher = {Hugging Face},
114
+ url = {https://huggingface.co/datasets/juliensimon/kepler-transit-timing},
115
+ note = {Based on Holczer et al. (2016) ApJS 225, 9, via VizieR CDS}
116
+ }
117
+ ```
118
+
119
+ ## License
120
+
121
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
data/kepler_transit_timing.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bda1c2c48cd81aa72db741054e6c6ab5591ca6cfed662f49a3633b789c7d084
3
+ size 3887793