You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

43 lines
2.0 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. PREDICTION_START=$(/usr/bin/predict -t "${NOAA_HOME}"/predict/weather.tle -p "${1}" | head -1)
  11. PREDICTION_END=$(/usr/bin/predict -t "${NOAA_HOME}"/predict/weather.tle -p "${1}" | tail -1)
  12. var2=$(echo "${PREDICTION_END}" | cut -d " " -f 1)
  13. MAXELEV=$(/usr/bin/predict -t "${NOAA_HOME}"/predict/weather.tle -p "${1}" | awk -v max=0 '{if($5>max){max=$5}}END{print max}')
  14. while [ "$(date --date="@${var2}" +%D)" = "$(date +%D)" ]; do
  15. log "Pass prediction in progress" "INFO"
  16. START_TIME=$(echo "$PREDICTION_START" | cut -d " " -f 3-4)
  17. var1=$(echo "$PREDICTION_START" | cut -d " " -f 1)
  18. var3=$(echo "$START_TIME" | cut -d " " -f 2 | cut -d ":" -f 3)
  19. TIMER=$(expr "${var2}" - "${var1}" + "${var3}")
  20. OUTDATE=$(date --date="TZ=\"UTC\" ${START_TIME}" +%Y%m%d-%H%M%S)
  21. if [ "${MAXELEV}" -gt "${METEOR_MIN_ELEV}" ]; then
  22. log "Pass is above ${METEOR_MIN_ELEV}, that is OK for me" "INFO"
  23. SATNAME=$(echo "$1" | sed "s/ //g")
  24. echo "${SATNAME}" "${OUTDATE}" "$MAXELEV"
  25. echo "${NOAA_HOME}/receive_meteor.sh \"${1}\" $2 ${SATNAME}${OUTDATE} "${NOAA_HOME}"/predict/weather.tle \
  26. ${var1} ${TIMER} ${MAXELEV}" | at "$(date --date="TZ=\"UTC\" ${START_TIME}" +"%H:%M %D")"
  27. sqlite3 /home/pi/raspberry-noaa/panel.db "insert or replace into predict_passes (sat_name,pass_start,pass_end,max_elev,is_active) values (\"$SATNAME\",$var1,$var2,$MAXELEV,1);"
  28. fi
  29. NEXTPREDICT=$(expr "${var2}" + 60)
  30. PREDICTION_START=$(/usr/bin/predict -t "${NOAA_HOME}"/predict/weather.tle -p "${1}" "${NEXTPREDICT}" | head -1)
  31. PREDICTION_END=$(/usr/bin/predict -t "${NOAA_HOME}"/predict/weather.tle -p "${1}" "${NEXTPREDICT}" | tail -1)
  32. MAXELEV=$(/usr/bin/predict -t "${NOAA_HOME}"/predict/weather.tle -p "${1}" "${NEXTPREDICT}" | awk -v max=0 '{if($5>max){max=$5}}END{print max}')
  33. var2=$(echo "${PREDICTION_END}" | cut -d " " -f 1)
  34. done