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.
 
 
 
 
 
 

84 regels
3.1 KiB

  1. #!/bin/bash
  2. ## import common lib
  3. . "$HOME/.noaa.conf"
  4. . "$HOME/.tweepy.conf"
  5. . "$NOAA_HOME/common.sh"
  6. SYSTEM_MEMORY=$(free -m | awk '/^Mem:/{print $2}')
  7. if [ "$SYSTEM_MEMORY" -lt 2000 ]; then
  8. log "The system doesn't have enough space to store a Meteor pass on RAM" "INFO"
  9. RAMFS_AUDIO="${METEOR_OUTPUT}"
  10. fi
  11. if [ "$FLIP_METEOR_IMG" == "true" ]; then
  12. log "I'll flip this image pass because FLIP_METEOR_IMG is set to true" "INFO"
  13. FLIP="-rotate 180"
  14. else
  15. FLIP=""
  16. fi
  17. ## pass start timestamp and sun elevation
  18. PASS_START=$(expr "$5" + 90)
  19. SUN_ELEV=$(python3 "$NOAA_HOME"/sun.py "$PASS_START")
  20. if pgrep "rtl_fm" > /dev/null
  21. then
  22. log "There is an already running rtl_fm instance but I dont care for now, I prefer this pass" "INFO"
  23. pkill -9 -f rtl_fm
  24. fi
  25. # $1 = Satellite Name
  26. # $2 = Frequency
  27. # $3 = FileName base
  28. # $4 = TLE File
  29. # $5 = EPOC start time
  30. # $6 = Time to capture
  31. # $7 = Satellite max elevation
  32. log "Starting rtl_fm record" "INFO"
  33. timeout "${6}" /usr/local/bin/rtl_fm ${BIAS_TEE} -M raw -f "${2}"M -s 288k -g 48 | sox -t raw -r 288k -c 2 -b 16 -e s - -t wav "${RAMFS_AUDIO}/audio/${3}.wav" rate 96k
  34. log "Normalization in progress" "INFO"
  35. sox "${RAMFS_AUDIO}/audio/${3}.wav" "${METEOR_OUTPUT}/${3}.wav" gain -n
  36. log "Demodulation in progress (QPSK)" "INFO"
  37. meteor_demod -B -o "${METEOR_OUTPUT}/${3}.qpsk" "${METEOR_OUTPUT}/${3}.wav"
  38. if [ "$DELETE_AUDIO" = true ]; then
  39. log "Deleting audio files" "INFO"
  40. rm "${METEOR_OUTPUT}/audio/${3}.wav"
  41. rm "${RAMFS_AUDIO}/audio/${3}.wav"
  42. fi
  43. log "Decoding in progress (QPSK to BMP)" "INFO"
  44. medet_arm "${METEOR_OUTPUT}/${3}.qpsk" "${METEOR_OUTPUT}/${3}" -cd
  45. rm "${METEOR_OUTPUT}/${3}.qpsk"
  46. if [ -f "${METEOR_OUTPUT}/${3}.dec" ]; then
  47. if [ "${SUN_ELEV}" -lt "${SUN_MIN_ELEV}" ]; then
  48. log "I got a successful ${3}.dec file. Decoding APID 68" "INFO"
  49. medet_arm "${METEOR_OUTPUT}/${3}.dec" "${NOAA_OUTPUT}/image/${FOLDER_DATE}/${3}-122" -r 68 -g 68 -b 68 -d
  50. /usr/bin/convert -negate $FLIP "${NOAA_OUTPUT}/image/${FOLDER_DATE}/${3}-122.bmp" "${NOAA_OUTPUT}/image/${FOLDER_DATE}/${3}-122.bmp"
  51. else
  52. log "I got a successful ${3}.dec file. Creating false color image" "INFO"
  53. medet_arm "${METEOR_OUTPUT}/${3}.dec" "${NOAA_OUTPUT}/image/${FOLDER_DATE}/${3}-122" -r 65 -g 65 -b 64 -d
  54. fi
  55. log "Rectifying image to adjust aspect ratio" "INFO"
  56. python3 "${NOAA_HOME}/rectify.py" "${NOAA_OUTPUT}/image/${FOLDER_DATE}/${3}-122.bmp"
  57. convert "${NOAA_OUTPUT}/image/${FOLDER_DATE}/${3}-122-rectified.jpg" -channel rgb -normalize -channel rgb -normalize -undercolor black -fill yellow -pointsize 60 -annotate +20+60 "${1} ${START_DATE} Elev: $7°" "${NOAA_OUTPUT}/image/${FOLDER_DATE}/${3}-122-rectified.jpg"
  58. rm "${METEOR_OUTPUT}/${3}.bmp"
  59. rm "${METEOR_OUTPUT}/${3}-122.bmp"
  60. if [ -n "$CONSUMER_KEY" ]; then
  61. log "Posting to Twitter" "INFO"
  62. python3 "${NOAA_HOME}/post.py" "$1 EXPERIMENTAL ${START_DATE} Resolución completa: http://weather.reyni.co/image/${FOLDER_DATE}/${3}-122-rectified.jpg" "$7" "${NOAA_OUTPUT}/image/${FOLDER_DATE}/${3}-122-rectified.jpg"
  63. fi
  64. else
  65. log "Decoding failed, either a bad pass/low SNR or a software problem" "ERROR"
  66. fi