Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Airports.txt errors in metar.py and Crontab issues #64

Open
TheMagicDick opened this issue May 25, 2024 · 1 comment
Open

Airports.txt errors in metar.py and Crontab issues #64

TheMagicDick opened this issue May 25, 2024 · 1 comment

Comments

@TheMagicDick
Copy link

I have fixed these problems but just wanted to put my solutions out there for those that are having problems.

In the metar.py file it calls airports to get the names of the airports needed, but the original file gives errors and you need to change all of the code to have the full name, airports.txt

Recently i had to redo everything because of a suspected corrupted sd card that bricked my os installation. in the latest version of raspberry lite when installing pip3 it gave an externally managed error that had me force the installation that probably caused my next issue, the crontab.

Instead of using crontab -e, i had to manually do "sudo nano /etc/crontab" to add my refresh and reboot code

i used

*/5 * * * * /home/pi/refresh.sh
@reboot sudo python3 metar.py &

and that fixed my problems

I have attached my metar.py for anyone that doesnt want to do the airports.txt fix.

metar.zip

@github-staff github-staff deleted a comment May 27, 2024
@github-staff github-staff deleted a comment May 27, 2024
@TheMagicDick
Copy link
Author

Actually this is a better solution to the crontab

Copy the python file to /bin:

sudo cp -i /home/pi/metar.py /bin

Add A New Cron Job:

sudo crontab -e

Scroll to the bottom and add the following line (after all the #'s):

@reboot python3 /bin/metar.py &

The “&” at the end of the line means the command is run in the background and it won’t stop the system booting up.

Test it:

sudo reboot

from https://stackoverflow.com/questions/24518522/run-python-script-at-startup-in-ubuntu

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant