Skip to content

Commit 81447ed

Browse files
committed
Comments about units.
1 parent 6513efd commit 81447ed

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/decode_aprs.h

+5
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ typedef struct decode_aprs_s {
8080
char g_message_number[8]; /* Message number. Should be 1 - 5 characters if used. */
8181

8282
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. */
8385

8486
float g_course; /* 0 = North, 90 = East, etc. */
8587

@@ -94,6 +96,9 @@ typedef struct decode_aprs_s {
9496
float g_range; /* Precomputed radio range in miles. */
9597

9698
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. */
97102

98103
char g_mfr[80]; /* Manufacturer or application. */
99104

0 commit comments

Comments
 (0)