I have this cell tower:
MCC:222
MNC:10
LAC:16085
CI:26855411
When I search this in cell_towers.csv.gz, I have no result.
When I query this via the API sandbox, I have a valid result:
{
“token”: “APIKEY”,
“radio”: “gsm”,
“mcc”: 222,
“mnc”: 10,
“cells”: [{
“lac”: 16085,
“cid”: 26855411
}],
“address”: 1
}
{
"status": "ok",
"balance": 99,
"lat": 44.412466,
"lon": 8.896199,
"accuracy": 942,
"address": "Ascensore Corso Scassi - Via Cantore, Belvedere, Centro Ovest, Genoa, Liguria, 16149, Italy"
}
How come the API Sandbox does seem to have a larger database than cell_towers.csv.gz?
The project I am working on is in a private network and therefore I am using a self hosted solution (https://github.com/janjongboom/opencellid).
Is there any way to access (or ideally selfhost) the larger dataset from within a private network?
The MLS database has about 21 Million entries and thus less than OpenCelliD.
Are the OpenCelliD and MLS databases related in any way concerning their entries?