juliensimon commited on
Commit
143a556
·
1 Parent(s): 6a3a003

Update meteorite landings: 45,716 records

Browse files
Files changed (2) hide show
  1. README.md +119 -0
  2. data/meteorite_landings.parquet +3 -0
README.md ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "Meteorite Landings"
4
+ language:
5
+ - en
6
+ description: "NASA's comprehensive database of all known meteorite landings on Earth, with classification, mass, coordinates, and discovery context."
7
+ task_categories:
8
+ - tabular-classification
9
+ - tabular-regression
10
+ tags:
11
+ - space
12
+ - meteorites
13
+ - planetary-science
14
+ - nasa
15
+ - open-data
16
+ - tabular-data
17
+ size_categories:
18
+ - 10K<n<100K
19
+ configs:
20
+ - config_name: default
21
+ data_files:
22
+ - split: train
23
+ path: data/meteorite_landings.parquet
24
+ default: true
25
+ ---
26
+
27
+ # Meteorite Landings
28
+
29
+ *Part of the [Planetary Science Datasets](https://huggingface.co/collections/juliensimon/planetary-science-datasets-69c2d4683bd6a66c34fb4af2) collection on Hugging Face.*
30
+
31
+ NASA's comprehensive catalog of all known meteorite landings on Earth -- **45,716** records
32
+ spanning **1688** to **2013**, including 1,107 observed falls and 44,609 found specimens
33
+ across 466 classification types.
34
+
35
+ ## Dataset description
36
+
37
+ This dataset contains every meteorite recorded in NASA's Meteorite Landings database,
38
+ sourced from The Meteoritical Society. Each record includes the meteorite's name,
39
+ classification, mass (where known), geographic coordinates, and whether the meteorite
40
+ was observed falling ("Fell") or found after the fact ("Found").
41
+
42
+ ## Schema
43
+
44
+ | Column | Type | Description |
45
+ |--------|------|-------------|
46
+ | `name` | string | Official meteorite name |
47
+ | `id` | int64 | Unique identifier |
48
+ | `nametype` | string | Name type: "Valid" or "Relict" |
49
+ | `recclass` | string | Meteorite classification (e.g. L5, H6, Iron-IVA) |
50
+ | `mass` | float64 | Mass in grams |
51
+ | `mass_kg` | float64 | Mass in kilograms |
52
+ | `fall` | string | "Fell" (observed fall) or "Found" (discovered later) |
53
+ | `year` | datetime | Year of fall or discovery |
54
+ | `reclat` | float64 | Recovery latitude (decimal degrees) |
55
+ | `reclong` | float64 | Recovery longitude (decimal degrees) |
56
+
57
+ ## Quick stats
58
+
59
+ - **45,716** meteorite landings (1688--2013)
60
+ - **1,107** observed falls, **44,609** found specimens
61
+ - **45,585** records with known mass
62
+ - **466** distinct classification types
63
+ - Heaviest: **Hope** at **60,000.0 kg** (Iron, IVB)
64
+
65
+ ## Usage
66
+
67
+ ```python
68
+ from datasets import load_dataset
69
+
70
+ ds = load_dataset("juliensimon/meteorite-landings", split="train")
71
+ df = ds.to_pandas()
72
+
73
+ # Observed falls sorted by mass
74
+ fell = df[df["fall"] == "Fell"].sort_values("mass_kg", ascending=False)
75
+
76
+ # Meteorites by classification
77
+ by_class = df["recclass"].value_counts().head(20)
78
+
79
+ # Map of all landings with coordinates
80
+ with_coords = df.dropna(subset=["reclat", "reclong"])
81
+ ```
82
+
83
+ ## Data source
84
+
85
+ [NASA Open Data Portal -- Meteorite Landings](https://data.nasa.gov/dataset/meteorite-landings),
86
+ maintained by The Meteoritical Society. Full dataset mirrored by the
87
+ [Wolfram Data Repository](https://datarepository.wolframcloud.com/resources/Meteorite-Landings)
88
+ (NASA retired the original Socrata SODA API in 2025).
89
+
90
+ ## Update schedule
91
+
92
+ Static dataset (meteorite records are updated infrequently).
93
+
94
+ ## Related datasets
95
+
96
+ - [neo-close-approaches](https://huggingface.co/datasets/juliensimon/neo-close-approaches) -- Near-Earth object close approaches from NASA JPL
97
+ - [confirmed-exoplanets](https://huggingface.co/datasets/juliensimon/confirmed-exoplanets) -- NASA Exoplanet Archive confirmed planets
98
+ - [impact-risk](https://huggingface.co/datasets/juliensimon/impact-risk) -- Sentry impact risk assessments
99
+
100
+ ## Pipeline
101
+
102
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
103
+
104
+ ## Citation
105
+
106
+ ```bibtex
107
+ @dataset{meteorite_landings,
108
+ author = {Simon, Julien},
109
+ title = {Meteorite Landings},
110
+ year = {2026},
111
+ publisher = {Hugging Face},
112
+ url = {https://huggingface.co/datasets/juliensimon/meteorite-landings},
113
+ note = {Based on NASA/The Meteoritical Society meteorite landing data via Wolfram Data Repository}
114
+ }
115
+ ```
116
+
117
+ ## License
118
+
119
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
data/meteorite_landings.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1820dd64f6fe96483f92686e719a133056fbe3f77377754bd3c9986cab70967d
3
+ size 878477