Advertisement
MrLunk

overhead ADSB flight logger - PiAware / FlightAware

Apr 13th, 2023 (edited)
2,033
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.75 KB | Source Code | 0 0
  1. """
  2. Basic python code example for Real-time Aircraft notifications within
  3. a specified radius and altitude range. (overhead traffic notification basics)
  4. This script retrieves information about aircraft from a local flight tracker
  5. (PiAware with FlightAware Pro Stick)
  6. and calculates the distance between the plane's coordinates and a set of home
  7. coordinates. If the plane is within X miles of the home coordinates and at an
  8. altitude of Z feet or lower, the flight information is printed to console.
  9. (Later this will be saved to database...)
  10. Script by: MrLunk April 2023
  11. Source: https://github.com/mrlunk/Plane-Tracking-ADSB
  12. """
  13.  
  14. Moved script to Github here:
  15.  
  16. https://github.com/mrlunk/Plane-Tracking-ADSB/blob/main/Flights-Within-X-Miles-under-Z-Feet.py
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement