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
1
vote
0 answers

Getting Cell ID on Android Tablet with Data Connection

I've tried to follow numerous posts without much success. Namely, this post sums up both the new way (after API 17) as well as old way to get CID. I've also tried CdmaCellLocation cdmaLocation =…
Alex
  • 3,441
  • 4
  • 18
  • 30
1
vote
1 answer

Android Development CellID in LTE network

I try to implement a function into my Android Application that finds out the cell id of the cell I'm in in a LTE network. I recently read a lot about using TelephonyManager.getAllCellInfo() and then filter for CellInfoLte, but also that it's not…
zappey
  • 11
  • 2
1
vote
1 answer

get cellid in j2me

I am using this code to get cell id from my sony erricson p990 cellphone but it set cellID value to "no property". Blockquote String cellID = System.getProperty("com.sonyericsson.net.cellid"); if(cellID == null) cellID…
tavallaie
  • 69
  • 11
1
vote
0 answers

Android Geofence Implementation get Alart through Cell-ID( NetWork Provider)

I am using Geofence code from http://developer.android.com/training/location/geofencing.html It is working fine If I am enabling GPS and uses following code to request GPS locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,…
Tushar
  • 1,122
  • 1
  • 13
  • 28
1
vote
0 answers

Get 2G and 3G Network details with CellID in iPhone SDK

I need to get CellID,LAC etc using iPhone SDK. I have used CoreTelephony as mentioned in this given link : Get CellID, MCC, MNC, LAC, and Network in iOS 5.1 But i am getting the cell count of 0 and unable to get the CellID,LAC. I am getting MCC and…
Himz
  • 137
  • 7
1
vote
1 answer

How to get cell id for 3G network?

I am getting the the wrong cell Id for the 3G network, I got correct value of cell id for 2G, I don't understand where I am going wrong. Please help TelephonyManager telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); …
Yogesh
  • 111
  • 1
  • 9
1
vote
1 answer

How to find short cell ID?

I have used: TelephonyManager telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); GsmCellLocation cl = (GsmCellLocation) telephonyManager.getCellLocation(); int cid = cl.getCid(); This gives the long cell ID. I'm…
Frozen Crayon
  • 5,172
  • 8
  • 36
  • 71
1
vote
1 answer

mcu gprs connection with google geolocation API

I need to use Google Maps Geolocation API based on cell towers using a GPRS module which has Embedded TCP/IP Stack, FTP,HTTP and so on (HUAWEI MG323-B). The module is communicating with an MCU (LPC1115) via UART. Is it possible to implement the…
1
vote
1 answer

Get Cell-ID in J2ME Application

I want a common(generic) code which gives cell ID of the mobile network. For nokia it is: System.getProperty("com.nokia.mid.cellid"); but I need code which gives cell ID irrespective of mobile vendors. I used System.getProperty("Cell-ID"); but this…
Parmanand
  • 355
  • 2
  • 6
  • 15
1
vote
2 answers

How to compare a value with an integer which is stored in a text file

I'm storing some values in a text file and each line looks like that, Cellid: -----, LAC: ------, Lat: ------, Long: --------- what I want to do is to compare the cellid that the phone currently operates, with the cellids from the text file and if…
user2146209
1
vote
2 answers

Reading cell ID from Nokia S40 using J2ME

Reading around Nokia forums, it seems that accessing the Cell ID and related information from Nokia S40 series phones is virtually impossible unless your MIDlet is signed, and even this would work only for S40 3rd Edition FP1 and above. I tried the…
Kevin Boyd
  • 12,121
  • 28
  • 86
  • 128
1
vote
2 answers

Get latitude and longitude from cellid, lac, MCC, MNC in ASP.NET webservice

I have an .asmx webservice that gets the cellid, MCC, MNC and LAC and I want to use opencellid to get the latitude and longitude from these information, I didn't find resources in the internet, so I don't kow where to start. if you can help me to…
Yasmine GreenApple
  • 438
  • 1
  • 5
  • 15
1
vote
1 answer

Android API Location

My app can show network info such as MCC, MNC, LAC, CellID, RXlevel. However I want to force my Android to connect to fix cellID or channel (frequency). Do you know how to do it ? Thank you so much. Phong
1
vote
0 answers

iphone, check values of cellId / Lac

I can get radio Informations cellId, Lac, MNC, MCC on iOS. And I'd like to know How can I check if values are correct ? Thanks
nico24
  • 121
  • 2
  • 4
1
vote
1 answer

Android browser doesn't use the Cell-ID to geolocate with HTML5 API (only GPS)

I'm doing a Wep App using the HTML5 Geolocation API. I'm using the typical W3C code given here http://dev.w3.org/geo/api/spec-source.html with the getCurrentPosition method. On the Android browser it only works if GPS is enabled and gets the…