Questions tagged [cellid]

A Cell ID (CID) is a generally unique number used to identify each Base transceiver station (BTS) or sector of a BTS within a Location area code (LAC) if not within a GSM network.

Cell-ID operates in most types of cellular networks, including GSM, GPRS, and UMTS/HSDPA networks. It is the simplest way to describe the general location of a handset. It requires the network to identify the Base Transceiver Station (BTS; essentially the cell tower to which the device is connected at the time) to which the cell phone is communicating and the location of that BTS. If this information is available, the Location Server identifies the device location as being the location of the base station and passes this information on to the location service application.

Since the MS can be anywhere in the cell, the accuracy of this method depends on the cell size and can be very poor in many cases, because the typical GSM cell is anywhere from 2km to 20km in diameter. Thus Cell ID positioning is generally more accurate in urban areas with a dense network of smaller cells than in rural areas where there are fewer base stations. Ultimately, the diversity in cell-site size, density and operational characteristics across a network makes the accuracy of this technology inconsistent.

94 questions
2
votes
0 answers

Geolocation API coordinates incorrect for CDMA cellid

I work for a small cellular carrier in Michigan. Our customer's Android phones are receiving inaccurate coordinates when served by a particular cellID. Can we provide Google with updated coordinate information for this cellID? brock@ws1:~# cat…
2
votes
3 answers

how does android NETWORK_PROVIDER translate cellid and lac into lat long

I am not sure if this is the correct forum for gathering this information, please do let me know I will move it to the android forum in case this is not the correct place. I would like to understand how cell id and lac is translated into lat and…
bhavs
  • 2,091
  • 8
  • 36
  • 66
2
votes
0 answers

Copying Cell ID information from the Field Test Mode

I'm looking to capture the Cell ID information and also the variable that is responsible for the signal strength bar on the iPhone for testing purposes. The information is accessible via the field test mode - is there any way to capture and store…
RedNax
  • 1,507
  • 1
  • 10
  • 20
2
votes
1 answer

Getting RSSI cellular list on Android

How to get a list of RSSI for the cellular network connected to and the other cellular networks in range in android ? I have an idea that the phonestatelister has to be created and the signal strength changes have to be monitored.
2
votes
2 answers

Wp8 cell tower information

On windows phone 8, is there any api to get the nearest cell tower information? like cell id, location area code etc...
2
votes
1 answer

Android: Is the Google secret API for location still valid

Is this link still valid: http://www.devx.com/wireless/Article/40524/1954. Looks like there is a secret API for location. It does not seem to work now. I think this is very old version because it does not say anything about the Google MAPS api key…
user1465134
  • 29
  • 1
  • 3
1
vote
0 answers

How to download diff data from opencellid using APIs?

I'm working with the data of opencellid, I do have in my database all the data from Brazil, but now it is necessary to keep this updated. To do this, I want to use an API in Python which every day goes to opencellid and get the diff data…
1
vote
1 answer

How to get LAC and/or CellID using Swift

Dear friends of StackOverflow, I found out how to get the MNC (Mobile Network Code) and MCC (Mobile Country Code) for an iOS device but I really need to get information about the CellID and the LAC (Location Area Code). It's not an app which is so…
Hemmelig
  • 803
  • 10
  • 22
1
vote
0 answers

Find out MNC, MCC

Kia Ora friends, I know there have been a couple of topics about it, but I am still confused about the following: I want to check out MNC and MCC on iPhone, using Swift 4 on iOS 11.1. My code is the following: var mob = CTTelephonyNetworkInfo() if…
Hemmelig
  • 803
  • 10
  • 22
1
vote
1 answer

how to get cell tower id from dual sim2

i can get first sim cell tower id with this below code. but i want to get second sim2 cell id. TelephonyManager telephonyManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE); GsmCellLocation cellLocation =…
1
vote
1 answer

UMTS cell id of neighbor cells

The problem is that when I use source code below, i receive cell id's only in 2G mode, if i switch to 3G mode i sometimes receive -1 for HSDPA or nothing for UMTS. Source code is: for (int i = 0; i < neighCell.size(); i++) { try { …
StalkerRus
  • 411
  • 1
  • 10
  • 20
1
vote
1 answer

Can not retrieve CellID and LAC for the current cell

I tried to retrieve Cid and Lac for currently connected cell, but using public void GetCid(){ int CID; int LAC; GsmCellLocation xXx = new GsmCellLocation(); CID = xXx.getCid(); LAC = xXx.getLac(); Toast output =…
StalkerRus
  • 411
  • 1
  • 10
  • 20
1
vote
3 answers

CellID location with CDMA

Is there a way to determine location via CellID on a CDMA network? I can get a network ID, base station ID, and system ID programatically, but is there an api somewhere to convert these to lat, long coordinates? The…
Brian
  • 21
  • 1
  • 3
1
vote
1 answer

get right cellID in android network?

i have been working to find right CellID in android network. i am trying to search tutorial, i found the solution something like this: telephonyManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE); cellLocation = (GsmCellLocation)…
Samsul Arifin
  • 247
  • 1
  • 6
  • 24
1
vote
1 answer

Getting Cell ID of a different carrier

I've been trying to make an app that uses cell tower id's to determine the location of a bus that you are travelling in. First i need to get this working on a single bus. I have decided to test it on my college bus as it goes through a specific…