Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions parm/marine_bufr_dump_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ marinebufrdump:
data_description: 6-hrly in situ Bathythermal profiles
data_provider: U.S. NOAA
dump_tag: bathy
window:
back: 4
forward: 4

- name: insitu_profile_glider
variables:
Expand All @@ -50,6 +53,9 @@ marinebufrdump:
data_description: 6-hrly in situ GLIDER profiles
data_provider: U.S. NOAA
dump_tag: subpfl
window:
back: 4
forward: 4

- name: insitu_profile_tesac
variables:
Expand All @@ -66,6 +72,9 @@ marinebufrdump:
data_description: 6-hrly in situ TESAC profiles
data_provider: U.S. NOAA
dump_tag: tesac
window:
back: 4
forward: 4

- name: insitu_profile_rama
variables:
Expand Down Expand Up @@ -130,6 +139,9 @@ marinebufrdump:
data_description: 6-hrly in situ XBT/XCTD profiles
data_provider: U.S. NOAA
dump_tag: xbtctd
window:
back: 4
forward: 4

- name: insitu_surface_dbuoyb_drifter
variables:
Expand Down
1 change: 1 addition & 0 deletions ush/python/pyobsforge/task/marine_bufr_prepobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ def initialize(self) -> None:
'window begin': self.task_config['window_begin'],
'window end': self.task_config['window_end'],
'variable': variable['name'],
# Ratio below is for concatenation only
'error ratio': 0.4,
'input files': ioda_files_to_concat,
'output file': f"{RUN}.t{cycstr}z.{provider_var}.{self.task_config.yyyymmdd}{cycstr}.concat.nc",
Expand Down
Loading