first release of ASOTR data parser (flight)

This commit is contained in:
Danila Gamkov
2025-04-23 19:05:48 +03:00
commit d6fedaa48b
10 changed files with 1216 additions and 0 deletions

19
plot_flight_borders.sh Executable file
View File

@@ -0,0 +1,19 @@
#! /bin/bash
if [ $# != 2 ]
then
echo "erorr use $0. Right use this script: "
echo "$0 25.02.2025 10.03.2025"
else
begin=$1
end=$2
python3 plot_flight_borders.py -c 111100 -a 01 -b ${begin} -e ${end}
python3 plot_flight_borders.py -c 001000 -a 01 -b ${begin} -e ${end}
python3 plot_flight_borders.py -c 000011 -a 01 -b ${begin} -e ${end}
python3 plot_flight_borders.py -c 111100 -a 02 -b ${begin} -e ${end}
python3 plot_flight_borders.py -c 010100 -a 02 -b ${begin} -e ${end}
python3 plot_flight_borders.py -c 010000 -a 02 -b ${begin} -e ${end}
python3 plot_flight_borders.py -c 000100 -a 02 -b ${begin} -e ${end}
python3 plot_flight_borders.py -c 000011 -a 02 -b ${begin} -e ${end}
fi