Refactor: 1. add print into console data, 2. rewrite CLI parsing, 4. the output format csv has been reworked. 5. Add information to README. For addition create python code for plot csv data

This commit is contained in:
Danila Gamkov
2025-01-29 13:47:36 +03:00
parent d3cf1281dd
commit b44fc029fc
10 changed files with 458 additions and 74 deletions

16
asotr_all_unzip_auto.sh Executable file
View File

@@ -0,0 +1,16 @@
#! /bin/bash
if [ $# != 1 ]
then
echo "erorr use $0. Right use this script: "
echo "$0 path"
else
cp ./target/release/asotr_csv ./data
path_=$1
find ${path_} -maxdepth 1 -type d | xargs -I {} ./asotr_unzip.sh {}
cd ./data
./asotr_csv -d ${path_}
python3 ./plot_flight_all.py
fi