We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43ca2a1 commit 7845732Copy full SHA for 7845732
gencast_fp/postprocess/gencast_cf.py
@@ -214,9 +214,12 @@ def run_postprocess_day(
214
D = date.day
215
H = date.hour
216
217
- out_day = Path(
218
- post_out_dir) / f"Y{Y:04d}" / f"M{M:02d}" / f"D{D:02d}"
+ # setup output directory
+ out_day = \
219
+ Path(post_out_dir) / f"Y{Y:04d}" / \
220
+ f"M{M:02d}" / f"D{D:02d}" / f"T{H:02d}"
221
222
+ # make output directory
223
out_day.mkdir(parents=True, exist_ok=True)
224
225
# Initial conditions (first two steps)
0 commit comments