We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6513efd commit 81447edCopy full SHA for 81447ed
src/decode_aprs.h
@@ -80,6 +80,8 @@ typedef struct decode_aprs_s {
80
char g_message_number[8]; /* Message number. Should be 1 - 5 characters if used. */
81
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. */
85
86
float g_course; /* 0 = North, 90 = East, etc. */
87
@@ -94,6 +96,9 @@ typedef struct decode_aprs_s {
94
96
float g_range; /* Precomputed radio range in miles. */
95
97
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. */
102
103
char g_mfr[80]; /* Manufacturer or application. */
104
0 commit comments