Library for working with LBS 🌎 towers for TypeScript 🛰
yarn add lbs.ts
yarn test
or yarn test-nya
and for reports yarn report-test
let lbs_str = "250/1/19E/DC6/-76dBm";
let lbs = TowerInfo.parse(lbs);
lbs // { CID: 3526, LAC: 414, MCC: 250, MNC: 1, RSSI: -76 }
await lbs.UpdatePosition()
lbs //
{
CID: 3526,
LAC: 414,
MCC: 250,
MNC: 1,
RSSI: -76,
position: GeoPosition { Longitude: 55.8146706, Latitude: 37.6919327 }
}