National Marine Electronics Association (NMEA)
0
votes
0answers
57 views
How to send GPS NMEA from android to WIFI?
We are running a navigation app on an iPad without GPS. The app can receive GPS data in NMEA format via WIFI to show the current position.
We got an android phone (Galaxy S3) with a GPS module. I am ...
0
votes
0answers
42 views
NMEA to KML creator - open source
I'm looking for an open source KML creator from NMEA file. I'd prefer it to be in c\cpp, but any other language will be fine too.
(for either windows or Linux)
Does anyone know of such thing?
...
0
votes
1answer
348 views
How to use an USB GPS mouse with an Android tablet?
I have an goo' ol' Garmin 60csx device with excellent GPS reception. I can connect via USB to a host and provide GPS information this way -- the interface menu allows to send the NMEA data with 4800 ...
0
votes
0answers
11 views
Using Erlang, how can a “timestamp”, in POSIX time, be derived from a Gregorian date and time?
I'm writing a program that receives data in the form of GPRMC NMEA sentences and outputs it as specified by GTFS-realtime.
GTFS-realtime wants a "timestamp" value, and describes it as such:
...
2
votes
0answers
58 views
How can a “bearing”, in degrees, be derived from a GPRMC NMEA sentence?
I'm writing a program that receives data in the form of GPRMC NMEA sentences and outputs it as specified by GTFS-realtime.
GTFS-realtime wants a "bearing" value, and describes it as such:
...
1
vote
1answer
318 views
GPS Driver for .Net/C# for Pulling GPS Data From Any NMEA-Capable GPS Unit
I have a mapping application and I want to be able to allow my users to connect any GPS unit which spits out NMEA data over a comm port or USB port.
Since the NMEA is a standard that the GPS units ...
1
vote
1answer
111 views
Is this GPGSV sentence valid?
While parsing the NMEA output of a GPS receiver I get the following lines:
$GPGSV,4,1,16,02,17,228,35,03,04,048,37,05,59,285,29,06,02,030,34*73
...
0
votes
1answer
89 views
Read NMEA sentences in Android 1.6?
Is there a way to read NMEA sentences in Android 1.6? I see that GpsStatus.NmeaListener requires API level 5 or above, but I am hoping that someone knows a clever way to do this on level 4.
0
votes
0answers
45 views
NMEA Udp -Android
I'm trying to make a simple app that receives the nmea udp data from my windvane, to my android phone. I can't find very much information for anything even closely realated to this online. I'd ...
0
votes
0answers
103 views
Ask GPSd to listen a UDP socket from client program
I am writing a program (client) that gets GPS information by using libgps. I want this program to be simple and interact only with libgps. I have another program that can generate NMEA messages and ...
0
votes
1answer
72 views
Which NMEA sentence should I use
The GPS I am using outputs multiple NMEA sentences which I can use for positional data. (GPGGA and GPRMC). Is there a reason I should use one over the other? Should I check them both and compare the ...
1
vote
1answer
152 views
Source of android nmea speed
I'm building a small yacht racing app to measure my speed upwind, where the speed is relatively low, in the 6-10 knot range, and where the inherent GPS positional error is causing significant ...
0
votes
1answer
111 views
NMEA data received but empty. Is there any secret?
I have a tablet "Futjitsu Stylistic Q550". It's running on Windows 7 (not Phone!). It has a built-in GPS-receiver "Sierra Wireless". I need to parse NMEA data from COM-port. I can do it but it's ...
2
votes
0answers
115 views
fail to use an android device like a bluetooth gps
I would like to use my android phone (ICS 4.0.1) like a bluetooth GPS with my rasperry pi. My current destribution is raspbian.
I tried several application from the Google Play, but finaly I Chose ...
2
votes
1answer
282 views
gpsd client data buffer
I am developing a C++ application that should retrieve the received NMEA sentences of type $GPGGA, using gpsd. The idea is to read from gpsd approximately once per second and to parse the last $GPGGA ...
0
votes
0answers
132 views
NMEA to GPX convertor - c\c++ Windows
It seems that almost all gps visualizers, use gpx file and not nmea info.
so I'm looking for a convertor that I can use in my cpp program ( open source) , that will convert NMEA file to a GPX file. ...
0
votes
2answers
127 views
How to detect the port to which a GPS device is connected in my program(C/C )
I am writing a program to plot the route.
Is there a way to find out the GPS device connected port?
I can list out all available ports now. But would be nice to list the GPS device port.
4
votes
1answer
485 views
Parse NMEA data in Android 2.3
I'm trying to get data from a bluetooth gps device connected to my Android 2.3 tablet.
At the moment I'm able to pair it using Android bluetooth stack and to read from the serial device that has been ...
0
votes
0answers
129 views
trouble splitting NMEA data
I'm having issues using the SimpleStringSplitter in Android. I'm getting a constant stream of GPS data and need to parse-out the data in the $GPRMC sentence.
code below:
public String ...
2
votes
1answer
266 views
Any alternative to onNmeaReceived?
I have written an app that uses NMEA data, provided by NmeaListener. This app works perfectly on following devices:
Asus Nexus 7, Android 4.1.1
Samsung Nexus S, Android 4.1.2
SonyEricsson Xperia ...
2
votes
1answer
658 views
NMEA checksum calculation
I have a problem with calculating the checksum for NMEA sentences. I am using the following java code:
private static String getSum(String in) {
int checksum = 0;
if (in.startsWith("$")) {
...
0
votes
0answers
77 views
GPGLL different formats
I'm trying y to parse a GPGLL but there are few formats I'm having truble with:
1. $GPGLL,4916.45,N,12311.12,W,225444,A
2. $GPGLL,4916.45,N,12311.12,W,225444,A,*1D
3. ...
0
votes
1answer
652 views
android nmea GPS
Hi am using a locationManager with a Nmea listener. Everything seems to work fine but here is the issue.
I log out the messages in my logcat and i notice something very strange... The messages seems ...
1
vote
1answer
525 views
parse NMEA data using PATTERN MATCHER
Been going crazy with ANDROID's regex using the pattern / matcher methods. I've been pretty unsuccessful for several days now. And yes I have been searching SO for help prior to asking for direct ...
0
votes
1answer
124 views
GPS sentence: GPRMA
I'm writting a NMEA sentences parser, and couldn't find ant documentation about GPRMA sentence except that it is: "Recommended minimum specific Loran-C data". does anyone know what is the meaning of ...
0
votes
0answers
217 views
NMEA or Binary format output in GPS [closed]
I am in confusion to use Binary ouput of NMEA or just the raw output sequence of NMEA in my application. Meanwhile I am using a 32 bit controller with USART interface for the GPS module.
Any ...
0
votes
1answer
84 views
Modifying code to recive only RMC output in GPS
I am using GPS module for my application. I want only the RMC data. So what am I supposed to do in my code to get only this data, i.e all the other formats like GGA,GSA,VTG should be disabled.
Please ...
0
votes
1answer
271 views
NMEA (GPS) sentence to a map location
I'm having a hard time understanding how to see on a map the location given to me by some location NMEA sentence:
foe example: given the sentence
...
0
votes
0answers
161 views
Parsing NMEA formatted data from an IMU
I am trying to take an input from an IMU and break the data up into yaw, pitch and roll values on an ATMega128 microcontroller with C.
The data comes into com1 and looks like
...
0
votes
1answer
261 views
GPGGA doesn't show time
As seen in:
http://aprs.gids.nl/nmea/#gga
The first part of the GPGGA sentence , is UTC time. for example:
$GPGGA,123519,4807.038,N,01131.000,E,1,08,0.9,545.4,M,46.9,M,,*47
The UTC time is: ...
0
votes
1answer
110 views
Android battery performance NmeaListner vs LocationListner
I want to use NmeaListner to get raw gps data in my android app.
Due to various reasons I cannot use the standard location listner for a particular use case.
Does this consume same amount of battery ...
0
votes
0answers
118 views
Programming Blue Next GPS Dongle
We are investigating the feasibility of a project involving gathering data from a Blue Next GPS dongle . Unfortunately there appears to be no programming information available for the device beyond ...
0
votes
0answers
221 views
GPS accuracy is low and reports zero
We are testing out Android application on real world devices and notice some of them report very unaccurate data (even under clear sky and over 10 sats seen and 5 sats used), and even reporting speed ...
0
votes
1answer
171 views
which value of Azimuth, Elevation and SNR to process with GPGSV NMEA message?
Hi was working on the parsing logic for GPS, when i was try to parse the GPGSV message, i could able to find 12 satellite information of 4 parameters like PRN,SNR,Azimuth and Elevation. But i'm not ...
1
vote
2answers
568 views
Convert from British coordinates to standard WGS84 nmea
I was posting similar post already. And I did get an answer in theory but I really need somone to help me.
So I am using this EXAMPLE for testing my GPS. What I want to do is how to get standard ...
0
votes
1answer
296 views
Recieve GPRMC in Android
I have an application on android currently receiving NMEA data GPGSA with the method:
locationManager.addNmeaListener (new GpsStatus.NmeaListener () {
@ Override
public void onNmeaReceived (long ...
0
votes
1answer
650 views
NMEA gps is not getting the right format of coordinates
I am using THIS article and example for testing my gps.
And first of all I must say that program is really great, but of course I need some help.
FIRST
So what I need is to get coordinates in a ...
2
votes
1answer
697 views
Receive NMEA0183 data from COM PORT C++
Hy everybody!
I wrote a small gps application in simple C++, what switch the protocoll, send command to the gps chip...etc.
The write to the GPS port is working good.
But when I try to read the port ...
0
votes
1answer
988 views
a “java.net.SocketException: Connection reset ” when reading sentences NMEA from a GPS device
I bought a gps, I tested this with sms message and with its own software to retrieve the lat / long and it works fine , see the screenshot :
Now I'm sure that the communication with ...
1
vote
0answers
241 views
NMEAListener not working?
I was testing an app using NMEAListener, and noticed that I need to call LocationManager.requestLocationUpdates to get it receiving strings. So to use NMEAListener I need to register the regular ...
2
votes
2answers
952 views
GPS number of satellites and location filtering
Based on the available Location fields, the float accuracy seems the main field to determine how good a GPS location is, without taking into account the timestamp. I wonder if it may also be helpful ...
1
vote
1answer
691 views
reading messages from tracking device over gprs
i have a tracking device Meiligao VT310 which send me messeages over gprs. I successfully read messagess with this code but it's not the same as I expected.
private void ReadCallback(IAsyncResult ...
22
votes
4answers
3k views
Android : Samsung Galaxy Tabs and Android 2.2 Devices Showing GPS date 1 Day Advance from 1st jan 2012
I have the Galaxy tab GT-P1000 7 inch with firmware version 2.3.3 and Phones running Android 2.2. In both versions when ever I am trying to get the time from GPS, its showing 1 day advance from 1st ...
1
vote
0answers
315 views
Enabling GPS with hardware libraries in Android build. How to link libgps.so with hardware
I have a custom android build with my GPS device on a ttyUSB. How to link this interface with libgps.so. is it somewhere in init.rc? My device gives NMEA data.So it just enough to tell my GPS ...
4
votes
1answer
669 views
Looking for Robust Delphi NMEA parser
I'm looking for opensource Delphi NMEA parser of production grade.
It will be fine if it can meet critical mission requirement (I'm joking! I believe it's not attainable using a Win32 system).
So ...
3
votes
2answers
1k views
Is there a solid NMEA parser for Python?
Is there a good NMEA string parser for Python that you can recommend?
I know it is easy to parse but I would rather not re-invent the wheel.
Thanks
0
votes
1answer
382 views
Reading NMEA data from iPhone GPS receiver
I am looking for a way to get NMEA data from the builtin gps receiver of a iPhone.
Is there a way to access this data without using CLLocationFramework?
0
votes
1answer
875 views
NMEA message to Android Location
I am working with an external GPS, since they are far more accurate. I already have the bluetooth connection worked out, but now I'm stuck in a flood of NMEA formatted messages.
It seems like, since ...
1
vote
1answer
119 views
Intrepretation of Unit ID from NMEA data
I have tested a tracking device (AVL) after developing a TCP Server but instead of giving out a unit ID as per what I configured it, it gives in a totally different format as follows:
$$ h?sp _ ...
3
votes
3answers
2k views
NMEA sentences - PGLOR, GNGSA and QZGSA
I'm writing an Android app that reads and parses NMEA sentences from GPS receiver and using a Nexus S phone for tests.
I'm getting GPGGA, GPGSV, GPGSA and GPRMC sentences that are pretty common and ...

