OOPS
qg/tasks/getBackground.py
Go to the documentation of this file.
1 import os
2 import yaml
3 
4 class getBackground(Task):
5 
6  # Need to register in task factory
7 
8  def setup(self, config, bg, obslist):
9  bgconf = {}
10  bgconf['date'] = '{{current_cycle}}'
11  bgfile = os.path.join(config['datadir'],
12  '{{current_cycle}}',
13  'forecast.{{previous_cycle}}.{{window_offset}}')
14  bgconf['filename'] = bgfile
15 
16  fnameout = config['workdir']/ewok/background.yaml
17  yaml.dump(bgconf, fnameout)
18 
19  self.commandcommand = 'path/to/actual/runtime/qg/getbg.py'
20  self.yamlargyamlarg = fnameout
21 
22  return bgconf
def setup(self, config, bg, obslist)