Automate Flightradar24 plane spotting with python by receiving a windows notification when a plane is about to fly over your area (only for personal use)
git clone https://github.com/ravenstx/PlaneNotifier.git
install the requirements
cd PlaneNotifier
python -m pip install -r requirements.txt
next go into the file called planenotifier.py and put your latitude and longitude for this example I took the coordinates from the Eiffel Tower
config = {
'lat': 48.8585,
'long': 2.2942,
'km_diameter': 25,
'visible_km_radius': 3.5
}
run planenotifier.py
python planenotifier.py
(This is what happens under the hood, when a plane's predicted path is in your radius you will receive a notification)