Skip to content

Commit 52e3a5b

Browse files
committed
Display speed and altitude in both metric and Imperial units.
1 parent 1d67b44 commit 52e3a5b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/decode_aprs.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -556,10 +556,10 @@ void decode_aprs_print (decode_aprs_t *A) {
556556
};
557557

558558
if (A->g_speed_mph != G_UNKNOWN) {
559-
char spd[20];
559+
char spd[32];
560560

561561
if (strlen(stemp) > 0) strlcat (stemp, ", ", sizeof(stemp));
562-
snprintf (spd, sizeof(spd), "%.0f MPH", A->g_speed_mph);
562+
snprintf (spd, sizeof(spd), "%.0f km/h (%.0f MPH)", DW_MILES_TO_KM(A->g_speed_mph), A->g_speed_mph);
563563
strlcat (stemp, spd, sizeof(stemp));
564564
};
565565

@@ -572,10 +572,10 @@ void decode_aprs_print (decode_aprs_t *A) {
572572
};
573573

574574
if (A->g_altitude_ft != G_UNKNOWN) {
575-
char alt[20];
575+
char alt[32];
576576

577577
if (strlen(stemp) > 0) strlcat (stemp, ", ", sizeof(stemp));
578-
snprintf (alt, sizeof(alt), "alt %.0f ft", A->g_altitude_ft);
578+
snprintf (alt, sizeof(alt), "alt %.0f m (%.0f ft)", DW_FEET_TO_METERS(A->g_altitude_ft), A->g_altitude_ft);
579579
strlcat (stemp, alt, sizeof(stemp));
580580
};
581581

0 commit comments

Comments
 (0)