2.5 - Major refactor

This commit is contained in:
alex
2015-05-27 21:45:05 +01:00
parent d2233ddb43
commit 2364bbf6b9
51 changed files with 17014 additions and 19187 deletions

11
test.sh
View File

@@ -1,6 +1,6 @@
#!/bin/bash
mkdir test
RAD=10
RAD=5
MAXRAD=30
FRQ=800
ERP=20
@@ -11,6 +11,13 @@ while [ $RAD -lt $MAXRAD ]; do
convert test/$RAD.ppm test/$RAD.png
rm test/$RAD.ppm
rm test/$RAD.*cf
let RAD=RAD+5
echo "Calculating $FRQ MHz @ $ERP Watts for $RAD km radius (HD mode)..."
time ./signalserverHD -m -d /var/SRTM1 -lat 51.47 -lon -1.50 -txh 15 -gc 2 -rxh 2 -m -dbm -rt -120 -R $RAD -erp $ERP -f $FRQ -o test/$RAD.hd -pm 1 -res 3600 -t
convert test/$RAD.hd.ppm test/$RAD.hd.png
rm test/$RAD.hd.ppm
rm test/$RAD.*cf
let RAD=RAD+5
done