project reorganization: 1. executable files in bin directory now. 2. add recursive_unpack_targz.py for recursive unpacking specified in this script archives tar.gz with MVN data. 3. add asotr_unzip_plot.sh bash file for unpacking MVN data, collect asotr data into csv files and plot asotr MVN data. 4. add brd_wheel_1Hz_parser.py for demonstrate how to work with brd telemetry data
This commit is contained in:
16
asotr_csv/asotr_all_unzip_auto.sh
Normal file
16
asotr_csv/asotr_all_unzip_auto.sh
Normal file
@@ -0,0 +1,16 @@
|
||||
#! /bin/bash
|
||||
|
||||
if [ $# != 1 ]
|
||||
then
|
||||
echo "erorr use $0. Right use this script: "
|
||||
echo "$0 path"
|
||||
else
|
||||
cp ../asotr_csv/target/release/asotr_csv ../data/asotr
|
||||
path_=$1
|
||||
find ${path_} -maxdepth 1 -type d | xargs -I {} ./asotr_unzip.sh {}
|
||||
|
||||
cd ../data/asotr
|
||||
./asotr_csv -d ${path_}
|
||||
|
||||
python3 ../../bin/plot_asotr_flight_all.py
|
||||
fi
|
Reference in New Issue
Block a user