Skip to content

Commit

Permalink
Change the order of printing on decumulation inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
gnrgomes committed Jun 18, 2024
1 parent de95ba9 commit 914df08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lisfloodutilities/gridding/decumulate_daily_grids.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,10 +373,10 @@ def main(argv):
kiwis_6h_18pm_path = get_6hourly_filepath(parser, conf_6h, kiwis_6h_folder_path, kiwis_6h_18pm_timestamp)
kiwis_6h_12pm_path = get_6hourly_filepath(parser, conf_6h, kiwis_6h_folder_path, kiwis_6h_12pm_timestamp)

print_msg(f"6hourly PR kiwis file 12:00: {kiwis_6h_12pm_path}")
print_msg(f"6hourly PR kiwis file 18:00: {kiwis_6h_18pm_path}")
print_msg(f"6hourly PR kiwis file 00:00: {kiwis_6h_12am_path}")
print_msg(f"6hourly PR kiwis file 06:00: {kiwis_6h_06am_path}")
print_msg(f"6hourly PR kiwis file 00:00: {kiwis_6h_12am_path}")
print_msg(f"6hourly PR kiwis file 18:00: {kiwis_6h_18pm_path}")
print_msg(f"6hourly PR kiwis file 12:00: {kiwis_6h_12pm_path}")

run(conf_24h, conf_6h, kiwis_24h_06am_path, kiwis_6h_12pm_path, kiwis_6h_18pm_path,
kiwis_6h_12am_path, kiwis_6h_06am_path, input_path_6h=kiwis_6h_folder_path, output_path=output_path)
Expand Down

0 comments on commit 914df08

Please sign in to comment.