Questions tagged [nmea]

National Marine Electronics Association (NMEA)

The National Marine Electronics Association, founded as an association earlier in 1957, was later incorporated in 1969.

To cite its current mission statement:

(NMEA) is the unifying force behind the entire marine electronics industry, bringing together all aspects of the industry for the betterment of all in our business.

It sets out combined electrical and data specification for communication between various marine electronic devices.

  • NMEA 0183 is the widespread standard superseding the earlier NMEA 0180 and NMEA 0182 standards.
  • NMEA 2000 is the latest standard.

The NMEA is a proprietary standard.

258 questions
0
votes
2 answers

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 broken or lacking information example from the…
0
votes
1 answer

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 this sentence? does the longitude and latitude in…
kakush
  • 3,334
  • 14
  • 47
  • 68
0
votes
1 answer

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 Help. Thanks
pranathi
  • 383
  • 4
  • 6
  • 16
0
votes
1 answer

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 as using standard location listner ? Will it…
srinathhs
  • 1,998
  • 4
  • 19
  • 33
0
votes
1 answer

which value of Azimuth, Elevation and SNR to process with GPGSV NMEA message?

I was working on the parsing logic for GPS. I'm trying to parse the GPGSV message, I was able to find 12 satellite's information of 4 parameters like PRN, SNR, Azimuth and Elevation. But I'm not sure which one of these 12 values would be the valid…
sur
  • 345
  • 1
  • 3
  • 13
-1
votes
0 answers

Recieve UPD or TCP broadcast data from NMEA Broacast in Browser

I am looking for a strategy/approach here and not committed to my attempted solution. Developed code to capture NMEA data on a boat. I used a simulator to capture the data for development but the simulator was on my desktop. Works great. Now I…
-1
votes
1 answer

Innacurate NMEA messages

When I look at latitude and longitude in u-center, I get very accurate coordinates. But the NMEA messages in u-center's text console, and in my Python script output in VSCode, are off by about 0.3 degrees. Both latitude and longitude. Here's my…
-1
votes
1 answer

Using a c-program to read an NMEA-string

I am trying to make a c-program that will will a string, but I want it only to read a very small part of it. The NMEA-telegram that I try to read is $WIXDR, and do receive the necessary strings. Here's 2 examples of strings that I get into the…
-1
votes
1 answer

How should I parse and check through a string?

Okay so I have a C++ project I want to complete which involves receiving NMEA sentences and parsing through them to check if they conform to the "grammar rules" of NMEA. The current method I have been doing this is using if statements but this is…
badcoder11
  • 29
  • 5
-1
votes
1 answer

How to deal with Latitude Longitude errors of gps data while plotting on google map?

Recently I am working to plot latitude and longitude of GPS data on Google Map. The latitude and longitude is in NMEA format and I have converted it in to compatible format to display on google map. I am able to plot the data on google map…
NajLinus
  • 147
  • 2
  • 3
  • 10
-1
votes
1 answer

NMEA sentences are not complete

I am working on android application and i need to get the user's longitude and latitude just by GPS not the network provider. I am using NMEA for this purpose.I am receiving few parameters correct as they should be but the others are not. I am…
Sufyan Aslam
  • 1
  • 1
  • 6
-1
votes
2 answers

Why we need to convert GPS coordinates(latitude, longitude) from degrees and minutes into decimal degrees

I'm getting NMEA data from the GPS. This one I'm converting into decimal degrees for using them in Google maps. We have GPS coordinates conversions like degrees to minutes and seconds. Why do we need to convert the coordinates between this two…
P N R
  • 13
  • 8
-1
votes
1 answer

Honeywell Dead Reckoning Module GPS Problems

I'm currently trying to connect a Honeywell DRM4000L to a GPS module. The DRM is a dead-reckoning device which takes a GPS input and outputs the location by serial. Currently, I have a GS407 GPS module connected to the DRM. Every time I try the GPS…
KK6FSL
  • 7
  • 1
-2
votes
3 answers

What is wrong with my Matlab code? Index out of bounds

I'm trying to read in a text file that contains nmea strings! But I get ??? Attempted to access y(1); index out of bounds because numel(Longitude)=0. Error in ==> filter at 16 Loc(:,i)=coordinates(x(i),y(i))'; filter.m clear…
emil
  • 105
  • 3
  • 8
-2
votes
1 answer

call of overloaded function 'decomposeSentence(const string&)' is ambiguous

I am currently programming a NMEA Parser in C++, and have been given a few pre-declared functions. I'm testing each function as I go along, but I've hit a snag in programming the decomposeSentence function. The code for the function is as…
Rob Dudley
  • 25
  • 8
1 2 3
17
18