web-dev-qa-db-ja.com

MCC、MNC、LAC、およびセルIDを使用した場所の検索

MCC、MNC、LAC、およびセルIDの値を知っています。 Linuxで緯度と経度の値の形式で位置を計算するプログラムをCで記述したいと思います。

ご参考までに:

質問:

  1. LinuxでMCC、MNC、LAC、セルIDを緯度と経度の値に変換するにはどうすればよいですか?
  2. 読み込もうとすると、Cell IDが毎回変化するのはなぜですか?
12

あなたの質問に答えるには:

  1. 端末またはブラウザからパブリックデータベースにアクセスして、セルIDを緯度/経度に変換できます。データベースは次のとおりです。

  2. セルIDは、電話/デバイスが接続されている携帯電話の塔のIDです。少し移動した瞬間、または近くの別のタワーの信号が現在のタワーよりも良い場合、スマートフォンはそのタワーに切り替わり、セルIDはそのタワーのIDを反映します。

4
kouton

データベースが必要 OpenCellID (新しいセル測定用のAPIを提供し、特定のセルの位置を取得するなど)

または

「シークレット」APIを使用:「 http://www.google.com/glm/mmap "は、非公開のAPIで、cellLocationを緯度と経度に変換します。

そのための多くの方法が this SO question。 の回答に記載されています。

2
Frozen Crayon

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
0
Ahmed chiboub

ログインを必要としない、このシンプルで効率的なWebサイトを使用できます。

http://www.cell2gps.com/

mCCやMNCなどのオペレーター情報にWikiページからアクセスできます。

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

結果は、Googleマップを介した位置GPSです。

0
FBasso