InLinkUK/InLink/Street Hub stuff
- Python 100%
| extract_hotspots.py | ||
| hotspots.db | ||
| README.md | ||
self explanatory
see hotspots.db for an sqlite db of inlink units using data from bt wifi's site (created 02/06/2026):
CREATE TABLE IF NOT EXISTS hotspots (
id INTEGER PRIMARY KEY, -- id from the map's api
inlink_id TEXT, -- id of the physical unit in format uk-[digits]. may be null as it comes from the name
lat FLOAT, -- latitude
lng FLOAT, -- longitude
name TEXT, -- name of the unit like "1 Streety Street UK12345"
address TEXT, -- address of the unit
city TEXT, -- city
postcode TEXT -- postcode
);
see extract_hotspots.py for the script used.