We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7046cd5 commit 1ab1532Copy full SHA for 1ab1532
ngen_forcing/test_process_nwm_forcing_to_ngen.py
@@ -114,15 +114,15 @@ def main():
114
115
# This way is extremely slow for anything more than a
116
# few files, so we comment it out of the test
117
- # start_time = time.time()
118
- # print(f"Working on the original way")
119
- # forcing_dict = get_forcing_dict(
120
- # gpkg_subset,
121
- # folder_prefix,
122
- # file_list,
123
- # var_list,
124
- # )
125
- # print(time.time() - start_time)
+ breakpoint()
+ start_time = time.time()
+ get_forcing_dict(
+ gpkg_subset,
+ folder_prefix,
+ file_list,
+ var_list,
+ )
+ print(time.time() - start_time)
126
127
start_time = time.time()
128
print(f"Working on the new way")
0 commit comments