Skip to content

Commit

Permalink
Merge pull request #8 from henrykironde/bug-import
Browse files Browse the repository at this point in the history
Add import and update output path
  • Loading branch information
henrykironde authored May 8, 2024
2 parents 51859bf + 3feb32c commit 2e6fceb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion combine_bird_predictions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import sys
import shutil
from zipfile import ZIP_DEFLATED
from zipfile import ZipFile
import geopandas
Expand All @@ -19,7 +20,7 @@ def combine(paths):
if __name__ == "__main__":
working_dir = tools.get_working_dir()
predictions_path = f"{working_dir}/predictions/"
output_path = f"{working_dir}/EvergladesTools/App/Zooniverse/data"
output_path = f"{working_dir}/everwatch-workflow/App/Zooniverse/data"
output_zip = os.path.join(output_path, "PredictedBirds.zip")

predictions = sys.argv[1:]
Expand Down

0 comments on commit 2e6fceb

Please sign in to comment.