From 9c9537f1713ab952724fe71ec4cd212d6cb8681e Mon Sep 17 00:00:00 2001 From: Patrick McGuire Date: Mon, 29 Nov 2021 13:10:34 -0500 Subject: [PATCH] added station number pieces to birdnet_analysis --- scripts/birdnet_analysis.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/birdnet_analysis.sh b/scripts/birdnet_analysis.sh index 7d5d60b..178f0dd 100755 --- a/scripts/birdnet_analysis.sh +++ b/scripts/birdnet_analysis.sh @@ -152,7 +152,7 @@ run_analysis() { --overlap "${OVERLAP}" \ --sensitivity "${SENSITIVITY}" \ --min_conf "${CONFIDENCE}" \ ---s "${STATION_NUMBER}"\ +--s "${STATION_NUMBER}" \ --meta_data "${STATION_NAME}"" "${VENV}"/bin/python analyze.py \ --i "${1}/${i}" \ @@ -163,7 +163,7 @@ run_analysis() { --overlap "${OVERLAP}" \ --sensitivity "${SENSITIVITY}" \ --min_conf "${CONFIDENCE}" \ - --s "${STATION_NUMBER}"\ + --s "${STATION_NUMBER}" \ --meta_data "${STATION_NAME}" elif [ -f ${1}/${i} ] && [ -f ${CUSTOM_LIST} ] && [ ! -z $STATION_NUMBER ];then echo "python3 analyze.py \ @@ -176,7 +176,7 @@ run_analysis() { --sensitivity "${SENSITIVITY}" \ --min_conf "${CONFIDENCE}" \ --custom_list "${CUSTOM_LIST}"\ ---s "${STATION_NUMBER}"\ +--s "${STATION_NUMBER}" \ --meta_data "${STATION_NAME}"" "${VENV}"/bin/python analyze.py \ --i "${1}/${i}" \ @@ -187,8 +187,8 @@ run_analysis() { --overlap "${OVERLAP}" \ --sensitivity "${SENSITIVITY}" \ --min_conf "${CONFIDENCE}" \ - --custom_list "${CUSTOM_LIST}"\ - --s "${STATION_NUMBER}"\ + --custom_list "${CUSTOM_LIST}" \ + --s "${STATION_NUMBER}" \ --meta_data "${STATION_NAME}" fi done