使用MCC,MNC,LAC和Cell ID查找位置

时间:2013-09-08 01:17:36

标签: android linux geolocation gps wireless

我知道MCC,MNC,LAC和&小区ID。我想在C中写一个程序来计算Linux中纬度和经度值形式的位置。

供参考:

问题:

  1. 如何将MCC,MNC,LAC,Cell ID转换为linux中的纬度和经度值?
  2. 为什么Cell ID在每次尝试阅读时都会有所不同?

4 个答案:

答案 0 :(得分:4)

回答你的问题:

  1. 您可以从终端或浏览器访问公共数据库,以将单元ID转换为lat / lon。数据库包括:

  2. 小区ID是您的手机/设备所连接的手机信号塔的ID。你移动一下,或者附近的另一个塔的信号比当前的信号好,你的手机将切换到那个塔,你的手机ID现在反映了该塔的ID。

答案 1 :(得分:2)

您需要一个数据库 OpenCellID(它们提供用于新细胞测量的API,获取特定细胞的位置等)

使用“秘密”API: “http://www.google.com/glm/mmap”是将cellLocation转换为纬度和经度的非公共API。

this SO question.

的答案中提供了许多方法

答案 2 :(得分:0)

您可以使用这个简单但高效的网站,不需要任何登录:

http://www.cell2gps.com/

虽然您可以访问维基页面上的MCC和MNC等运营商信息:

http://en.wikipedia.org/wiki/Mobile_country_code#I

结果是通过谷歌地图定位GPS,

答案 3 :(得分:0)

我写了一个可以为你做这个的python脚本。您可以从pyc文件中获取二进制文件。

#!/bin/python
"""
Written by Atissonoun - Credits to MFC & HAC
***You need to initialize the script in order to fix the import and the dependency.
This is only a Beta version of the project***
This python file works as the engine for the project.
imports, coordinates, run......
"""

#Importing modules
import requests
#defining a Api_Keys

Google_API_KEY="Your google API Key goes here"
OpenCell_Api_Key ="Your OpenCellID API Key goes here"

def Google(MMC,MNC,LAC,ID,API_KEY=Google_API_KEY):
    url = "https://www.googleapis.com/geolocation/v1/geolocate?key={}".format(API_KEY)
    data={
    "radioType": "gsm",
    "cellTowers":[
        {
        "cellId": ID,
        "locationAreaCode": LAC,
        "mobileCountryCode": MMC,
        "mobileNetworkCode": MNC
        }
    ]
    }
    response = requests.post(url, json=data)
    if response.status_code == 200 :
        lat=response.json()[u'location'][u'lat']
        long = response.json()[u'location'][u'lng']
        d={'LAT':lat,'LONG':long}
        print('Located Cell: {}'.format(ID))
        return d
    else:
        print('Error: {}'.format(response.status_code))
        return None

def Opencell(MMC,MNC,LAC,ID,API_KEY=OpenCell_Api_Key):
    url = "https://us1.unwiredlabs.com/v2/process.php"
    data = {
        "token": API_KEY,
        "radio": "gsm",
        "mcc": MMC,
        "mnc": MNC,
        "cells": [{
            "lac": LAC,
            "cid": ID
        }]
    }
    response = requests.post(url, json=data)
    if response.status_code == 200:
        if response.json()[u'status']== 'error':
            print('Error: {}'.format(response.json()[u'message']))
            return None
        else:
            lat = response.json()[u'lat']
            long = response.json()[u'lon']
            d = {'LAT': lat, 'LONG': long}
            print('Located Cell: {}'.format(ID))
            return d
    else:
        print('Error: {}'.format(response.status_code))
        return None