Community maintained database for Starlink data.
Firmware, software, and hardware versions are collected for historical purpose. This allows us to compare and curate notes for each revision.
Tracking the performance of any ISP is important for accountability, we make use of Speedtest.net's services to store results from users. Data is captured via the website form, the official Discord channel, and through the all-in-one script (in development).
An easy way to check your IP address, Point of Presence and region. Complemented with a global rollout map of IPv4 & IPv6.
The existing spreadsheet solution was cumbersome and very messy.
- Clone the repository
- Move into the directory
cd starlink-data-tracker
- Initialise a virtual environment
python -m venv venv
- Activate the virtual environment, Linux:
source venv/bin/activate
- Install requirements
pip install -r requirements.txt
- Edit the config file with your keys
starlink/instance/config.py
- Set Flask environment
export FLASK_APP=starlink
- Initialise a new database
flask init-db
- Import a test dataset
flask import-db
- Run the app
flask run
The databaseBackup.sql
file is archived here for development purposes.