juliensimon commited on
Commit
546f2e3
·
verified ·
1 Parent(s): ad7f349

Update comet catalog: 1,278 comets

Browse files
Files changed (2) hide show
  1. README.md +142 -0
  2. data/comets.parquet +3 -0
README.md ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc0-1.0
3
+ pretty_name: "Comet Catalog"
4
+ language:
5
+ - en
6
+ description: >-
7
+ Catalog of comets sourced from Wikidata, including orbital parameters,
8
+ discovery dates, discoverers, and named-after information.
9
+ 1,278 comets with orbital mechanics data.
10
+ size_categories:
11
+ - 1K<n<10K
12
+ task_categories:
13
+ - tabular-classification
14
+ tags:
15
+ - space
16
+ - comets
17
+ - orbital-mechanics
18
+ - wikidata
19
+ - open-data
20
+ - tabular-data
21
+ - parquet
22
+ configs:
23
+ - config_name: default
24
+ default: true
25
+ data_files:
26
+ - split: train
27
+ path: data/comets.parquet
28
+ ---
29
+
30
+ # Comet Catalog
31
+
32
+ *Part of the [Orbital Mechanics Datasets](https://huggingface.co/collections/juliensimon/orbital-mechanics-datasets-69c24caca4ab3934c9856994) collection on Hugging Face.*
33
+
34
+ Catalog of **1,278** comets sourced from [Wikidata](https://www.wikidata.org/), covering
35
+ orbital parameters, discovery history, and naming origins.
36
+
37
+ ## Dataset description
38
+
39
+ Comets are small icy bodies that develop a coma and tails when approaching the Sun.
40
+ They originate from the Kuiper Belt and Oort Cloud and follow highly eccentric orbits
41
+ ranging from short-period comets (< 200 years) to long-period and hyperbolic visitors.
42
+
43
+ This dataset aggregates structured comet data from Wikidata's SPARQL endpoint, capturing
44
+ orbital mechanics (period, perihelion distance, eccentricity, inclination), discovery
45
+ metadata (date, discoverer), and cultural information (named-after entities). It covers
46
+ historically significant comets like Halley's Comet and Hale-Bopp through recently
47
+ discovered objects.
48
+
49
+ The data enables studies of comet population statistics, orbital dynamics, discovery
50
+ rate trends over time, and the history of comet observation and naming conventions.
51
+
52
+ ## Schema
53
+
54
+ | Column | Type | Description |
55
+ |--------|------|-------------|
56
+ | `wikidata_id` | string | Wikidata entity ID (e.g. Q1390) |
57
+ | `name` | string | Comet name or designation |
58
+ | `discovery_date` | string | Date of discovery (YYYY-MM-DD) |
59
+ | `discoverer` | string | Name of discoverer(s) |
60
+ | `orbital_period_yr` | float | Orbital period (years) |
61
+ | `perihelion_au` | float | Perihelion distance (AU) |
62
+ | `eccentricity` | float | Orbital eccentricity |
63
+ | `inclination_deg` | float | Orbital inclination (degrees) |
64
+ | `named_after` | string | Entity the comet is named after |
65
+ | `epoch` | string | Orbital element epoch (YYYY-MM-DD) |
66
+ | `discovery_year` | int | Year of discovery (derived) |
67
+
68
+ ## Quick stats
69
+
70
+ - **1,278** comets in catalog
71
+ - **813** with orbital period data
72
+ - **1,225** with perihelion distance
73
+ - **1,227** with eccentricity
74
+ - **728** with named discoverer
75
+ - Discovery years: 1680 – 2026
76
+ - Top discoverers: Lincoln Near-Earth Asteroid Research (56), Pan-STARRS (27), Jean-Louis Pons (26), Andrea Boattini (23), Near-Earth Asteroid Tracking (21)
77
+
78
+ ## Usage
79
+
80
+ ```python
81
+ from datasets import load_dataset
82
+
83
+ ds = load_dataset("juliensimon/comet-catalog", split="train")
84
+ df = ds.to_pandas()
85
+
86
+ # Short-period comets (period < 200 years)
87
+ short_period = df[df["orbital_period_yr"] < 200].dropna(subset=["orbital_period_yr"])
88
+ print(f"{len(short_period):,} short-period comets")
89
+
90
+ # Most recently discovered comets
91
+ recent = df.dropna(subset=["discovery_year"]).nlargest(10, "discovery_year")
92
+ print(recent[["name", "discovery_year", "discoverer"]])
93
+
94
+ # Highly eccentric comets (near-parabolic or hyperbolic)
95
+ high_ecc = df[df["eccentricity"] >= 0.99].dropna(subset=["eccentricity"])
96
+ print(high_ecc[["name", "eccentricity", "orbital_period_yr"]])
97
+
98
+ # Comets by perihelion distance
99
+ inner = df[df["perihelion_au"] < 0.3].dropna(subset=["perihelion_au"])
100
+ print(f"{len(inner):,} sungrazing comets (perihelion < 0.3 AU)")
101
+ ```
102
+
103
+ ## Data source
104
+
105
+ [Wikidata](https://www.wikidata.org/) SPARQL endpoint. Comets identified via
106
+ P31 (instance of) / P279* (subclass of) traversal from Q3559 (comet).
107
+ Data is community-curated by [WikiProject Astronomy](https://www.wikidata.org/wiki/Wikidata:WikiProject_Astronomy).
108
+
109
+ ## Update schedule
110
+
111
+ Quarterly (January, April, July, October). Run `python scripts/update-comets.py` manually to refresh.
112
+
113
+ ## Related datasets
114
+
115
+ - [mpc-comet-elements](https://huggingface.co/datasets/juliensimon/mpc-comet-elements) -- MPC orbital elements for comets
116
+ - [jpl-small-body-database](https://huggingface.co/datasets/juliensimon/jpl-small-body-database) -- JPL small body orbital data
117
+ - [fireball-bolide-events](https://huggingface.co/datasets/juliensimon/fireball-bolide-events) -- Fireball and bolide events
118
+
119
+ ## Pipeline
120
+
121
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
122
+
123
+ ## Support
124
+
125
+ If you find this dataset useful, please give it a ❤️ on the [dataset page](https://huggingface.co/datasets/juliensimon/comet-catalog) and share feedback in the Community tab! Also consider giving a ⭐️ to the [space-datasets](https://github.com/juliensimon/space-datasets) repo.
126
+
127
+ ## Citation
128
+
129
+ ```bibtex
130
+ @dataset{comet_catalog,
131
+ author = {Simon, Julien},
132
+ title = {Comet Catalog},
133
+ year = {2026},
134
+ publisher = {Hugging Face},
135
+ url = {https://huggingface.co/datasets/juliensimon/comet-catalog},
136
+ note = {Sourced from Wikidata (CC0)}
137
+ }
138
+ ```
139
+
140
+ ## License
141
+
142
+ [CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/) (Wikidata content is public domain)
data/comets.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a1cd91ae60c5f5d4742561335d38acae7cc9c0659606bc1e59869a81af3faed3
3
+ size 73715