How to get cell area of โ€‹โ€‹a cell using CellID and LAC in Android?

I can get the cell id and LAC (LAN code). But I donโ€™t know how to decode the location. I should not be connected to the Internet and should get the location of the cell cell using Cell Id and LAC.

If you remember that basic phone models (not built on Android) have the ability to get this. This parameter is something like "Display cell information." If we turned it on, it displayed the current area on the main screen of the phone.

Is there a way to get the local area on which the Android phone is connected?

+4
source share
3 answers

There is a tutorial on AndDev.org about this:

Bad GPS ID - Cell (Tower) / Location Area Code -Lookup

+1
source

Android Network Provider does this for you.

If you are using any Android phone, you have this way of getting your location from your cell ID.

0
source

You can use this Android app to convert the gsm location to the GPS coordinates of GPS Convertor . Enter the gsm coordinates as follows:

  • CellID
  • ''
  • loc_area_code

for example: 123; 456

Click the "Start Conversion" button to return the GPS coordinates.

0
source

All Articles