File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,8 @@ typedef struct decode_aprs_s {
80
80
char g_message_number [8 ]; /* Message number. Should be 1 - 5 characters if used. */
81
81
82
82
float g_speed_mph ; /* Speed in MPH. */
83
+ /* The APRS transmission uses knots so watch out for */
84
+ /* conversions when sending and receiving APRS packets. */
83
85
84
86
float g_course ; /* 0 = North, 90 = East, etc. */
85
87
@@ -94,6 +96,9 @@ typedef struct decode_aprs_s {
94
96
float g_range ; /* Precomputed radio range in miles. */
95
97
96
98
float g_altitude_ft ; /* Feet above median sea level. */
99
+ /* I used feet here because the APRS specification */
100
+ /* has units of feet for alititude. Meters would be */
101
+ /* more natural to the other 96% of the world. */
97
102
98
103
char g_mfr [80 ]; /* Manufacturer or application. */
99
104
You can’t perform that action at this time.
0 commit comments