Location:
Search - cellid
Search list
Description: 在windows mobile平台上获取手机基站信息的源代码,可以用来实现基于基站的Gps系统
Platform: |
Size: 21192 |
Author: wweerr |
Hits:
Description: 用C#实现的取得CellID和LAC的程序源代码!
Platform: |
Size: 674947 |
Author: Manfeel |
Hits:
Description: EVC源码,通过AT指令获取CELLID等信息
Platform: |
Size: 2483758 |
Author: tom |
Hits:
Description: 運用基站號碼去google查詢相對應位置座標的程式 如果你在你的手机装过Google Mobile Maps,你可以发现只要你的手机能连GPRS,即使没有GPS功能,也能定位到你手机所在位置,只是精度不是很精确。在探讨这个原理之前,先让我们了解一下一些移动知识,了解什么是MNC/MCC/LAC/Cell ID。 "Mobile Network Code (MNC) 移动网号码,中国联通CDMA系统的MNC为03,中国移动的应该为00。 "Mobile Country Code (MCC) 移动用户所属国家代号,中国是:460。 "Location Area Code (LAC) 地区区域码,用来划分区域,一般小地方就一个LAC,大地方就有多几个。 "Cell Tower ID (Cell ID) CellID代表一个移动基站,如果你有基站数据,查CellID你就可以知道这个基站在哪里,移动公司或者警察通过这个知道你是在哪个基站范围打的移动电话。 这些信息有什么用呢? 通过这些信息可以知道你的手机是从哪个国家,区域和哪个基站接入移动网络的。所以有些防盗手机丢失后,会发一些类似"MCC:460;MNC:01;LAC:7198:CELLID:24989"内容的短信到你指定号码就是这个用途,通过这些信息可以从移动查到你的被盗手机在哪里出现过。不过知道了也没用,中国人口这么密集,就是在你身边你也不知道谁是小偷:) 这些信息从哪里来呢,一般的手机系统都提供相应的API来获取这些信息(Tower Info),比如Window SmartPhone 或Mobile就是通过RIL.dll里的API来取得,每个手机操作系统不一样,相关的信息可以查相关资料。 得到了这些信息,如果没有基站信息表,得到了这些信息也不知道在哪,因为只有移动运营商有相关的信息,除非你是运营商或者警察才能得到这些信息。是不是我们就查不到相应的数据呢,当然不是,强大的Google就有,这里就要提到Google Mobile Maps API,里面囊括了比较全的基站信息,中国的也有,就是偏远地区的有没有就不知道了。Google Mobile Maps本身就是使用的这些信息,感兴趣可以试一试,没有GPS模块也能定位到你手机位置,但精度不大,取决于基站的位置离你多远。 同样我们自己也可以开发相应的手机应用来定位,只要调用Google现成的API(Secret AP
Platform: |
Size: 552920 |
Author: wjj88.tw@yahoo.com.tw |
Hits:
Description: 在windows mobile平台上获取手机基站信息的源代码,可以用来实现基于基站的Gps系统-In the windows mobile platform mobile phone base stations to obtain information on the source code can be used to realize base stations based on Gps System
Platform: |
Size: 20480 |
Author: wweerr |
Hits:
Description: 用C#实现的取得CellID和LAC的程序源代码!-With C# Realize the CellID and LAC to obtain the source code!
Platform: |
Size: 678912 |
Author: Manfeel |
Hits:
Description: EVC源码,通过AT指令获取CELLID等信息-EVC source, through the AT command to obtain information such as CELLID
Platform: |
Size: 2484224 |
Author: tom |
Hits:
Description: WM5.0下如何获取基站信息(LAC、Cellid) -How to obtain the base station under WM5.0 information (LAC, Cellid)
Platform: |
Size: 1024 |
Author: qinlin |
Hits:
Description: Cell Id detector. Detects cell ID. Symbian C++ source code and App. Used with carbide c++.
Platform: |
Size: 94208 |
Author: Marius |
Hits:
Description: 能取cellID,和lacID。基站定位,编译通过,可能,s1,p800上都试过.-cellID,lacID
Platform: |
Size: 1359872 |
Author: ss |
Hits:
Description: 该程序通过RIL得到基站的信息,可以达到定位的功能-This program can get the information of cellID,it can achieve the function like GPS.
Platform: |
Size: 3319808 |
Author: Derek |
Hits:
Description: j2me获得cellid,lac,mnc等信息-j2me access to cellid, lac, mnc and other information
Platform: |
Size: 21504 |
Author: fanxiuchuan |
Hits:
Description: 获取移动手机基站的信息cellid,显示,可根据cellid的库找到位置,cellid数据库可上网下载-获取手机基站的信息cellid
Platform: |
Size: 26624 |
Author: century |
Hits:
Description: symbian C++获取CellID,软件用carbide
Platform: |
Size: 3072 |
Author: 王tiger |
Hits:
Description: 通过Web页面获取基站位置Web端源码
首先要清楚一点的是,每一个基站都能够通过请求http://www.google.com/loc/json获取到一个经纬度。如果用户能够在短时间内获取到较多的基站信息,比如4个或5个,可以通过这几个基站的经纬度计算出比较准确的用户位置。
举个例子,比如我在WM上取到4个基站信息:
50554,9513,460,1
50325,9513,460,1
50584,9513,460,1
50041,9513,460,1
每一行的4个数值分别对应:CID, LAC, MCC, MNC
CID——CellID,表示基站号
LAC——Location Area Code,表示区域编号
MCC——Mobile Country Code,表示国家编号,中国是460
MNC——Mobile Network Code,表示移动网络编号,移动是0,联通是1
然后向Google发送基站信息是通过JSON串以Post的形式发送到http://www.google.com/loc/json,然后它会返回一个包含经纬度信息的JSON串-Web page for the base station location by Web-side source
First of all must be aware that each base station can request http://www.google.com/loc/json get through to a latitude and longitude. If the user can quickly access to the base station more information, such as 4 or 5, these base stations can be calculated more accurate latitude and longitude of the user location.
For example, such as WM, I get to 4 on the base station information:
50554,9513,460,1
50325,9513,460,1
50584,9513,460,1
50041,9513,460,1
Each line of the four values correspond to: CID, LAC, MCC, MNC
CID- CellID, said base station No.
LAC- Location Area Code, said regional code
MCC- Mobile Country Code, said the national numbers, China is 460
MNC- Mobile Network Code, said the mobile network number, mobile is 0, Unicom is a
Base station then sends the information to the Google JSON string through the form to send to the Post http://www.google.com/loc/json, then it will re
Platform: |
Size: 134144 |
Author: 尚伊珣 |
Hits:
Description: 用c++实现的在windows mobile手机上获取基站信息的源代码-Implemented with c++ windows mobile phone in the information source for base stations
Platform: |
Size: 1024 |
Author: 江彪 |
Hits:
Description: 移动基站数据库,最近更新!!!!可以通过CELLID定位-Mobile base station database, the latest updates! ! ! ! Positioning by CELLID
Platform: |
Size: 108544 |
Author: zxw |
Hits:
Description: 移动的CELLID数据库,可以根据CELLID实现定位-Mobile CELLID database, you can achieve under the CELLID Location! ! !
Platform: |
Size: 108544 |
Author: zxw |
Hits:
Description: 从知lac和cid得到基站geo,解决GPS信号差问题-get the geo from lac and cid
Platform: |
Size: 1024 |
Author: linhua |
Hits:
Description: Java ME获得IMEI和CellID(基站)代码,获取基站信息-Java ME get IMEI and CellID
Platform: |
Size: 1024 |
Author: zelda00 |
Hits: