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
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
obs space:
name: OMIEFF AURA
obsdatain:
engine:
type: H5File
obsfile: '{{cycle_dir}}/omieff_aura.{{window_begin}}.nc4'
missing file action: warn
obsdataout:
engine:
type: H5File
obsfile: '{{cycle_dir}}/{{experiment_id}}.omieff_aura.{{window_begin}}.nc4'
io pool:
max pool size: 6
simulated variables: [ozoneTotal]

obs operator:
name: AtmVertInterpLay
geovals: [mole_fraction_of_ozone_in_air]
coefficients: [0.0078976797] # convert from ppmv to DU (Wargan approved value)
nlevels: [1]
observation alias file: '{{experiment_root}}/{{experiment_id}}/configuration/jedi/interfaces/{{model_component}}/observations/obsop_name_map.yaml'

obs filters:
- filter: Perform Action
filter variables:
- name: ozoneTotal
action:
name: assign error
error parameter: 5.0
# range sanity check
- filter: Bounds Check
filter variables:
- name: ozoneTotal
minvalue: 0
maxvalue: 1000
action:
name: reject
# Reject SZA > 84
- filter: Bounds Check
filter variables:
- name: ozoneTotal
test variables:
- name: MetaData/solarZenithAngle
maxvalue: 84.
action:
name: reject
# Reject rows 25+ (somewhat stringent but thats what we do in GEOS)
- filter: Bounds Check
filter variables:
- name: ozoneTotal
test variables:
- name: MetaData/sensorScanPosition
minvalue: 3
maxvalue: 24
action:
name: reject

# Gross check
- filter: Background Check
filter variables:
- name: ozoneTotal
threshold: 5.0
action:
name: reject
7 changes: 7 additions & 0 deletions src/swell/suites/convert_ncdiags/suite_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ class SuiteConfig(QuestionContainer, Enum):
"gsi_ncdiags"
]),
qd.observations([
"abi_n16",
"abi_n18",
"aircraft",
"airs_aqua",
"amsr2_gcom-w1",
Expand All @@ -54,11 +56,13 @@ class SuiteConfig(QuestionContainer, Enum):
"amsua_n18",
"amsua_n19",
"atms_n20",
"atms_n21",
"atms_npp",
"avhrr3_metop-b",
"avhrr3_n18",
"avhrr3_n19",
"cris-fsr_n20",
"cris-fsr_n21",
"cris-fsr_npp",
"gmi_gpm",
"gps",
Expand All @@ -69,6 +73,9 @@ class SuiteConfig(QuestionContainer, Enum):
"mhs_n19",
"mls55_aura",
"omi_aura",
"omieff_aura",
"ompslpnc_n21",
"ompslpnc_npp",
"ompsnm_npp",
"pibal",
"satwind",
Expand Down
Loading