--- license: cc-by-4.0 pretty_name: "Starlink Ground Stations & Points of Presence" language: - en description: "Worldwide Starlink gateway and Point of Presence locations from FCC IBFS filings and Starlink Insider. Updated daily." task_categories: - tabular-classification tags: - space - starlink - ground-stations - satellite-internet - geospatial - open-data - spacex - fcc - tabular-data - parquet configs: - config_name: gateways data_files: - split: train path: data/gateways.parquet default: true - config_name: pops data_files: - split: train path: data/pops.parquet size_categories: - n<1K --- # Starlink Ground Stations & Points of Presence
Credit: NASA
.isp.starlink.com patterns; null for locations not yet observed in rDNS |
| `city` | -- | City name where the Point of Presence is located; sourced from PeeringDB facility registrations for SpaceX AS54184/AS35340 |
| `country` | -- | ISO 3166-1 alpha-2 country code (e.g., 'US', 'DE', 'JP') |
| `lat` | -- | Latitude in decimal degrees (WGS-84) of the facility |
| `lon` | -- | Longitude in decimal degrees (WGS-84) of the facility |
## Quick stats
- **303** gateway earth stations (250 operational, 53 planned)
- **52** Points of Presence across 28 countries
- Coverage spans -53.2 to 70.3 latitude
## Usage
```python
from datasets import load_dataset
# Load gateways
gateways = load_dataset("juliensimon/starlink-ground-stations", "gateways", split="train")
# Load PoPs
pops = load_dataset("juliensimon/starlink-ground-stations", "pops", split="train")
# Operational stations only
operational = gateways.filter(lambda x: x["status"] == "operational")
# Map gateway distribution with matplotlib
import matplotlib.pyplot as plt
df = gateways.to_pandas()
op = df[df["status"] == "operational"]
pl = df[df["status"] == "planned"]
plt.scatter(op["lon"], op["lat"], c="green", label="Operational", s=20)
plt.scatter(pl["lon"], pl["lat"], c="orange", label="Planned", s=20)
plt.xlabel("Longitude")
plt.ylabel("Latitude")
plt.legend()
plt.title("Starlink Ground Stations")
plt.show()
```
## Data sources
- [Starlink Insider](https://starlinkinsider.com/starlink-gateway-locations/) -- community-maintained list with operational status
- [FCC IBFS](ftp://ftp.fcc.gov/pub/Bureaus/International/databases/) -- US earth station license filings
- [OpenStreetMap Nominatim](https://nominatim.openstreetmap.org/) -- geocoding for stations without coordinates
- [PeeringDB](https://www.peeringdb.com/) -- SpaceX AS54184/AS35340 facility registrations for PoP locations
## Update schedule
Daily at 09:00 UTC via [GitHub Actions](https://github.com/juliensimon/space-datasets).
## Related datasets
- [juliensimon/starlink-fleet-data](https://huggingface.co/datasets/juliensimon/starlink-fleet-data) -- Daily Starlink constellation health snapshots
- [juliensimon/space-track-satcat](https://huggingface.co/datasets/juliensimon/space-track-satcat) -- NORAD satellite catalog
- [juliensimon/space-launch-log](https://huggingface.co/datasets/juliensimon/space-launch-log) -- Global launch history from GCAT
## Citation
```bibtex
@dataset{starlink_ground_stations,
title = {Starlink Ground Stations & Points of Presence},
author = {juliensimon},
year = {2026},
url = {https://huggingface.co/datasets/juliensimon/starlink-ground-stations},
publisher = {Hugging Face}
}
```
## License
[CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)