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

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

fix "bad HTML entity" javadoc warnings

  • Property svn:eol-style set to native
File size: 841 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 &amp; 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.