Using TelephonyManager.getAllCellInfo() I was able to get information about neighboring cell tower including cellid, but in case of UMTS I only get the PSC value. Is it possible to know a location of a cell tower from its PSC and the MCC, MNC, LAC and CID of a neighbor cell tower?
From PSC to real location
601 Views Asked by Oussama Achech At
2
There are 2 best solutions below
0
al kaj
On
The PSC field is optional into almost all apis to cell location databases out there, in most cases, only mnc, mcc, lac, cid and the radio type are required to proceed cell-base location. Check unwiredlabs for example.
Related Questions in ANDROID
- Creating global Class holder
- Flutter + Dart: Editing name of a tab shows up a black screen
- android-pdf-viewer Received status code 401 from server: Unauthorized
- Sdk 34 WRITE_EXTERNAL_STORAGE not working
- ussd reader in Recket Native module
- Incorrect display of LinearGradientBrush in IOS
- The Binary Version Of its metadata is 1.8.0, expected Version is 1.6.0 build error
- I can't make TextInput to auto expand properly in Android
- Creating multiple instances of a class with different initializing values in Flutter
- How to create a lottie animation
- making android analyze with coverity sast tool
- Flutter plugin development android src not opening after opening example
- I initialize my ViewModel in the Activity with several fragments as tabs, but the fragments(tabs) return null for the updated livedata
- Node.js Server + Socket.IO + Android Mobile Applicatoin XHR Polling Error...?
- How I can use the shared preferences class?
Related Questions in LOCALIZATION
- Difficulty with hosting Multilingual Wagtail site on alwaysdata
- Android - Localized text search using english alphabet
- Format datetime in java based on locale
- MaterialApp doesn't rebuild after changing locale
- Text overflow in Flutter localization with easy_localization package
- Translate output of function in Swift
- How to handle decimal input values in a globalized MVC app
- Some users facing issues changing app language in Android app
- Does anyone have any idea why my right-to-left (RTL) layout isn't taking effect immediately?
- Delphi 7 application not loading STRINGTABLE resources on Windows 10
- Auto add resources key/value in resx files
- Implementing Multi-language Translation in React Router DOM with i18n for Outlook Add-ins
- Swift Sort string array with german localization
- Account language setting ignored in Wagtail admin for localized model names
- Updating comments with references in .po translation
Related Questions in CELLULAR-NETWORK
- How can I relate a cellular towers CID with it PCI
- iOS eSim installation flow does not show a custom label settings screen
- .net Maui Android App loses internet connection when disconnecting from IOT device
- How to enable mobile data on a phone with react native
- How can we read NetworkType() of both sim cards individually on a dual sim device?
- How to get access of connected network information in angular?
- U-blox Sara R410 Newtork registration as roaming (CREG: 1,5) but not registers as Home network (CREG:: 1,1)
- Reading HTTP Response on an Embedded system
- Cannot access the domain name under the cellular network, and it returns to normal after turning on/off the airplane mode
- How can I do that a web page that is loaded in a cellphone allways send the request or data through the wifi network instead of the celullar network?
- Does LTE-M1 work when RSRP is below thermal noise?
- URLSession background uploadTask is slow on cellular
- Python AT MQTT Commands with SimComm7600 to AWS IOT
- Get ICC ID number of a SIM Card using Expo
- Unable to initialize GDBusConnection with cellular modem on linux
Related Questions in UMTS
- ModemManager - Access Technology vs ModemCapability
- Which 3GPP spec identifies the maximim number of PDP Contexts a UE can activate?
- AT+CSQ report at LTE network
- How to block a PIN on sim/uicc
- Locking MNC in Quectel EC25 modem
- How to know USIM card PIN code status (enabled or disabled)
- What is the difference between N1 interface and N2 interface in 5G?
- From PSC to real location
- UM mode in RLC protocol
- Android UMTS tuner
- Which AT commands will be helpful to get SIM data?
- C# & UWP Why internet by UMTS or HDSPA+ not have a good geolocation
- how PCRF and PCEF share the static rules information
- Timer T323 and fast dormancy in UMTS network
- Is PSC part of global Cell ID?
Related Questions in CELLINFO
- TelephonyManager.allCellInfo returns all cell despite createForSubscriptionId
- Android getAllCellInfo() returns wrong LAC
- How to use TelephonyCallback.CellInfoListener?
- Get Cellinfo for dual sim (Primary -physical sim and Secondary E-sim) Android
- I want to use requestCellInfoUpdate in Android 9
- telephonyManager.getAllCellInfo() and subscriptionManager.getActiveSubscriptionInfoList() both returns different mnc (mobile Network code)
- Android TelephonyManager requestCellInfoUpdate returning old timeStamp but data was changed
- Android TelephonyManager requestCellInfoUpdate returning stale data on API 29
- Android 11 5G fetching Cell Parameters
- how to create an object of CellInfo for unit testing?
- Why cellInfo size is zero? It is zero when I get it with TelephonyManager
- Android > How to get service state for both sim cards in dual sim device?
- Detect 5G NR (SA/NSA) in my Android Application
- Is there a way to make a CellInfoNr to CellSignalStrengthNr?
- Measuring 5G(New Radio) data
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes this is possible, but you would have to reference a database that includes lat/long and CID. There are companies that provide this information (e.g. OpenCellID) for which there is an API available.
Otherwise, you can dig through FCC/FAA registrations if you like, which may be more accurate, however I don't think there is an API.
If you are restricted to the attributes listed in your question, then I don't think it would be possible since none of these things are directly linked to lat/long.