asotr_flight/plot_flight_borders.sh
2025-04-23 19:05:48 +03:00

20 lines
700 B
Bash
Executable File

#! /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