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