/LiveTraffic

LiveTraffic is a X-Plane plugin to show real life traffic, based on publicly available live flight data, as additional planes within X-Plane. Currently in beta stage available to selected testers.

Primary LanguageC++OtherNOASSERTION

LiveTraffic

LiveTraffic is a plugin for the flight simulator X-Plane to show real life traffic, based on publicly available live flight data, as additional planes within X-Plane.

It came into being when I was looking at plugins simulating additional traffic in X-Plane and thinking at that time: Why do they try to simulate traffic and invent flight models when there is flight data available online which brings yet another piece of reality into the simulation? Why can't one just read the data and display the aircraft?

Well...turned out it's not that easy ;-)

Please see GitBook for further documentation on Features, Limitations, Requirements, Installation, Configuration...

Status

Currently in beta testing, available to selected testers on Mac and Windows. Not yet available for download. Not yet available on x-plane.org.

License

MIT License, essentially freeware.

Credits

LiveTraffic is based on a number of other great libraries and APIs, most notably:

Changes to build for Linux

  • libxplanemp, built libxplanemp.a with -fPIC
  • Replaced all occurences isnan with std::isnan
  • In TextIO.cpp changed from window to g_window
  • In TFWigets.cpp added #include <algorithm> #include <cstring> #include <iostream>
  • In LiveTraffic.h changed errno_t to error_t and changed rsize_t to size_t
  • In LTChannel.h added #include <condition variable>