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 17, 2024
1 parent 1860578 commit de95ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lisfloodutilities/gridding/decumulate_daily_grids.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ def main(argv):

for filename_kiwis, kiwis_timestamp in kiwis_24h_paths:
kiwis_24h_06am_path = get_existing_file_path(parser, str(filename_kiwis))
print_msg(f"Daily PR kiwis file: {kiwis_24h_06am_path}")
kiwis_6h_06am_timestamp = kiwis_timestamp
kiwis_6h_12am_timestamp = kiwis_timestamp - timedelta(hours=6)
kiwis_6h_18pm_timestamp = kiwis_timestamp - timedelta(hours=12)
Expand All @@ -372,7 +373,6 @@ 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"Daily PR kiwis file: {kiwis_24h_06am_path}")
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}")
Expand Down

0 comments on commit de95ba9

Please sign in to comment.