juliensimon commited on
Commit
356b68a
·
verified ·
1 Parent(s): d7a5de8

Update AST SpaceMobile fleet: 7 satellites (1 BlueWalker + 6 BlueBird)

Browse files
Files changed (3) hide show
  1. README.md +133 -0
  2. banner.jpg +3 -0
  3. data/daily_snapshots.parquet +3 -0
README.md ADDED
@@ -0,0 +1,133 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "AST SpaceMobile BlueBird Fleet Data"
4
+ language:
5
+ - en
6
+ description: "Daily health snapshots of the AST SpaceMobile BlueBird direct-to-cell satellite constellation, derived from CelesTrak GP (General Perturbations) data. Tracks the BlueWalker 3 prototype and all product"
7
+ task_categories:
8
+ - time-series-forecasting
9
+ - tabular-classification
10
+ tags:
11
+ - space
12
+ - ast-spacemobile
13
+ - bluebird
14
+ - bluewalker
15
+ - satellites
16
+ - orbital-mechanics
17
+ - tle
18
+ - constellation
19
+ - open-data
20
+ - norad
21
+ - leo
22
+ - direct-to-cell
23
+ - tabular-data
24
+ - parquet
25
+ size_categories:
26
+ - n<1K
27
+ configs:
28
+ - config_name: default
29
+ data_files:
30
+ - split: train
31
+ path: data/daily_snapshots.parquet
32
+ default: true
33
+ ---
34
+
35
+ # AST SpaceMobile BlueBird Fleet Data
36
+
37
+
38
+ <div align="center">
39
+ <img src="banner.jpg" alt="Orbital sunrise illuminating Earth's atmosphere, seen from the ISS" width="400">
40
+ <p><em>Credit: NASA</em></p>
41
+ </div>
42
+
43
+
44
+ *Part of a [dataset collection](https://huggingface.co/collections/juliensimon/orbital-mechanics-datasets-69c24caca4ab3934c9856994) on Hugging Face.*
45
+
46
+ ## Dataset description
47
+
48
+ Daily health snapshots of the AST SpaceMobile BlueBird direct-to-cell satellite constellation, derived from CelesTrak GP (General Perturbations) data. Tracks the BlueWalker 3 prototype and all production BlueBird satellites as the constellation is built out.
49
+
50
+ AST SpaceMobile is developing a unique LEO constellation designed to provide broadband connectivity directly to ordinary unmodified smartphones, without special satellite-phone hardware. The BlueBird satellites use unusually large phased-array antennas (up to 700 m2) to close the link budget with handset-sized antennas on the ground. The BlueWalker 3 prototype launched in 2022, the first five production BlueBirds flew on a Falcon 9 in September 2024, and SpaceMobile-006 followed in 2025.
51
+
52
+ AST is notable in the Bezos-vs-Musk launch race because the company is a customer of both providers: the initial BlueBird batch flew on SpaceX Falcon 9, and Blue Origin's April 2026 New Glenn mission is launching additional BlueBird satellites. This dataset pairs naturally with juliensimon/blue-origin-launches and juliensimon/spacex-launches to track how AST's deployment splits between the two launch providers, and with juliensimon/starlink-fleet-data to compare direct-to-cell approaches (Starlink DTC vs BlueBird) as that market develops.
53
+
54
+ This dataset is suitable for **time-series forecasting, tabular classification** tasks.
55
+
56
+ ## Schema
57
+
58
+ | Column | Type | Description | Sample | Null % |
59
+ |--------|------|-------------|--------|--------|
60
+ | `date` | datetime64[ns] | UTC date of the daily snapshot; one row per date | 2026-04-15 00:00:00 | 0.0% |
61
+ | `total_count` | int64 | Total AST SpaceMobile objects tracked on this date (BlueWalker + BlueBird) | 7 | 0.0% |
62
+ | `bluewalker_count` | int64 | Number of BlueWalker prototype satellites (BlueWalker-3, launched 2022) | 1 | 0.0% |
63
+ | `bluebird_count` | int64 | Number of production BlueBird satellites (SpaceMobile-001..00N) | 6 | 0.0% |
64
+ | `operational_count` | int64 | Satellites within 100 km of the 700 km target operational altitude | 0 | 0.0% |
65
+ | `mean_altitude_km` | float64 | Mean altitude of the fleet, kilometres above Earth's surface | 499.37 | 0.0% |
66
+ | `mean_inclination_deg` | float64 | Mean orbital inclination of the fleet in degrees | 53.0131 | 0.0% |
67
+
68
+ ## Quick stats
69
+
70
+ - **7** AST SpaceMobile satellites (1 BlueWalker + 6 BlueBird)
71
+ - **0** near 700 km target operational altitude
72
+ - **1** daily snapshot rows (2026-04-15 to 2026-04-15)
73
+ - Customer of both SpaceX and Blue Origin — pair with [blue-origin-launches](https://huggingface.co/datasets/juliensimon/blue-origin-launches) and [spacex-launches](https://huggingface.co/datasets/juliensimon/spacex-launches)
74
+
75
+ ## Usage
76
+
77
+ ```python
78
+ from datasets import load_dataset
79
+
80
+ ds = load_dataset("juliensimon/ast-spacemobile-fleet-data", split="train")
81
+ df = ds.to_pandas()
82
+ ```
83
+
84
+ ```python
85
+ from datasets import load_dataset
86
+
87
+ ast = load_dataset("juliensimon/ast-spacemobile-fleet-data", split="train").to_pandas()
88
+
89
+ # Fleet growth over time
90
+ print(ast[["date", "bluewalker_count", "bluebird_count"]].tail(10))
91
+ ```
92
+
93
+ ## Data source
94
+
95
+ https://celestrak.org/
96
+
97
+ ## Update schedule
98
+
99
+ Daily at 09:15 UTC via GitHub Actions
100
+
101
+ ## Related datasets
102
+
103
+ - [juliensimon/blue-origin-launches](https://huggingface.co/datasets/juliensimon/blue-origin-launches)
104
+
105
+ - [juliensimon/spacex-launches](https://huggingface.co/datasets/juliensimon/spacex-launches)
106
+
107
+ - [juliensimon/starlink-fleet-data](https://huggingface.co/datasets/juliensimon/starlink-fleet-data)
108
+
109
+ - [juliensimon/kuiper-fleet-data](https://huggingface.co/datasets/juliensimon/kuiper-fleet-data)
110
+
111
+ - [juliensimon/constellation-census](https://huggingface.co/datasets/juliensimon/constellation-census)
112
+
113
+ > If you find this dataset useful, please consider [giving it a like](https://huggingface.co/datasets/juliensimon/ast-spacemobile-fleet-data) on Hugging Face. It helps others discover it.
114
+
115
+ ## About the author
116
+
117
+ Created by [Julien Simon](https://julien.org) — AI Operating Partner at Fortino Capital. Part of the [Space Datasets](https://julien.org/datasets) collection.
118
+
119
+ ## Citation
120
+
121
+ ```bibtex
122
+ @dataset{ast_spacemobile_fleet_data,
123
+ title = {AST SpaceMobile BlueBird Fleet Data},
124
+ author = {juliensimon},
125
+ year = {2026},
126
+ url = {https://huggingface.co/datasets/juliensimon/ast-spacemobile-fleet-data},
127
+ publisher = {Hugging Face}
128
+ }
129
+ ```
130
+
131
+ ## License
132
+
133
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
banner.jpg ADDED

Git LFS Details

  • SHA256: 536f1a05155716b88d9fc00630564a3d16eb900decdf2449219770d0399c02c4
  • Pointer size: 130 Bytes
  • Size of remote file: 30.8 kB
data/daily_snapshots.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d9d71e2763ded002a22a018f317b3e800052a77eb9006a8fe18518799d1fdd24
3
+ size 5075