#!/bin/bash #render_options=("ZA" "HVCT" "NO") render_options=("BD" "HVCT" "MCIR") render_options_night=("HVCT" "MCIR") direction=${f:(-7):(-6)} echo $1 #remove the directory structure from the first argument f1="${1:0:(-4)}" file="${f1#'tmp/'}" #Isolate data values from filename file should begin with YYYYMMDD-HHMM dyear=${file:(0):(4)} dmonth=${file:(4):(2)} dday=${file:(6):(2)} dhour=${file:(9):(2)} dminute=${file:(11):(2)} #Convert file date to unix timestamp, probably don't have to do this but I am. unixtimestamp=$(date --date="${dyear}/${dmonth}/${dday} ${dhour}:${dminute}" +%s) #Debug, make sure the file stripper works echo "${dyear}/${dmonth}/${dday} ${dhour}:${dminute} /" $unixtimestamp #Render options for all NOAA satellites in orbit #Put a big cross on receiver's location #-gRSCFH are for turning on/off the overlays such as long/lat, cities, lakes, borders, etc. #-H selects the TLE file #-o is when the satellite is overhead forward one minute from the filename just to ensure that the predictor wxmap uses agrees with the pypredict predictor #wxmap -T "NOAA 15" -T "NOAA 18" -T "NOAA 19" -n "Vancouver,Canada" -c l:0xff000 -g 0 -R 0 -S 1 -C 1 -F 0 -H ~/satellites/weather.txt -o $(($unixtimestamp+60)) /tmp/passmap.png #If pass is at night time render differently for daytime. if [[ ${dhour#0} -le 8 ]] || [[ ${dhour#0} -ge 17 ]] #the funny code is to ensure things are translated into base 10. then echo "Pass is at night" for r in "${render_options_night[@]}" do echo "Now rendering option: ${r}" wxtoimg -e $r -oK /home/space/satstuff/Pi_WXRX/tmp/$file.wav /var/www/html/APT/$file"_${r}".png wxtoimg -p /home/space/satstuff/Pi_WXRX/tmp/$file.wav /var/www/html/APT/$file"_pristine".png wxtoimg -r /home/space/satstuff/Pi_WXRX/tmp/$file.wav /var/www/html/APT/$file"_raw".png done else echo "Pass is in sun" for r in "${render_options[@]}" do echo "Now rendering option: ${r}" wxtoimg -e $r -oK /home/space/satstuff/Pi_WXRX/tmp/$file.wav /var/www/html/APT/$file"_${r}".png wxtoimg -p /home/space/satstuff/Pi_WXRX/tmp/$file.wav /var/www/html/APT/$file"_pristine".png wxtoimg -r /home/space/satstuff/Pi_WXRX/tmp/$file.wav /var/www/html/APT/$file"_raw".png done fi #Upload. #bash ~/satellites/ftp.sh /tmp/$file"_${r}".png