Remark README
This commit is contained in:
parent
4fd4cdcc0c
commit
da3dd921c1
81
README.md
81
README.md
|
|
@ -1,74 +1,83 @@
|
|||
# plane-notify
|
||||
|
||||
Nearing final first version. Notify If a Selected Plane has taken off or landed using Python with OpenSky API, outputs location of takeoff location of landing and takeoff by revese lookup of cordinates.
|
||||
|
||||
## Why I made it
|
||||
Made it so I could track Elon Musk's Jet and share with others of his whereabouts follow on twitter @ElonJet https://twitter.com/ElonJet
|
||||
|
||||
Made it so I could track Elon Musk's Jet and share with others of his whereabouts follow on twitter @ElonJet <https://twitter.com/ElonJet>
|
||||
|
||||
## How It works
|
||||
- Takes data about every 15 seconds from OpenSky Network or ADS-B Exchange and compares it to previous data with whats I've defined as a landing or takeoff event.
|
||||
- A takeoff event event is the plane is not on ground, below 10k feet and ((previously no data and now getting data) or was previously on ground).
|
||||
- A landing event is previosly below 10k feet and (previously getting data, no longer getting data and previously not on ground) or (now on ground and previously not on ground).
|
||||
- Given the coordinates of the aircraft the coordinates are reverse looked up for a location name. (Geopy Nomination Geolocater)
|
||||
- At time of takeoff a takeoff time is set which is refrenced in landing event to calculate an approximate total flight time.
|
||||
- Static map image is created based off location name. (Google Static Maps API)
|
||||
- If the landing event and takeoff events are true creates the output to Twitter and Pushbullet, uses the location name, map image and takeoff time if landing. (Tweepy and Pushbullet )
|
||||
a
|
||||
|
||||
- Takes data about every 15 seconds from OpenSky Network or ADS-B Exchange and compares it to previous data with whats I've defined as a landing or takeoff event.
|
||||
- A takeoff event event is the plane is not on ground, below 10k feet and ((previously no data and now getting data) or was previously on ground).
|
||||
- A landing event is previosly below 10k feet and (previously getting data, no longer getting data and previously not on ground) or (now on ground and previously not on ground).
|
||||
- Given the coordinates of the aircraft the coordinates are reverse looked up for a location name. (Geopy Nomination Geolocater)
|
||||
- At time of takeoff a takeoff time is set which is refrenced in landing event to calculate an approximate total flight time.
|
||||
- Static map image is created based off location name. (Google Static Maps API)
|
||||
- If the landing event and takeoff events are true creates the output to Twitter and Pushbullet, uses the location name, map image and takeoff time if landing. (Tweepy and Pushbullet )
|
||||
a
|
||||
|
||||
## Required PIP packages
|
||||
- OpenSky API https://github.com/openskynetwork/opensky-api
|
||||
- geopy https://github.com/geopy/geopy
|
||||
- colorama https://github.com/tartley/colorama
|
||||
|
||||
- OpenSky API <https://github.com/openskynetwork/opensky-api>
|
||||
- geopy <https://github.com/geopy/geopy>
|
||||
- colorama <https://github.com/tartley/colorama>
|
||||
|
||||
### Install OpenSky API
|
||||
|
||||
```bash
|
||||
apt install git
|
||||
git clone https://github.com/openskynetwork/opensky-api.git
|
||||
pip install -e ~/opensky-api/python
|
||||
```
|
||||
|
||||
### Install Colorama and geopy
|
||||
|
||||
```bash
|
||||
pip install colorama
|
||||
pip install geopy
|
||||
```
|
||||
|
||||
### Install Pushbullet and Tweepy optional output methods already implemented in code
|
||||
|
||||
```bash
|
||||
pip install tweepy
|
||||
pip install pushbullet.py
|
||||
```
|
||||
|
||||
### Install Screen to run in background
|
||||
```
|
||||
apt install screen
|
||||
```
|
||||
|
||||
apt install screen
|
||||
|
||||
### Make sure Python is installed
|
||||
```
|
||||
apt install python3
|
||||
```
|
||||
|
||||
apt install python3
|
||||
|
||||
### Download / Clone
|
||||
```
|
||||
git clone https://github.com/Jxck-S/plane-notify.git
|
||||
cd plane-notify
|
||||
```
|
||||
|
||||
git clone https://github.com/Jxck-S/plane-notify.git
|
||||
cd plane-notify
|
||||
|
||||
### Configure config file with keys and urls
|
||||
- edit them with nano or vi on the running machine or on your pc and transfer the config to where you will be running the bot
|
||||
|
||||
- edit them with nano or vi on the running machine or on your pc and transfer the config to where you will be running the bot
|
||||
|
||||
### Enter and create new Screen Session
|
||||
```
|
||||
screen -R <name screen whatever you want>
|
||||
```
|
||||
|
||||
screen -R <name screen whatever you want>
|
||||
|
||||
### Start Program
|
||||
```
|
||||
python3 NotifyBot.py
|
||||
```
|
||||
|
||||
python3 NotifyBot.py
|
||||
|
||||
### TODO
|
||||
|
||||
implement airport name, done by closest airport
|
||||
|
||||
#### Refrences
|
||||
- https://opensky-network.org/apidoc/
|
||||
- https://geopy.readthedocs.io/en/stable/
|
||||
- https://www.geeksforgeeks.org/python-get-google-map-image-specified-location-using-google-static-maps-api/
|
||||
- https://realpython.com/twitter-bot-python-tweepy/
|
||||
- https://github.com/rbrcsk/pushbullet.py
|
||||
|
||||
|
||||
|
||||
- <https://opensky-network.org/apidoc/>
|
||||
- <https://geopy.readthedocs.io/en/stable/>
|
||||
- <https://www.geeksforgeeks.org/python-get-google-map-image-specified-location-using-google-static-maps-api/>
|
||||
- <https://realpython.com/twitter-bot-python-tweepy/>
|
||||
- <https://github.com/rbrcsk/pushbullet.py>
|
||||
|
|
|
|||
Loading…
Reference in New Issue