juliensimon/fireball-bolide-events
收藏Hugging Face2026-03-24 更新2026-03-29 收录
下载链接:
https://hf-mirror.com/datasets/juliensimon/fireball-bolide-events
下载链接
链接失效反馈官方服务:
资源简介:
---
license: cc-by-4.0
pretty_name: "Fireball and Bolide Events"
language:
- en
description: >-
Atmospheric impact events (fireballs and bolides) detected by US government
sensors, from NASA JPL CNEOS. Updated weekly.
size_categories:
- 1K<n<10K
task_categories:
- tabular-classification
- tabular-regression
tags:
- space
- fireball
- bolide
- meteor
- impact
- nasa
- planetary-defense
- open-data
configs:
- config_name: default
data_files:
- split: train
path: data/fireball_bolide_events.parquet
---
# Fireball and Bolide Events


Atmospheric impact events (fireballs and bolides) detected by US government sensors,
spanning **1988-04-15** to **2026-03-23**. Currently **1,055** recorded events.
## Dataset description
This dataset contains every fireball (bolide) event reported by US government sensors
and published by NASA's Center for Near-Earth Object Studies (CNEOS) at the Jet
Propulsion Laboratory. Each record includes the date/time, geographic coordinates,
altitude, velocity, velocity components, radiated energy, and estimated total
impact energy.
Fireballs are exceptionally bright meteors caused by small asteroids or large
meteoroids entering the atmosphere at high speed. The largest events can release
energy equivalent to tens or hundreds of kilotons of TNT.
## Schema
| Column | Type | Description |
|--------|------|-------------|
| `datetime` | datetime | Date and time of peak brightness (UTC) |
| `radiated_energy_j` | float64 | Total radiated energy (joules x10^10) |
| `impact_energy_kt` | float64 | Estimated total impact energy (kilotons of TNT) |
| `latitude` | float64 | Latitude (positive = N, negative = S) |
| `lat_direction` | string | Original latitude direction (N/S) |
| `longitude` | float64 | Longitude (positive = E, negative = W) |
| `lon_direction` | string | Original longitude direction (E/W) |
| `altitude_km` | float64 | Altitude at peak brightness (km) |
| `velocity_kms` | float64 | Velocity at peak brightness (km/s) |
| `vx_kms` | float64 | Velocity component Vx (km/s, ECEF) |
| `vy_kms` | float64 | Velocity component Vy (km/s, ECEF) |
| `vz_kms` | float64 | Velocity component Vz (km/s, ECEF) |
## Quick stats
- **1,055** fireball events (1988-04-15 to 2026-03-23)
- **1055** events with measured impact energy
- **869** events with geographic coordinates
- Largest impact energy: **441.0 kt**
## Usage
```python
from datasets import load_dataset
ds = load_dataset("juliensimon/fireball-bolide-events", split="train")
df = ds.to_pandas()
# High-energy events (> 1 kiloton)
big = df[df["impact_energy_kt"] > 1].sort_values("impact_energy_kt", ascending=False)
print(big[["datetime", "impact_energy_kt", "latitude", "longitude"]])
# Plot events on a map
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(12, 6))
coords = df.dropna(subset=["latitude", "longitude"])
ax.scatter(coords["longitude"], coords["latitude"],
s=coords["impact_energy_kt"].fillna(0.1) * 5, alpha=0.5)
ax.set_xlabel("Longitude")
ax.set_ylabel("Latitude")
ax.set_title("Fireball Events by Location and Energy")
plt.show()
```
## Data source
[NASA JPL Center for Near Earth Object Studies (CNEOS) Fireball API](https://cneos.jpl.nasa.gov/fireballs/).
Data from US government sensors; geographic coordinates and velocity components
may be absent for some events.
## Update schedule
Weekly on Monday at 12:00 UTC via [GitHub Actions](https://github.com/juliensimon/space-datasets).
## Related datasets
- [neo-close-approaches](https://huggingface.co/datasets/juliensimon/neo-close-approaches) -- NEO close approaches to Earth
- [sentry-impact-risk](https://huggingface.co/datasets/juliensimon/sentry-impact-risk) -- Sentry impact risk assessments
## Pipeline
Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
## Citation
```bibtex
@dataset{fireball_bolide_events,
author = {Simon, Julien},
title = {Fireball and Bolide Events},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/juliensimon/fireball-bolide-events},
note = {Based on NASA/JPL Center for Near Earth Object Studies (CNEOS) fireball data}
}
```
## License
[CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
提供机构:
juliensimon



