Skip to content

Commit 0734e46

Browse files
committed
Issue 545 - Saved station location overwritten by Object report from that station.
1 parent 5d7b10a commit 0734e46

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/mheard.c

+11-3
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,7 @@ void mheard_save_rf (int chan, decode_aprs_t *A, packet_t pp, alevel_t alevel, r
406406
mptr->chan = chan;
407407
mptr->num_digi_hops = hops;
408408
mptr->last_heard_rf = now;
409+
// Why did I do this instead of saving the location for a position report?
409410
mptr->dlat = G_UNKNOWN;
410411
mptr->dlon = G_UNKNOWN;
411412

@@ -446,9 +447,16 @@ void mheard_save_rf (int chan, decode_aprs_t *A, packet_t pp, alevel_t alevel, r
446447
}
447448
}
448449

449-
if (A->g_lat != G_UNKNOWN && A->g_lon != G_UNKNOWN) {
450-
mptr->dlat = A->g_lat;
451-
mptr->dlon = A->g_lon;
450+
// Issue 545. This was not thought out well.
451+
// There was a case where a station sent a position report and the location was stored.
452+
// Later, the same station sent an object report and the stations's location was overwritten
453+
// by the object location. Solution: Save location only if position report.
454+
455+
if (A->g_packet_type == packet_type_position) {
456+
if (A->g_lat != G_UNKNOWN && A->g_lon != G_UNKNOWN) {
457+
mptr->dlat = A->g_lat;
458+
mptr->dlon = A->g_lon;
459+
}
452460
}
453461

454462
if (mheard_debug >= 2) {

0 commit comments

Comments
 (0)