0xF6 / lbs.ts

Parse and convert ⚡️LBS to 🛰GPS Library for TypeScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lbs.ts

Library for working with LBS 🌎 towers for TypeScript 🛰

Build Status Maintainability Dependencies MIT license codecov npm

Install

yarn add lbs.ts

Run test

yarn test or yarn test-nya and for reports yarn report-test

image

Usage

Get Geo Position (GPS) for LBS Tower

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 } 
}

About

Parse and convert ⚡️LBS to 🛰GPS Library for TypeScript

License:MIT License


Languages

Language:TypeScript 100.0%