Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ecmwf daily scheduled job #8

Merged
merged 11 commits into from
Sep 8, 2023
Prev Previous commit
Next Next commit
dwd_base_path
  • Loading branch information
devsjc committed Sep 8, 2023
commit 096f4dfd5e2bafce0de8a26783b3c8917d480183
4 changes: 2 additions & 2 deletions nwp/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ def build_config_on_runtime(model, run, delay=0):
config = IconConfig(model=model,
run=run,
delay=delay,
folder=f"{base_path}/{'ICON_Global' if model == 'global' else 'ICON_EU'}/{run}",
zarr_path=f"{base_path}/{'ICON_Global' if model == 'global' else 'ICON_EU'}/{run}/{run}.zarr.zip")
folder=f"{dwd_base_path}/{'ICON_Global' if model == 'global' else 'ICON_EU'}/{run}",
zarr_path=f"{dwd_base_path}/{'ICON_Global' if model == 'global' else 'ICON_EU'}/{run}/{run}.zarr.zip")
config_dict = {"delay": config.delay, "folder": config.folder, "model": config.model, "run": config.run,
"zarr_path": config.zarr_path}
return config_dict
Expand Down
Loading