-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake_banner.sh
executable file
·20 lines (16 loc) · 1.7 KB
/
make_banner.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
INPUT_PATH="../cave_maps/input_3d"
OUTPUT_PATH="../cave_maps/output"
SCALE="--scale_factor 40"
echo "BOUNDING BOX"
BOUNDING_BOX=$(python3 ./find_bounding_box.py $SCALE $INPUT_PATH/Agate-Hardee_3Dpas.zip $INPUT_PATH/PotSpring_3Dpas.zip $INPUT_PATH/MBSP_3Dpas.zip $INPUT_PATH/'M2 Blue Cave_3Dpas.zip' $INPUT_PATH/'M2 Blue Cave_3Dpas.zip' $INPUT_PATH/'Little Otter Sink_3Dpas.zip')
echo "Making Withlacoochee banner"
mkdir -p $OUTPUT_PATH/banner
python3 ./spelunca.py --width 33.7 --height 81.34 $SCALE --set_bounding_box $BOUNDING_BOX -o $OUTPUT_PATH/banner/hardee_banner.svg $INPUT_PATH/Agate-Hardee_3Dpas.zip
python3 ./spelunca.py --width 33.7 --height 81.34 $SCALE --set_bounding_box $BOUNDING_BOX -o $OUTPUT_PATH/banner/madison_banner.svg $INPUT_PATH/MBSP_3Dpas.zip
python3 ./spelunca.py --width 33.7 --height 81.34 $SCALE --set_bounding_box $BOUNDING_BOX -o $OUTPUT_PATH/banner/M2_banner.svg $INPUT_PATH/'M2 Blue Cave_3Dpas.zip'
python3 ./spelunca.py --width 33.7 --height 81.34 $SCALE --set_bounding_box $BOUNDING_BOX -o $OUTPUT_PATH/banner/pot_banner.svg $INPUT_PATH/PotSpring_3Dpas.zip
python3 ./spelunca.py --width 33.7 --height 81.34 $SCALE --set_bounding_box $BOUNDING_BOX -o $OUTPUT_PATH/banner/little_coochee_banner.svg $INPUT_PATH/'little coochie_3Dpas.zip'
python3 ./spelunca.py --width 33.7 --height 81.34 $SCALE --set_bounding_box $BOUNDING_BOX -o $OUTPUT_PATH/banner/little_otter_banner.svg $INPUT_PATH/'Little Otter Sink_3Dpas.zip'
python3 ./spelunca.py --width 33.7 --height 81.34 $SCALE --set_bounding_box $BOUNDING_BOX -o $OUTPUT_PATH/banner/davids_disappointment_banner.svg $INPUT_PATH/DavidsDisappointment_3Dpas.zip
echo ""