From e8be3e2f3c596027df73b6042d3ddf6d2c610528 Mon Sep 17 00:00:00 2001 From: Quinn Lee Date: Tue, 7 Apr 2026 09:47:30 -0500 Subject: [PATCH] add 1 hour to t0 --- src/forcingprocessor/troute_restart_tools.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/forcingprocessor/troute_restart_tools.py b/src/forcingprocessor/troute_restart_tools.py index 922f5d0..19ea3fe 100644 --- a/src/forcingprocessor/troute_restart_tools.py +++ b/src/forcingprocessor/troute_restart_tools.py @@ -217,7 +217,8 @@ def create_restart( }, coords={"links": range(len(result_df))}, attrs={ - "Restart_Time": pd.Timestamp(nwm_ds["time"].values[0]).strftime( + "Restart_Time": ( + pd.Timestamp(nwm_ds["time"].values[0]) + pd.Timedelta(hours=1)).strftime( "%Y-%m-%d_%H:%M:%S" ) },