File size: 4,722 Bytes
9fbcfa2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7d3972f
9fbcfa2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2a4b187
 
9fbcfa2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2a4b187
9fbcfa2
 
 
2a4b187
9fbcfa2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
133
134
135
136
---
license: cc0-1.0
pretty_name: "Meteorite Database"
language:
  - en
description: >-
  Known meteorites catalogued in Wikidata, including mass, classification,
  fall date, country of recovery, and geographic coordinates.
  1,180 meteorites with metadata sourced from the community-curated
  Wikidata knowledge base.
size_categories:
  - 1K<n<10K
task_categories:
  - tabular-classification
tags:
  - space
  - planetary-science
  - meteorites
  - wikidata
  - open-data
  - tabular-data
  - parquet
configs:
  - config_name: default
    default: true
    data_files:
      - split: train
        path: data/meteorites.parquet
---

# Meteorite Database

*Part of the [Planetary Science Datasets](https://huggingface.co/collections/juliensimon/planetary-science-datasets-69c2d4683bd6a66c34fb4af2) collection on Hugging Face.*

Catalogue of **1,180** known meteorites sourced from [Wikidata](https://www.wikidata.org/),
covering mass, classification, fall date, country of recovery, and geographic coordinates.

## Dataset description

Meteorites are extraterrestrial rocks that survive passage through Earth's atmosphere and
reach the surface. They are classified by mineralogy and petrology (e.g., chondrites,
achondrites, iron meteorites) and recorded either as *falls* (witnessed descent) or
*finds* (recovered without observation).

This dataset aggregates Wikidata entries for all entities of type Q60186 (meteorite), pulling
structured properties including mass (P2067), fall/discovery date (P585/P575), country (P17),
coordinates (P625), and mineralogical class (via P31 subclass hierarchy). It complements NASA and Meteoritical Society
databases with Wikidata's multilingual, cross-linked knowledge graph.

## Schema

| Column | Type | Description |
|--------|------|-------------|
| `wikidata_id` | string | Wikidata entity ID (e.g. Q1029) |
| `name` | string | Meteorite name |
| `fall_date` | string | Date of fall or recovery (YYYY-MM-DD) |
| `mass_g` | float | Mass in grams |
| `classification` | string | Mineralogical/petrological classification |
| `country` | string | Country of recovery |
| `latitude` | float | Recovery latitude (decimal degrees) |
| `longitude` | float | Recovery longitude (decimal degrees) |

## Quick stats

- **1,180** meteorites total
- **368** with recorded mass
- **415** with geographic coordinates
- **125** with classification
- **55** countries of recovery
- Heaviest: Allende meteorite (2,000,000 g)
- Top countries: United States (39), Australia (13), Argentina (10), Germany (10), France (9)
- Top classifications: iron meteorite (21), chondrite (17), H chondrite (17), L chondrite (11), ordinary chondrite (11)

## Usage

```python
from datasets import load_dataset

ds = load_dataset("juliensimon/meteorite-database", split="train")
df = ds.to_pandas()

# Heaviest meteorites
print(df.nlargest(10, "mass_g")[["name", "mass_g", "country", "classification"]])

# Meteorites by country
print(df["country"].value_counts().head(10))

# Meteorites with coordinates (mappable)
mappable = df.dropna(subset=["latitude", "longitude"])
print(f"{len(mappable):,} meteorites with coordinates")

# Filter by classification
chondrites = df[df["classification"].str.contains("chondrite", case=False, na=False)]
print(f"{len(chondrites):,} chondrites")
```

## Data source

[Wikidata](https://www.wikidata.org/) SPARQL endpoint. Meteorites identified via
property P31 (instance of) = Q60186 (meteorite). Data is community-curated and
cross-referenced with the [Meteoritical Bulletin Database](https://www.lpi.usra.edu/meteor/).

## Update schedule

Quarterly (January, April, July, October). Run manually to capture interim additions.

## Related datasets

- [impact-craters](https://huggingface.co/datasets/juliensimon/impact-craters) -- Earth impact crater database
- [fireballs](https://huggingface.co/datasets/juliensimon/fireball-bolide-events) -- NASA fireball and bolide events

## Pipeline

Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)

## Support

If you find this dataset useful, please give it a ❤️ on the [dataset page](https://huggingface.co/datasets/juliensimon/meteorite-database) and share feedback in the Community tab! Also consider giving a ⭐️ to the [space-datasets](https://github.com/juliensimon/space-datasets) repo.

## Citation

```bibtex
@dataset{meteorite_database,
  author = {Simon, Julien},
  title = {Meteorite Database},
  year = {2026},
  publisher = {Hugging Face},
  url = {https://huggingface.co/datasets/juliensimon/meteorite-database},
  note = {Sourced from Wikidata (CC0)}
}
```

## License

[CC0-1.0](https://creativecommons.org/publicdomain/zero/1.0/) (Wikidata content is public domain)