Skip to content

Commit

Permalink
catchup
Browse files Browse the repository at this point in the history
  • Loading branch information
sclaw committed Jul 29, 2024
1 parent 48246ff commit 8bfdb8b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions samples/basin_analysis/run_all_basinwide.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import os
import json
from muskingumcunge.controller import handler
import numpy as np

run_dir = r'/netfiles/ciroh/floodplainsData/retrospective/basin_run_files'
all_paths = [os.path.join(run_dir, f) for f in os.listdir(run_dir) if f.endswith('.json')]

for path in all_paths:
with open(path, 'r') as f:
dict = json.load(f)

handler(path)

0 comments on commit 8bfdb8b

Please sign in to comment.