juliensimon commited on
Commit
ed5f608
·
verified ·
1 Parent(s): fb3c72d

Update MPC comet elements: 946 comets

Browse files
Files changed (2) hide show
  1. README.md +131 -0
  2. data/mpc_comet_elements.parquet +3 -0
README.md ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "MPC Comet Orbital Elements"
4
+ language:
5
+ - en
6
+ description: "Orbital elements for all known comets from the Minor Planet Center. Includes perihelion distance, eccentricity, orbital angles, magnitude, and classification."
7
+ task_categories:
8
+ - tabular-classification
9
+ - tabular-regression
10
+ tags:
11
+ - space
12
+ - comets
13
+ - orbits
14
+ - mpc
15
+ - orbital-mechanics
16
+ - open-data
17
+ - tabular-data
18
+ size_categories:
19
+ - n<1K
20
+ configs:
21
+ - config_name: default
22
+ data_files:
23
+ - split: train
24
+ path: data/mpc_comet_elements.parquet
25
+ default: true
26
+ ---
27
+
28
+ # MPC Comet Orbital Elements
29
+
30
+ *Part of the [Orbital Mechanics Datasets](https://huggingface.co/collections/juliensimon/orbital-mechanics-datasets-69c24caca4ab3934c9856994) collection on Hugging Face.*
31
+
32
+ Orbital elements for **946** known comets published by the
33
+ [Minor Planet Center](https://www.minorplanetcenter.net/) (MPC).
34
+ Covers periodic, long-period, defunct, and interstellar objects.
35
+
36
+ ## Dataset description
37
+
38
+ The MPC maintains the authoritative catalogue of comet orbits, updated as new
39
+ observations refine existing solutions and new comets are discovered. Each record
40
+ contains the six Keplerian orbital elements (perihelion distance, eccentricity,
41
+ argument of perihelion, longitude of the ascending node, inclination, and
42
+ perihelion date), plus absolute magnitude and slope parameter.
43
+
44
+ ## Schema
45
+
46
+ | Column | Type | Description |
47
+ |--------|------|-------------|
48
+ | `periodic_comet_number` | Int64 | IAU periodic comet number (null for non-periodic) |
49
+ | `orbit_type` | string | MPC orbit type code: C (long-period), P (periodic), D (defunct), X (uncertain), I (interstellar), A (minor-planet-like) |
50
+ | `orbit_type_name` | string | Human-readable orbit type |
51
+ | `packed_designation` | string | MPC packed provisional designation |
52
+ | `perihelion_year` | int | Year of perihelion passage |
53
+ | `perihelion_month` | int | Month of perihelion passage |
54
+ | `perihelion_day` | float | Day of perihelion passage (TT) |
55
+ | `perihelion_date` | datetime | Perihelion passage date (truncated to day) |
56
+ | `perihelion_distance_au` | float64 | Perihelion distance (AU) |
57
+ | `eccentricity` | float64 | Orbital eccentricity |
58
+ | `arg_perihelion_deg` | float64 | Argument of perihelion, J2000.0 (degrees) |
59
+ | `lon_asc_node_deg` | float64 | Longitude of the ascending node, J2000.0 (degrees) |
60
+ | `inclination_deg` | float64 | Inclination to ecliptic, J2000.0 (degrees) |
61
+ | `epoch_date` | datetime | Epoch of osculating elements (perturbed solutions) |
62
+ | `absolute_magnitude_h` | float64 | Absolute (total) magnitude parameter H |
63
+ | `slope_parameter_g` | float64 | Photometric slope parameter G |
64
+ | `orbital_period_years` | float64 | Orbital period in years (Kepler's 3rd law, null for hyperbolic) |
65
+ | `is_hyperbolic` | bool | True if eccentricity >= 1.0 |
66
+ | `name` | string | Comet name / designation |
67
+ | `reference` | string | MPC reference for the orbit solution |
68
+
69
+ ## Quick stats
70
+
71
+ - **946** comets total
72
+ - **639** periodic (P), **290** long-period (C), **3** defunct (D)
73
+ - **115** on hyperbolic orbits (eccentricity >= 1)
74
+ - Perihelion distances range from **0.0057** to **14.1** AU
75
+ - Closest perihelion: **C/2026 A1 (MAPS)** at **0.005738** AU
76
+
77
+ ## Usage
78
+
79
+ ```python
80
+ from datasets import load_dataset
81
+
82
+ ds = load_dataset("juliensimon/mpc-comet-elements", split="train")
83
+ df = ds.to_pandas()
84
+
85
+ # All periodic comets
86
+ periodic = df[df["orbit_type"] == "P"].sort_values("perihelion_distance_au")
87
+
88
+ # Hyperbolic / interstellar visitors
89
+ hyperbolic = df[df["is_hyperbolic"]].sort_values("eccentricity", ascending=False)
90
+
91
+ # Sun-grazing comets (perihelion < 0.05 AU)
92
+ sungrazers = df[df["perihelion_distance_au"] < 0.05]
93
+
94
+ # Distribution of inclinations
95
+ df["inclination_deg"].hist(bins=50)
96
+ ```
97
+
98
+ ## Data source
99
+
100
+ [Minor Planet Center — Comet Orbital Elements](https://www.minorplanetcenter.net/iau/MPCORB/CometEls.txt).
101
+ Format documentation: [Comet Orbit Format](https://www.minorplanetcenter.net/iau/info/CometOrbitFormat.html).
102
+
103
+ ## Update schedule
104
+
105
+ Rebuilt monthly (static dataset).
106
+
107
+ ## Related datasets
108
+
109
+ - [neo-close-approaches](https://huggingface.co/datasets/juliensimon/neo-close-approaches) — NEO close approaches from NASA JPL
110
+ - [mpc-asteroid-orbits](https://huggingface.co/datasets/juliensimon/mpc-asteroid-orbits) — MPC asteroid orbital elements
111
+
112
+ ## Pipeline
113
+
114
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
115
+
116
+ ## Citation
117
+
118
+ ```bibtex
119
+ @dataset{mpc_comet_elements,
120
+ author = {Simon, Julien},
121
+ title = {MPC Comet Orbital Elements},
122
+ year = {2026},
123
+ publisher = {Hugging Face},
124
+ url = {https://huggingface.co/datasets/juliensimon/mpc-comet-elements},
125
+ note = {Based on data from the IAU Minor Planet Center}
126
+ }
127
+ ```
128
+
129
+ ## License
130
+
131
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
data/mpc_comet_elements.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27ce10699f211ec5de33f826ea8f20ce66f559c4d1c1603f256e864d9460ac29
3
+ size 82247