Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changing output to a class #815

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/troute-nwm/src/nwm_routing/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
nwm_forcing_preprocess,
unpack_nwm_preprocess_data,
)
from .output import nwm_output_generator
from .output import NWMOutputGenerator
from .log_level_set import log_level_set
from troute.routing.compute import compute_nhd_routing_v02, compute_diffusive_routing, compute_log_mc, compute_log_diff

Expand Down Expand Up @@ -298,7 +298,7 @@ def main_v04(argv):
output_start_time = time.time()

#TODO Update this to work with either network type...
nwm_output_generator(
nwm_output = NWMOutputGenerator(
run,
run_results,
supernetwork_parameters,
Expand Down Expand Up @@ -1797,7 +1797,7 @@ def main_v03(argv):

duplicate_ids_df = pd.DataFrame()

nwm_output_generator(
nwm_output = NWMOutputGenerator(
run,
run_results,
supernetwork_parameters,
Expand Down
Loading
Loading