source: josm/trunk/src/org/openstreetmap/josm/io/nmea/TalkerId.java@ 12423

Last change on this file since 12423 was 12423, checked in by Don-vip, 7 years ago

see #14924 - support NMEA IN and EC talker IDs, found in gpsd test files, as they can be obtained from real maritime navigation systems / gps receivers

  • Property svn:eol-style set to native
File size: 837 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io.nmea;
3
4/**
5 * Talker identifiers mnemonics are the first two characters at the beginning of each sentence.
6 * This enum lists the common ones (navigation systems).<p>
7 * See <a href="http://www.catb.org/gpsd/NMEA.html#_talker_ids">Talker IDs</a>
8 * @since 12421
9 */
10public enum TalkerId {
11 /** BeiDou (China) */
12 BD,
13 /** Electronic Chart Display & Information System (ECDIS) */
14 EC,
15 /** Galileo (Europe) */
16 GA,
17 /** BeiDou (China) */
18 GB,
19 /** GLONASS (GLObalnaya NAvigatsionnaya Sputnikovaya Sistema, Russia) */
20 GL,
21 /** GNSS (Global Navigation Satellite System). Generic form when multiple sources are combined. */
22 GN,
23 /** GPS (Global Positioning System) */
24 GP,
25 /** Integrated Navigation */
26 IN
27}
Note: See TracBrowser for help on using the repository browser.