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
18
votes
3 answers

Get CellID, MCC, MNC, LAC, and Network in iOS 5.1

I need to retrieve CellID, MCC, MNC, LAC and Network (GSM, 3G) of the current Serving Cell Tower in iOS 5.1 (iPhone 4S). I know this information is available because I can see it in FieldTest Mode (accessible after calling ****3001#12345#****). I…
poorDeveloper
  • 495
  • 2
  • 6
  • 11
15
votes
5 answers

google maps, cellid to location

According to this sample: http://www.codeproject.com/KB/mobile/DeepCast.aspx It's possible to request a gps coordinate (longitude & latitude) including range when sending cellid information (MCC, MNC, towerid, etc) Can someone tell me the actual…
Dels
  • 2,375
  • 9
  • 39
  • 59
13
votes
2 answers

Get CellID, LAC, ... on iOS 8.3

Since iOS 5.X, I used to get radio information with these methods : Get CellID, MCC, MNC, LAC, and Network in iOS 5.1 But with the iOS 8.3 beta (and 8.3 GM), this private API _CTServerConnectionCellMonitorCopyCellInfo doesn't work anymore.
Boobby69
  • 284
  • 3
  • 13
8
votes
3 answers

cellID and LAC / PSC for 3G neighboring cells in Android

I am trying to identify the neighboring cells location in 3G with Android, which I get with getNeighboringCellInfo(). When The phone works in GSM mode, I am able to use getCid() and getLac() to get the CellID and the LAC, but for 3G, I can only use…
modellero
  • 213
  • 2
  • 6
  • 14
6
votes
3 answers

Cell (cell-id), BTS and BSS in GSM network

what is the relation between BTS and cell? I think one BTS hardware can cover few cells and also some cells could be covered by more than one BTS isn't it? Is part of information, that mobile receives from GSM network identification of concrete BTS…
STeN
  • 6,262
  • 22
  • 80
  • 125
6
votes
1 answer

how does google map determine locations for phones without gps

http://www.google.com/mobile/maps/ Using this on phones without gps, the locatiosn can be obtained as well. I am currently using the html5 geocoder/gear for obtaining locations. However this only works for iphone and android. BUt how does google map…
tomwu
  • 397
  • 1
  • 3
  • 11
6
votes
1 answer

Android: get CellID and RSS for Base Station and Neigboring Cells

I'm trying to get the following data: Base station: CellID and RSS (recognition which one is the base station) For all neigbouring stations: CellID and RSS There are various APIs and it looks like i'd have to use different APIs telephonyManager…
ndrizza
  • 3,285
  • 6
  • 27
  • 41
5
votes
4 answers

get location(lat/long) without gps just like my location feature of google maps

Get location(lat/long) without GPS, just like my location feature in Google maps. I have Google Maps in my mobile (Sony Ericsson G502 without GPS). It works fine without GPS in India. 1.How Google finds my position? 2. When i am searching cellid…
Suriyan Suresh
  • 2,964
  • 14
  • 51
  • 80
5
votes
2 answers

Getting CID, LAC and signal strength of all cell towers in range

Currently I am trilaterating my Android with the cells in my network. It is even more accurate than I thought it would be. But not as accurate as I want it to be. So I want to involve more towers than I get from getNeighboringCellInfo. I want to get…
4
votes
3 answers

How to get the cell tower area using the CellID and LAC in Android?

I am able to get the Cell Id and LAC(Local Area Code). But don't know how to decode the location. I should not connect to internet and should get the cell tower location using Cell Id and LAC. If remember the basic model phones(Not built on…
Puru
  • 8,913
  • 26
  • 70
  • 91
4
votes
1 answer

Android PhoneStateListener: onCellLocationChanged in standby mode

I'm writing an app that runs in the background as a foreground service. This service instantiates a subclass of PhoneStateListener. The PhoneStateListener creates a TelephonyService with a context object of the foreground service and then listens to…
Sergey UKR
  • 41
  • 1
  • 3
4
votes
1 answer

Is PSC part of global Cell ID?

While on WCDMA networks getNeighboringCells() method returns a collection of PSC values (other are invalid). I guess this means that I should use rest of identifier values from current cell and PSC (Primary Scrambling Code) from neighboring cell to…
sanurss
  • 43
  • 1
  • 5
4
votes
2 answers

Using The Google Maps Geolocation API

I am Using following code to get the lat. long. by providing MCC, MNC I am using Google Maps Geo-location API for this but I am getting same results (lat/long) for different MCC/MNC values . Even when I am requesting blank json I am getting same…
Tushar
  • 1,122
  • 1
  • 13
  • 28
4
votes
2 answers

Cell ID info on iPhone

Is it possible to get Cell ID information on iPhone SDK 3.0?
cocoatoucher
  • 1,483
  • 3
  • 17
  • 22
3
votes
5 answers

Android: CellID not available on all carriers?

When I request the Cell ID and LAC information, on some devices I cannot retreive them. I use this code: TelephonyManager tm =(TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); location = (GsmCellLocation) tm.getCellLocation(); cellID…
user934779
  • 303
  • 1
  • 8
  • 14
1
2 3 4 5 6 7