25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

81 lines
3.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. . "$HOME/.tweepy.conf"
  10. . "$NOAA_HOME/common.sh"
  11. ## pass start timestamp and sun elevation
  12. PASS_START=$(expr "$5" + 90)
  13. SUN_ELEV=$(python3 "$NOAA_HOME"/sun.py "$PASS_START")
  14. if pgrep "rtl_fm" > /dev/null
  15. then
  16. log "There is an existing rtl_fm instance running, I quit" "ERROR"
  17. exit 1
  18. fi
  19. # $1 = Satellite Name
  20. # $2 = Frequency
  21. # $3 = FileName base
  22. # $4 = TLE File
  23. # $5 = EPOC start time
  24. # $6 = Time to capture
  25. # $7 = Satellite max elevation
  26. log "Starting rtl_fm record" "INFO"
  27. timeout "${6}" /usr/local/bin/rtl_fm ${BIAS_TEE} -f "${2}"M -s 60k -g $GAIN -E wav -E deemp -F 9 - | /usr/bin/sox -t raw -e signed -c 1 -b 16 -r 60000 - "${RAMFS_AUDIO}/audio/${3}.wav" rate 11025
  28. if [ "${SUN_ELEV}" -gt "${SUN_MIN_ELEV}" ]; then
  29. ENHANCEMENTS="ZA MCIR MCIR-precip MSA MSA-precip HVC-precip HVCT-precip HVC HVCT"
  30. daylight="true"
  31. else
  32. ENHANCEMENTS="ZA MCIR MCIR-precip"
  33. daylight="false"
  34. fi
  35. log "Bulding pass map" "INFO"
  36. /usr/local/bin/wxmap -T "${1}" -H "${4}" -p 0 -l 0 -o "${PASS_START}" "${NOAA_HOME}/map/${3}-map.png"
  37. for i in $ENHANCEMENTS; do
  38. log "Decoding image" "INFO"
  39. /usr/local/bin/wxtoimg -o -m "${NOAA_HOME}/map/${3}-map.png" -e "$i" "${RAMFS_AUDIO}/audio/${3}.wav" "${NOAA_OUTPUT}/images/${3}-$i.jpg"
  40. /usr/bin/convert -quality 90 -format jpg "${NOAA_OUTPUT}/images/${3}-$i.jpg" -undercolor black -fill yellow -pointsize 18 -annotate +20+20 "${1} $i ${START_DATE} Elev: $7°" "${NOAA_OUTPUT}/images/${3}-$i.jpg"
  41. /usr/bin/convert -thumbnail 300 "${NOAA_OUTPUT}/images/${3}-$i.jpg" "${NOAA_OUTPUT}/images/thumb/${3}-$i.jpg"
  42. done
  43. rm "${NOAA_HOME}/map/${3}-map.png"
  44. if [ "${SUN_ELEV}" -gt "${SUN_MIN_ELEV}" ]; then
  45. sqlite3 /home/pi/raspberry-noaa/panel.db "insert into decoded_passes (pass_start, file_path, daylight_pass, sat_type) values ($5,\"$3\", 1,1);"
  46. else
  47. sqlite3 /home/pi/raspberry-noaa/panel.db "insert into decoded_passes (pass_start, file_path, daylight_pass, sat_type) values ($5,\"$3\", 0,1);"
  48. fi
  49. pass_id=$(sqlite3 /home/pi/raspberry-noaa/panel.db "select id from decoded_passes order by id desc limit 1;")
  50. if [ -n "$CONSUMER_KEY" ]; then
  51. log "Posting to Twitter" "INFO"
  52. if [ "${SUN_ELEV}" -gt "${SUN_MIN_ELEV}" ]; then
  53. python3 "${NOAA_HOME}/post.py" "$1 ${START_DATE} Mas imagenes: https://weather.reyni.co/detail.php?id=$pass_id" "$7" "${NOAA_OUTPUT}/images/$3-MCIR-precip.jpg" "${NOAA_OUTPUT}/images/$3-MSA-precip.jpg" "${NOAA_OUTPUT}/images/$3-HVC-precip.jpg" "${NOAA_OUTPUT}/images/$3-HVCT-precip.jpg"
  54. else
  55. python3 "${NOAA_HOME}/post.py" "$1 ${START_DATE} Mas imagenes: https://weather.reyni.co/detail.php?id=$pass_id" "$7" "${NOAA_OUTPUT}/images/$3-MCIR-precip.jpg" "${NOAA_OUTPUT}/images/$3-MCIR.jpg"
  56. fi
  57. fi
  58. sqlite3 /home/pi/raspberry-noaa/panel.db "update predict_passes set is_active = 0 where (predict_passes.pass_start) in (select predict_passes.pass_start from predict_passes inner join decoded_passes on predict_passes.pass_start = decoded_passes.pass_start where decoded_passes.id = $pass_id);"
  59. if [ "$DELETE_AUDIO" = true ]; then
  60. log "Deleting audio files" "INFO"
  61. rm "${RAMFS_AUDIO}/audio/${3}.wav"
  62. else
  63. log "Moving audio files out to the SD card" "INFO"
  64. mv "${RAMFS_AUDIO}/audio/${3}.wav" "${NOAA_OUTPUT}/audio/${3}.wav"
  65. fi