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
0
votes
1 answer

Cell location update notification when screen is off

I'm writing software which requires cell location updates to be received or checked constantly. The problem I'm having is that when the screen is off: a) notifications stop (using PhonestateListener); b) when a timer is used to check the cell info…
black
  • 781
  • 1
  • 7
  • 22
0
votes
2 answers

How to programmatically get cellID from IPAQ pocket PC

I'm trying to get CellID and Lac on HP IPAQ 614c. I've tried using RIL interface with no luck RIL_GetCellTowerInfo returns E_NOTIMPL. Any ideas?
Gordon Freeman
  • 1,117
  • 9
  • 22
0
votes
1 answer

obtain radio interface layer on mobile website not application

I was using IP2location dlls to get the user's location but i realised that it doesn't work on mobile websites. I read about getting the users location through the cell ID information and i was wondering if this can be used through mobile website…
Miroo
  • 795
  • 3
  • 13
  • 35
0
votes
2 answers

How to implement Network Triangulation?

I am developing an application in android 2.2 to identify location of user by Network: 1) First: location= (GsmCellLocation)tm.getCellLocation(); cellId= location.getCid(); lac= location.getLac(); 2) Second wonder "http://www.google.com/glm/mmap"…
Angelo
  • 31
  • 1
  • 3
0
votes
1 answer

How to get cellid and pci in 5g SA

I am developing an app in which i need some network parameters cell id and pci.I have 5g enable device with android 10. I am trying to access cell id through telephonic manager here is code. List allCellInfo =…
DevMobApp
  • 115
  • 1
  • 2
  • 10
0
votes
1 answer

Geolocation using cell id

My android app should determine approximate phone location using cell id. This is possible using Gears Geolocation API, but I've no idea how to organize the request to Gears server and data exchange. Does anybody have the information about the…
Alex
  • 419
  • 1
  • 5
  • 24
0
votes
1 answer

Obtaining cellid on any gsm enabled cell phone programmatically

Is there a way one can obtain the cellid of a gsm phone programmatically in c++?.
Gandalf
  • 1
  • 29
  • 94
  • 165
0
votes
1 answer

What CellID database does Apple query in iOS CoreLocation API?

I am really curious to know what CellID database Apple uses inorder to enable CellID based Location in CoreLication API of iOS.
0
votes
3 answers

unable to retrieve CELL-id and LAC on nokia S60 (tried in E50)

I have been trying to get celllid,lac,mcc and mnc. While mcc and mnc can be found,cell-id and lac still are null.Here's the code (and it is known to work according to number of threads going on but I still can't get it to work) import…
lalchetian
  • 103
  • 1
  • 9
0
votes
1 answer

How to Get Lat-Long Data from LAC-CELLId using php?

I am trying to get lat-long from cellid and LAC. I have been trying to use this script mentioned in Trouble with Sending JSON object over POST to Google Gears to accomplish this Can you please point out any error if any or any alternate way? I am…
lalchetian
  • 103
  • 1
  • 9
0
votes
1 answer

How do you get CID and signal strength of all surrounding cell towers in Android 9 and above?

Ever since NeighbouringCellInfo() was depreciated in Android 9, I have found no way to get the signal strength of towers other than that of the one my Samsung S8 is connected to. I am designing an app that requires the above information for the…
0
votes
1 answer

How to get `radiotype` in Android needed for The Google Maps Geolocation API to find a location using cell tower?

I am trying to find user location using The Google Maps Geolocation API. While using this API I need to pass radiotype in JSON request body to get the more accurate location from the cell tower. Supported values for radiotype are lte, gsm, cdma, and…
Nikhil Pawar
  • 181
  • 3
  • 15
0
votes
2 answers

How to get LAC and Cell id for LTE Network

i am using GsmCellLocation to get LAC and cell id for 3G network with below code : mCid = gmsCellLocation.getCid() & 0xffff; mLac = gmsCellLocation.getLac(); and is there any library or formula how to get/calculate the correct LAC and cell id for…
Lim YC
  • 31
  • 2
  • 11
0
votes
1 answer

Opencellid request location

I have an csv that contain the information of cell towers. MMC, MNC, LAC, ID. The python script I wrote read from the csv file Iterate through rows and extract the information of the cell in a dictionary: Cell={"MMC":6050, "MNC":01, "LAN":213,…
0
votes
1 answer

Implement request as JSON for google geolocation API

I'm trying to implement google geolocation API in order to get a location by providing the cell data. Would like to make a form where you put in the cell info and get its location. Here's the page i'm following:…
mrk2011
  • 1
  • 1