juliensimon/celestrak-space-weather
收藏资源简介:
--- license: cc-by-4.0 pretty_name: "CelesTrak Consolidated Space Weather" language: - en description: >- CelesTrak consolidated space weather data — daily Kp, Ap, F10.7, and solar/geomagnetic indices used by SGP4/SDP4 propagators, atmospheric models (JB2008, NRLMSISE), and conjunction screening. 25,245 daily records from 1957-10-01 to 2041-10-01. size_categories: - 10K<n<100K task_categories: - tabular-regression - time-series-forecasting tags: - space - space-weather - celestrak - sgp4 - atmospheric-drag - orbit-propagation - open-data - tabular-data - parquet configs: - config_name: default data_files: - split: train path: data/celestrak_space_weather.parquet --- # CelesTrak Consolidated Space Weather *Part of the [Space Weather Datasets](https://huggingface.co/collections/juliensimon/space-weather-datasets-69c24cae98f1666f2101ca70) collection on Hugging Face.*   CelesTrak consolidated space weather data — **THE** file every orbit propagator needs. **25,245** daily records from **1957-10-01** to **2041-10-01**, with 31 columns of solar and geomagnetic indices. ## Dataset description This dataset contains the consolidated space weather data file maintained by CelesTrak (Dr. T.S. Kelso). It includes daily values of Kp indices (8 three-hour values per day), Ap indices, F10.7 solar radio flux, and other solar/geomagnetic parameters essential for: - **SGP4/SDP4 orbit propagation** — atmospheric drag modeling - **Atmospheric density models** — JB2008, NRLMSISE-00, DTM - **Conjunction screening** — collision avoidance maneuver planning - **Space weather research** — solar cycle analysis, geomagnetic storm studies ## Schema | Column | Type | |--------|------| | `date` | datetime64[us] | | `bsrn` | int64 | | `nd` | int64 | | `kp1` | float64 | | `kp2` | float64 | | `kp3` | float64 | | `kp4` | float64 | | `kp5` | float64 | | `kp6` | float64 | | `kp7` | float64 | | `kp8` | float64 | | `kp_sum` | float64 | | `ap1` | float64 | | `ap2` | float64 | | `ap3` | float64 | | `ap4` | float64 | | `ap5` | float64 | | `ap6` | float64 | | `ap7` | float64 | | `ap8` | float64 | | `ap_avg` | float64 | | `cp` | float64 | | `c9` | float64 | | `isn` | int64 | | `f10_7_obs` | float64 | | `f10_7_adj` | float64 | | `f10_7_data_type` | str | | `f10_7_obs_center81` | float64 | | `f10_7_obs_last81` | float64 | | `f10_7_adj_center81` | float64 | | `f10_7_adj_last81` | float64 | ## Quick stats - **25,245** daily records - Date range: **1957-10-01** to **2041-10-01** - **31** columns ## Usage ```python from datasets import load_dataset ds = load_dataset("juliensimon/celestrak-space-weather", split="train") df = ds.to_pandas() # Recent space weather print(df.tail(10)) # Plot F10.7 solar flux over time import matplotlib.pyplot as plt fig, ax = plt.subplots(figsize=(14, 4)) ax.plot(df["date"], df.get("f10_7_obs", df.iloc[:, -1]), linewidth=0.5) ax.set_xlabel("Date") ax.set_ylabel("F10.7 (SFU)") ax.set_title("Solar Radio Flux (F10.7)") ``` ## Update frequency Updated **daily at 12:00 UTC** via GitHub Actions. ## Data source [CelesTrak Space Data](https://celestrak.org/SpaceData/) (Dr. T.S. Kelso). Original data from NOAA SWPC, USAF, and other agencies. ## Related datasets - [kp-index](https://huggingface.co/datasets/juliensimon/kp-index) -- GFZ Potsdam Kp geomagnetic index - [dst-index](https://huggingface.co/datasets/juliensimon/dst-index) -- WDC Kyoto Dst geomagnetic index - [solar-wind](https://huggingface.co/datasets/juliensimon/solar-wind) -- DSCOVR real-time solar wind - [f107-index](https://huggingface.co/datasets/juliensimon/f107-index) -- NRCan F10.7 solar radio flux ## 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/celestrak-space-weather) 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{celestrak_space_weather, author = {Simon, Julien}, title = {CelesTrak Consolidated Space Weather}, year = {2026}, publisher = {Hugging Face}, url = {https://huggingface.co/datasets/juliensimon/celestrak-space-weather}, note = {Based on CelesTrak Space Data (Dr. T.S. Kelso)} } ``` ## License [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)




