Skip to content

Commit

Permalink
Merge branch 'config_yaml' of github.com:C2SM/processing-chain into c…
Browse files Browse the repository at this point in the history
…onfig_yaml
  • Loading branch information
mjaehn committed Sep 21, 2023
2 parents 8ecb842 + 4a15cf4 commit 33d80d7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions jobs/oem.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,12 @@ def main(starttime, hstart, hstop, cfg, model_cfg):
logging.info("Copying oem files from {} to {}".format(oem_dir, dest_dir))

if hod_tps:
tools.copy_file(oem_gridded_emissions_nc,
os.path.join(dest_dir, cfg.oem['gridded_emissions_nc']))
tools.copy_file(oem_vertical_profiles_nc,
os.path.join(dest_dir, cfg.oem['vertical_profiles_nc']))
tools.copy_file(
oem_gridded_emissions_nc,
os.path.join(dest_dir, cfg.oem['gridded_emissions_nc']))
tools.copy_file(
oem_vertical_profiles_nc,
os.path.join(dest_dir, cfg.oem['vertical_profiles_nc']))
tools.copy_file(oem_hourofday_nc,
os.path.join(dest_dir, cfg.oem['hourofday_nc']))
tools.copy_file(oem_dayofweek_nc,
Expand Down

0 comments on commit 33d80d7

Please sign in to comment.