From a3ddce480f855bd12a0cee8d18be44610e41b55b Mon Sep 17 00:00:00 2001 From: ehpersonal38 <103586016+ehpersonal38@users.noreply.github.com> Date: Fri, 1 Jul 2022 11:21:23 -0400 Subject: [PATCH] redact lat/lon in view logs can't see why this needs to be visible in logs to everyone, do revert if you disagree --- scripts/birdnet_analysis.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/birdnet_analysis.sh b/scripts/birdnet_analysis.sh index 4fbab51..1827fd9 100755 --- a/scripts/birdnet_analysis.sh +++ b/scripts/birdnet_analysis.sh @@ -131,8 +131,8 @@ run_analysis() { echo $PYTHON_VIRTUAL_ENV "$DIR\analyze.py" \ --i "${1}/${i}" \ --o "${1}/${i}.csv" \ ---lat "${LATITUDE}" \ ---lon "${LONGITUDE}" \ +--lat $(echo "${LATITUDE}" | awk '{print int($1+0.5)}').XX \ +--lon $(echo "${LONGITUDE}" | awk '{print int($1+0.5)}').XX \ --week "${WEEK}" \ --overlap "${OVERLAP}" \ --sensitivity "${SENSITIVITY}" \