-
Notifications
You must be signed in to change notification settings - Fork 78
/
deprecated.go
140 lines (113 loc) · 3.02 KB
/
deprecated.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package nmea
type (
// GLGSV represents the GPS Satellites in view http://aprs.gids.nl/nmea/#glgsv
//
// Deprecated: Use GSV instead
GLGSV = GSV
// GLGSVInfo represents information about a visible satellite
//
// Deprecated: Use GSVInfo instead
GLGSVInfo = GSVInfo
// GNGGA is the Time, position, and fix related data of the receiver.
//
// Deprecated: Use GGA instead
GNGGA = GGA
// GNGNS is standard GNSS sentance that combined multiple constellations
//
// Deprecated: Use GNS instead
GNGNS = GNS
// GNRMC is the Recommended Minimum Specific GNSS data. http://aprs.gids.nl/nmea/#rmc
//
// Deprecated: Use RCM instead
GNRMC = RMC
// GPGGA represents fix data. http://aprs.gids.nl/nmea/#gga
//
// Deprecated: Use GGA instead
GPGGA = GGA
// GPGLL is Geographic Position, Latitude / Longitude and time. http://aprs.gids.nl/nmea/#gll
//
// Deprecated: Use GLL instead
GPGLL = GLL
// GPGSA represents overview satellite data. http://aprs.gids.nl/nmea/#gsa
//
// Deprecated: Use GSA instead
GPGSA = GSA
// GPGSV represents the GPS Satellites in view http://aprs.gids.nl/nmea/#gpgsv
//
// Deprecated: Use GSV instead
GPGSV = GSV
// GPGSVInfo represents information about a visible satellite
//
// Deprecated: Use GSVInfo instead
GPGSVInfo = GSVInfo
// GPHDT is the Actual vessel heading in degrees True. http://aprs.gids.nl/nmea/#hdt
//
// Deprecated: Use HDT instead
GPHDT = HDT
// GPRMC is the Recommended Minimum Specific GNSS data. http://aprs.gids.nl/nmea/#rmc
//
// Deprecated: Use RMC instead
GPRMC = RMC
// GPVTG represents track & speed data. http://aprs.gids.nl/nmea/#vtg
//
// Deprecated: Use VTG instead
GPVTG = VTG
// GPZDA represents date & time data. http://aprs.gids.nl/nmea/#zda
//
// Deprecated: Use ZDA instead
GPZDA = ZDA
)
const (
// PrefixGNGNS prefix
//
// Deprecated: Use TypeGNS instead
PrefixGNGNS = "GNGNS"
// PrefixGPGGA prefix
//
// Deprecated: Use TypeGGA instead
PrefixGPGGA = "GPGGA"
// PrefixGPGLL prefix for GPGLL sentence type
//
// Deprecated: Use TypeGLL instead
PrefixGPGLL = "GPGLL"
// PrefixGPGSA prefix of GPGSA sentence type
//
// Deprecated: Use TypeGSA instead
PrefixGPGSA = "GPGSA"
// PrefixGPRMC prefix of GPRMC sentence type
//
// Deprecated: Use TypeRMC instead
PrefixGPRMC = "GPRMC"
// PrefixPGRME prefix for PGRME sentence type
//
// Deprecated: Use TypePGRME instead
PrefixPGRME = "PGRME"
// PrefixGLGSV prefix
//
// Deprecated: Use TypeGSV instead
PrefixGLGSV = "GLGSV"
// PrefixGNGGA prefix
//
// Deprecated: Use TypeGGA instead
PrefixGNGGA = "GNGGA"
// PrefixGNRMC prefix of GNRMC sentence type
//
// Deprecated: Use TypeRMC instead
PrefixGNRMC = "GNRMC"
// PrefixGPGSV prefix
//
// Deprecated: Use TypeGSV instead
PrefixGPGSV = "GPGSV"
// PrefixGPHDT prefix of GPHDT sentence type
//
// Deprecated: Use TypeHDT instead
PrefixGPHDT = "GPHDT"
// PrefixGPVTG prefix
//
// Deprecated: Use TypeVTG instead
PrefixGPVTG = "GPVTG"
// PrefixGPZDA prefix
//
// Deprecated: Use TypeZDA instead
PrefixGPZDA = "GPZDA"
)