Skip to content

Commit

Permalink
ADSB CS and Vel on Beast Mode
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveBorensteinNOAA authored and meee1 committed Sep 12, 2023
1 parent 65cf830 commit f4b6b9b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ExtLibs/Utilities/adsb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -912,10 +912,12 @@ public static void ReadMessage(Stream st1)
if (plla.Lat == 0 && plla.Lng == 0)
continue;
plla.Heading = (float)plane.heading;
if (plane.CallSign != null) plla.CallSign = plane.CallSign;
plla.Speed = plane.ground_speed;
if (UpdatePlanePosition != null && plla != null)
UpdatePlanePosition(null, plla);
//Console.WriteLine(plane.pllalocal(plane.llaeven));
Console.WriteLine(plla);
//Console.WriteLine(plla);
}
break;
default:
Expand Down

0 comments on commit f4b6b9b

Please sign in to comment.