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
2
votes
0 answers

`GPGGA` and `GPRMC` sentences are not received in onNmeaMessage

The Problem I am working on the application which is listening for NMEA messages, to do so I am adding NMEA listener like this locationManager.requestLocationUpdates( LocationManager.GPS_PROVIDER, TimeUnit.SECONDS.toMillis(1L), 0.0f, …
Viktor Apoyan
  • 10,655
  • 22
  • 85
  • 147
2
votes
2 answers

How to read serial with interrupt serial?

I'm trying to read NMEA message in Linux. But I can't get a completely…
ToanVnET
  • 105
  • 4
  • 14
2
votes
0 answers

NMEA simulate no signal

To test a navigation software, I need to simulate a NMEA-GPS log where the device has no signal. I tried it by sending a line without any position information like…
Chris Crozz
  • 163
  • 2
  • 9
2
votes
1 answer

Convert GPGSV to GPRMC or to Google map location?

Currently I am using U-Blox 7m GPS with Arduino, on run time, it is giving value on Serial Monitor…
2
votes
0 answers

How to work with NMEA protocol on Android API 21?

I updated targetSdk and compileSdk to 29 version, but after updating version and libraries project not compile. The LocationManager class no longer has the "addNmeaListener" and "removeNmeaListener" methods for android version 23 and lower. These…
2
votes
3 answers

How to read from serial port like picocom on Linux?

I have a gps module that sends data (NMEA sentence) every 1 seconds to the serial port. I've been trying to read it from a c++ program. When reading the serial port with picocom, data is displayed in a clean way, each line has a NMEA sentence).…
Juju
  • 81
  • 1
  • 9
2
votes
1 answer

ublox GPS strange characters interspersed with NMEA output

I am using a ublox GPS for a data acquisition application. The device is outputting NMEA on a virtual COM port. The NMEA output works just fine. But between the NMEA messages strange characters are interspersed. See screenshot below from Realterm…
ARF
  • 7,420
  • 8
  • 45
  • 72
2
votes
2 answers

How to print GPS location to stdout (Ubuntu 16.04 / 18.04)?

I'm a complete newbie with GPS devices on Linux. I have a GlobalSat G-STAR IV USB device and I would just like to get the GPS location (lat, long) printed to stdout. How can I achieve that? I'm reading about gpsd, but not sure how to get the actual…
juzzlin
  • 45,029
  • 5
  • 38
  • 50
2
votes
3 answers

nmea checksum in c# .net cf

I'm trying to write my own nmea parser,since i only need some info from the gps, and don't need to interpret all messages. The problem that i have is that my nmea message validator gives me an wrong checksum. Can someone see what i'm droing…
Sorcerer86pt
  • 427
  • 9
  • 21
2
votes
1 answer

NMEA AIS position messages complete UTC timestamp obtention

After decoding AIVM sentences using gpsdecode I have a buch of json estructures, each one with all the data of a message type, for…
Lanas
  • 23
  • 5
2
votes
0 answers

Getting the Nmea sentence from google fused provider

I'd like to get the NMEA sentence using the android fused location Provider Client, but I can't find any documentation. Is it possible? thx
Daitarn
  • 109
  • 1
  • 15
2
votes
1 answer

Parsing HHMMSS come from NMEA

I have a trouble with NMEA data(gpzda). The problem is explained below. NMEA Data : $GPZDA,011856.00,17,03,2018,,*61 My Parsing Code. char hour[2] = { 0 }; for (int i=0; i < 2; i++) hour[i] = utctime[i]; info.tm_hour = atoi(hour); char min[2] = { 0…
spritecodej
  • 459
  • 1
  • 4
  • 13
2
votes
1 answer

Read data from GPS Uart

I'm using a Mediatek MT3333 GPS receiver (baudrate: 115200 bpS), but all I'm getting is…
ahmed9207
  • 23
  • 4
2
votes
0 answers

I have removed the NmeaListener from LocationManager, why the NmeaListener's onNmeaReceived() still be call?

Here are my sample code: public class GeoPointMapNewActivity extends Activity implements GpsStatus.NmeaListener { private LocationManager mLocationManager; @Override protected void onCreate(Bundle savedInstanceState)…
吴志权
  • 19
  • 7
2
votes
0 answers

Android nmea sentence not logging

I've got pure and simple Androiod GPS LocationManager with NmeaListener added to it. In body of onNmeaReceived() method I have simple Log.d() statement. When i tell it to log simple String ("Nmea receied" or something) - it works ok. But when i…
1 2
3
17 18