juliensimon commited on
Commit
fd49274
·
verified ·
1 Parent(s): d3cdaf9

Upload Asterank asteroid mining economics: 600,000 asteroids

Browse files
Files changed (2) hide show
  1. README.md +165 -0
  2. data/asterank_asteroid_mining.parquet +3 -0
README.md ADDED
@@ -0,0 +1,165 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "Asterank Asteroid Mining Economics"
4
+ language:
5
+ - en
6
+ description: "Mining economics for ~600K asteroids: estimated value, profit, delta-v accessibility, spectral types, and orbital elements from the Asterank project."
7
+ task_categories:
8
+ - tabular-classification
9
+ - tabular-regression
10
+ tags:
11
+ - space
12
+ - asteroids
13
+ - mining
14
+ - economics
15
+ - orbital-mechanics
16
+ - open-data
17
+ - tabular-data
18
+ size_categories:
19
+ - 100K<n<1M
20
+ configs:
21
+ - config_name: default
22
+ data_files:
23
+ - split: train
24
+ path: data/asterank_asteroid_mining.parquet
25
+ default: true
26
+ ---
27
+
28
+ # Asterank Asteroid Mining Economics
29
+
30
+ *Part of the [Orbital Mechanics Datasets](https://huggingface.co/collections/juliensimon/orbital-mechanics-datasets-69c24caca4ab3934c9856994) collection on Hugging Face.*
31
+
32
+ Economic analysis of **600,000** asteroids for space mining potential, combining NASA/JPL orbital data
33
+ with estimated accessibility and resource value from the [Asterank](https://asterank.com/) project.
34
+
35
+ ## Dataset description
36
+
37
+ Asterank ranks nearly 600,000 cataloged asteroids by estimated mining profitability. It
38
+ combines multiple data sources -- NASA/JPL Small-Body Database orbital elements, spectral
39
+ classifications, and published scientific papers on asteroid composition -- to estimate each
40
+ asteroid's resource value and the cost of reaching it.
41
+
42
+ Key economic fields:
43
+ - **estimated_value_usd** -- total estimated resource value based on spectral type and size
44
+ - **estimated_profit_usd** -- value minus estimated mission cost (delta-v dependent)
45
+ - **closeness_score** -- accessibility metric (lower delta-v = higher closeness)
46
+ - **asterank_score** -- composite ranking combining value, profit, and accessibility
47
+
48
+ ## Schema
49
+
50
+ | Column | Type | Description |
51
+ |--------|------|-------------|
52
+ | `full_name` | string | Full formatted name (e.g. "1 Ceres") |
53
+ | `name` | string | IAU name if assigned (e.g. "Ceres") |
54
+ | `designation_number` | int | Permanent designation number |
55
+ | `provisional_designation` | string | Provisional designation (e.g. "2024 YR4") |
56
+ | `orbit_class` | string | Orbital class (MBA, APO, ATE, AMO, etc.) |
57
+ | `spectral_type_smassii` | string | SMASS II spectral classification |
58
+ | `spectral_type_bus` | string | Bus (Tholen-like) spectral classification |
59
+ | `spectral_type_tholen` | string | Tholen spectral classification |
60
+ | `is_neo` | bool | Near-Earth Object flag |
61
+ | `is_pha` | bool | Potentially Hazardous Asteroid flag |
62
+ | `absolute_magnitude` | float64 | Absolute magnitude H |
63
+ | `magnitude_slope` | float64 | Magnitude slope parameter G |
64
+ | `diameter_km` | float64 | Measured diameter (km) |
65
+ | `diameter_sigma_km` | float64 | Diameter uncertainty (km) |
66
+ | `albedo` | float64 | Geometric albedo |
67
+ | `extent_km` | string | Tri-axial extents (km) |
68
+ | `rotation_period_h` | float64 | Rotation period (hours) |
69
+ | `gm_km3_s2` | float64 | GM gravitational parameter (km^3/s^2) |
70
+ | `semi_major_axis_au` | float64 | Semi-major axis (AU) |
71
+ | `eccentricity` | float64 | Orbital eccentricity |
72
+ | `inclination_deg` | float64 | Orbital inclination (degrees) |
73
+ | `ascending_node_deg` | float64 | Longitude of ascending node (degrees) |
74
+ | `argument_perihelion_deg` | float64 | Argument of perihelion (degrees) |
75
+ | `mean_anomaly_deg` | float64 | Mean anomaly (degrees) |
76
+ | `perihelion_au` | float64 | Perihelion distance (AU) |
77
+ | `aphelion_au` | float64 | Aphelion distance (AU) |
78
+ | `orbital_period_yr` | float64 | Orbital period (years) |
79
+ | `mean_motion_deg_day` | float64 | Mean motion (degrees/day) |
80
+ | `tisserand_jupiter` | float64 | Tisserand parameter w.r.t. Jupiter |
81
+ | `earth_moid_au` | float64 | Minimum orbit intersection distance to Earth (AU) |
82
+ | `earth_moid_ld` | float64 | Earth MOID in Lunar Distances |
83
+ | `jupiter_moid_au` | float64 | Minimum orbit intersection distance to Jupiter (AU) |
84
+ | `estimated_value_usd` | float64 | Estimated total resource value (USD) |
85
+ | `estimated_profit_usd` | float64 | Estimated mining profit (USD) |
86
+ | `closeness_score` | float64 | Accessibility score (higher = easier to reach) |
87
+ | `asterank_score` | float64 | Composite Asterank ranking score |
88
+ | `orbit_condition_code` | float64 | JPL orbit condition code (0=best, 9=worst) |
89
+ | `data_arc_days` | float64 | Observation arc length (days) |
90
+ | `n_obs_used` | float64 | Number of observations used in orbit fit |
91
+ | `first_obs_date` | datetime | Date of first observation |
92
+ | `last_obs_date` | datetime | Date of last observation |
93
+ | `orbit_rms` | float64 | Orbit fit RMS residual |
94
+ | `color_index_bv` | float64 | B-V color index |
95
+ | `color_index_ub` | float64 | U-B color index |
96
+
97
+ ## Quick stats
98
+
99
+ - **600,000** asteroids ranked by mining economics
100
+ - **1,800** Near-Earth Objects, **0** Potentially Hazardous
101
+ - **595,200** with measured diameters, **600,000** with spectral types
102
+ - **7** distinct orbital classes
103
+ - Most valuable: **511 Davida (1903 LU)** at **$15,382,627,787,839,414,272** (profit: $1,064,010,723,169,747,328)
104
+ - Median estimated value: **$0**
105
+ - Total estimated value of all asteroids: **$105,731,413,739,251,945,177,088**
106
+
107
+ ## Usage
108
+
109
+ ```python
110
+ from datasets import load_dataset
111
+
112
+ ds = load_dataset("juliensimon/asterank-asteroid-mining", split="train")
113
+ df = ds.to_pandas()
114
+
115
+ # Top 20 most profitable asteroids
116
+ top_profit = df.nlargest(20, "estimated_profit_usd")[
117
+ ["full_name", "orbit_class", "spectral_type_smassii",
118
+ "estimated_value_usd", "estimated_profit_usd", "earth_moid_au"]
119
+ ]
120
+
121
+ # Near-Earth asteroids sorted by profit
122
+ neo_mining = df[df["is_neo"] == True].nlargest(50, "estimated_profit_usd")
123
+
124
+ # Value distribution by orbit class
125
+ by_class = df.groupby("orbit_class")["estimated_value_usd"].agg(["count", "median", "sum"])
126
+ by_class = by_class.sort_values("sum", ascending=False)
127
+
128
+ # Accessible targets: low MOID + high profit
129
+ accessible = df[
130
+ (df["earth_moid_au"] < 0.1) &
131
+ (df["estimated_profit_usd"] > 1e9)
132
+ ].sort_values("estimated_profit_usd", ascending=False)
133
+ ```
134
+
135
+ ## Data source
136
+
137
+ [Asterank](https://asterank.com/) by Ian Webster, combining data from NASA/JPL Small-Body
138
+ Database, spectral survey data, and published asteroid composition models.
139
+
140
+ ## Related datasets
141
+
142
+ - [neo-close-approaches](https://huggingface.co/datasets/juliensimon/neo-close-approaches) -- NEO close approaches from NASA JPL
143
+ - [space-track-satcat](https://huggingface.co/datasets/juliensimon/space-track-satcat) -- Full NORAD satellite catalog
144
+ - [space-launch-log](https://huggingface.co/datasets/juliensimon/space-launch-log) -- Global launch history
145
+
146
+ ## Pipeline
147
+
148
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
149
+
150
+ ## Citation
151
+
152
+ ```bibtex
153
+ @dataset{asterank_mining,
154
+ author = {Simon, Julien},
155
+ title = {Asterank Asteroid Mining Economics},
156
+ year = {2026},
157
+ publisher = {Hugging Face},
158
+ url = {https://huggingface.co/datasets/juliensimon/asterank-asteroid-mining},
159
+ note = {Based on Asterank (asterank.com) asteroid mining economics data}
160
+ }
161
+ ```
162
+
163
+ ## License
164
+
165
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
data/asterank_asteroid_mining.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7fd98f32405f054a050719ed76a35de84717c6af74cfdb914a9295ee49fd64e
3
+ size 9629023