Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

34 lignes
1.3 KiB

  1. #!/bin/bash
  2. ### Run as a normal user
  3. if [ $EUID -eq 0 ]; then
  4. echo "This script shouldn't be run as root."
  5. exit 1
  6. fi
  7. ## import common lib
  8. . "$HOME/.noaa.conf"
  9. . "$NOAA_HOME/common.sh"
  10. wget -qr http://www.celestrak.com/NORAD/elements/weather.txt -O "${NOAA_HOME}"/predict/weather.txt
  11. wget -qr http://www.celestrak.com/NORAD/elements/amateur.txt -O "${NOAA_HOME}"/predict/amateur.txt
  12. grep "NOAA 15" "${NOAA_HOME}"/predict/weather.txt -A 2 > "${NOAA_HOME}"/predict/weather.tle
  13. grep "NOAA 18" "${NOAA_HOME}"/predict/weather.txt -A 2 >> "${NOAA_HOME}"/predict/weather.tle
  14. grep "NOAA 19" "${NOAA_HOME}"/predict/weather.txt -A 2 >> "${NOAA_HOME}"/predict/weather.tle
  15. grep "METEOR-M 2" "${NOAA_HOME}"/predict/weather.txt -A 2 >> "${NOAA_HOME}"/predict/weather.tle
  16. if [ "$SCHEDULE_ISS" == "true" ]; then
  17. grep "ZARYA" "${NOAA_HOME}"/predict/amateur.txt -A 2 > "${NOAA_HOME}"/predict/amateur.tle
  18. fi
  19. #Remove all AT jobs
  20. for i in $(atq | awk '{print $1}');do atrm "$i";done
  21. #Schedule Satellite Passes:
  22. if [ "$SCHEDULE_ISS" == "true" ]; then
  23. "${NOAA_HOME}"/schedule_iss.sh "ISS (ZARYA)" 145.8000
  24. fi
  25. "${NOAA_HOME}"/schedule_meteor.sh "METEOR-M 2" 137.1000
  26. "${NOAA_HOME}"/schedule_sat.sh "NOAA 19" 137.1000
  27. "${NOAA_HOME}"/schedule_sat.sh "NOAA 18" 137.9125
  28. "${NOAA_HOME}"/schedule_sat.sh "NOAA 15" 137.6200