English 中文(简体)
• 如何从信箱获取全球定位系统数据?
原标题:How to get GPS data from Android phone?

全球定位系统数据是否与PC的Andan电话相联? 目前,我正在使用基于优惠项目的全球定位仪。

我正在看一下其他办法,这些办法能够提供更大的控制,而且比这种控制更弱。 而且,没有使用任何第三方评估,是否有另一种方法这样做?

我正致力于一个了解地点的软件项目,希望定期阅读全球定位系统数据。 全球定位系统探测器确实在TCP港口的电话网上。

最佳回答

这里的理想情况是,有一个横跨海底连接的序列港口,连接你的蜂窝电话和你的个人电脑,并从电话中流出NMEA。 不幸的是,安乐团以这种本地方式支持U。

全球定位系统电池是一种“hack”,使用推进灯塔桥,以便在电话和PC之间建立联系,然后从地点管理人员那里读到NMEA,然后将其发送至转口建造的TCP/IP链接。

如果你发现全球定位系统电池太大,你实际上只有两种选择:(a) 采用全球定位系统联合分析仪,或(b) 采用另一种方法这样做。 两者都将涉及相当一部分编码。

对于(b)来说,你可能要考虑——在电话上写NMEA,同时把它作为“USB”大规模储存装置连接起来,并定期阅读PC文件的最新情况。

或者,也许你会用像AthonyNMEA这样的东西,为全球定位系统建立蓝色通信港口连接,从而给您的PC和“再”光彩的电话。

或者,你可以复制“FTP”客户方案,在“WiFi”连接线上将文件写给“FTP”服务器(这将使你能够在世界另一边从PC获得电话)。

问题回答

可以通过在谷歌游乐市场和Franson全球定位系统客户中提供共享全球定位系统应用。 您必须利用这些工具将全球定位系统NMEA信号转至COM港口。 此外,你还需要下载安康克公司经理。

详细指示见以下链接:

rel=“noreferer”>http://commdroid.jillybunch.com/user.html

Use Blue-NMEA http://max.kellermann.name/projects/blue-nmea/ on your android to send GPS NMEA data on bluetooth or on a local tcp server which can be accessed on PC by usb tethering or on WI-FI connection. use VSPE (virtual serial port emulator) by eterlogic http://www.eterlogic.com/Products.VSPE.html (look for ur version of windows) and redirect data from tcp port to a com port of your choice and u r done with the settings. now configure google earth , see you , GPSdata logger or any other soft to listen to this com port which oftenly they will do by themselves.

http://max.kellermann.name/projects/blue-nmea/

sends nmea via bt com port or on a tcp port. make sure you read the readme to avoid common obstacles.

这确实很晚,但我有一个老的LG-P350,在装置管理人身上显示的是NMEA接口。 我不知道如何使用。 “LG——全球定位系统NMEA接口/





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签