date timestamp[ns]date 2026-04-15 00:00:00 2026-04-20 00:00:00 | inclination_plane float64 87 89 | total_count int64 1 648 | operational_count int64 0 647 | raising_count int64 1 1 | deorbiting_count int64 0 0 | mean_altitude_km float64 601 1.21k |
|---|---|---|---|---|---|---|
2026-04-15T00:00:00 | 87 | 2 | 1 | 1 | 0 | 853.48 |
2026-04-15T00:00:00 | 88 | 648 | 647 | 1 | 0 | 1,205.65 |
2026-04-15T00:00:00 | 89 | 1 | 0 | 1 | 0 | 601.97 |
2026-04-16T00:00:00 | 87 | 2 | 1 | 1 | 0 | 853.43 |
2026-04-16T00:00:00 | 88 | 648 | 647 | 1 | 0 | 1,205.62 |
2026-04-16T00:00:00 | 89 | 1 | 0 | 1 | 0 | 601.92 |
2026-04-17T00:00:00 | 88 | 648 | 647 | 1 | 0 | 1,205.61 |
2026-04-17T00:00:00 | 89 | 1 | 0 | 1 | 0 | 601.85 |
2026-04-17T00:00:00 | 87 | 2 | 1 | 1 | 0 | 853.38 |
2026-04-18T00:00:00 | 87 | 2 | 1 | 1 | 0 | 853.3 |
2026-04-18T00:00:00 | 88 | 648 | 647 | 1 | 0 | 1,205.59 |
2026-04-18T00:00:00 | 89 | 1 | 0 | 1 | 0 | 601.66 |
2026-04-19T00:00:00 | 87 | 2 | 1 | 1 | 0 | 853.21 |
2026-04-19T00:00:00 | 88 | 648 | 647 | 1 | 0 | 1,205.57 |
2026-04-19T00:00:00 | 89 | 1 | 0 | 1 | 0 | 601.47 |
2026-04-20T00:00:00 | 88 | 648 | 647 | 1 | 0 | 1,205.55 |
2026-04-20T00:00:00 | 87 | 2 | 1 | 1 | 0 | 853.12 |
2026-04-20T00:00:00 | 89 | 1 | 0 | 1 | 0 | 601.62 |
OneWeb Constellation Fleet Data
Credit: NASA
Part of a dataset collection on Hugging Face.
Dataset description
Daily health snapshots of the OneWeb (Eutelsat OneWeb) satellite constellation, derived from CelesTrak GP (General Perturbations) data. Tracks satellite count and lifecycle status across OneWeb's near-polar orbital planes.
OneWeb operates a ~650-satellite first-generation LEO broadband constellation at roughly 1,200 km altitude and 87.9 degrees inclination. Unlike Starlink's lower 550 km shells, OneWeb's higher orbit yields larger per-satellite footprints and longer orbital lifetimes, at the cost of higher latency and fewer satellites needed for global coverage. The company merged with Eutelsat in 2023 to become Eutelsat OneWeb, creating a combined GEO plus LEO operator that targets enterprise and government customers rather than direct-to-consumer broadband.
This dataset is designed as the third point of comparison alongside juliensimon/starlink-fleet-data and juliensimon/kuiper-fleet-data. Without OneWeb in the picture, a head-to-head chart of the LEO broadband race is misleading — OneWeb completed its Gen1 deployment before Kuiper started and remains the second-largest operational LEO broadband constellation after Starlink. Status is inferred from orbital mechanics alone, bucketed by inclination plane.
This dataset is suitable for time-series forecasting, tabular classification tasks.
Schema
| Column | Type | Description | Sample | Null % |
|---|---|---|---|---|
date |
datetime64[ns] | UTC date of the daily snapshot; one row per inclination plane per date | 2026-04-15 00:00:00 | 0.0% |
inclination_plane |
float64 | Rounded inclination in degrees; OneWeb Gen1 uses ~87.9 deg polar planes | 87.0 | 0.0% |
total_count |
int64 | Total OneWeb objects in this inclination plane tracked on this date | 2 | 0.0% |
operational_count |
int64 | Satellites within 50 km of the 1,200 km operational altitude | 1 | 0.0% |
raising_count |
int64 | Satellites below operational altitude climbing toward target | 1 | 0.0% |
deorbiting_count |
int64 | Satellites below 600 km with positive mean_motion_dot (controlled deorbit) | 0 | 0.0% |
mean_altitude_km |
float64 | Mean altitude in this inclination plane, kilometres above Earth's surface | 853.48 | 0.0% |
Quick stats
- 651 OneWeb satellites tracked across 3 inclination planes
- 648 operational, 3 raising, 0 deorbiting
- 18 daily snapshot rows (2026-04-15 to 2026-04-20)
- Third point of comparison for juliensimon/starlink-fleet-data vs juliensimon/kuiper-fleet-data
Usage
from datasets import load_dataset
ds = load_dataset("juliensimon/oneweb-fleet-data", split="train")
df = ds.to_pandas()
from datasets import load_dataset
ow = load_dataset("juliensimon/oneweb-fleet-data", split="train").to_pandas()
sx = load_dataset("juliensimon/starlink-fleet-data", "daily_snapshots", split="train").to_pandas()
ku = load_dataset("juliensimon/kuiper-fleet-data", split="train").to_pandas()
# LEO broadband race: operational satellites over time
ow_ops = ow.groupby("date")["operational_count"].sum().rename("oneweb")
sx_ops = sx.groupby("date")["operational_count"].sum().rename("starlink")
ku_ops = ku.groupby("date")["operational_count"].sum().rename("kuiper")
print(ow_ops.to_frame().join([sx_ops, ku_ops], how="outer").tail(10))
Data source
Update schedule
Daily at 09:00 UTC via GitHub Actions
Related datasets
If you find this dataset useful, please consider giving it a like on Hugging Face. It helps others discover it.
About the author
Created by Julien Simon — AI Operating Partner at Fortino Capital. Part of the Space Datasets collection.
Citation
@dataset{oneweb_fleet_data,
title = {OneWeb Constellation Fleet Data},
author = {juliensimon},
year = {2026},
url = {https://huggingface.co/datasets/juliensimon/oneweb-fleet-data},
publisher = {Hugging Face}
}
License
- Downloads last month
- 62