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

The gross check is missing for the q observations from the rawinsonde #431

Draft
wants to merge 3 commits into
base: develop
Choose a base branch
from
Draft
Changes from 1 commit
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
Expand Up @@ -261,6 +261,7 @@ obs post filters:
adjusted_error_name: GsiAdjustObsError
geovar_sfc_geomz: surface_geometric_height
defer to post: true

# assign TempObsErrorData/stationPressure <--- ObsErrorData
- filter: Variable Assignment
assignments:
Expand All @@ -273,6 +274,29 @@ obs post filters:
- name: ObsErrorData/specificHumidity
defer to post: true

# Background check
- filter: Background Check
filter variables:
- name: specificHumidity
threshold: 8.0
action:
name: reject
where:
- variable: PreQC/specificHumidity
is_not_in: [3]
defer to post: true
# threshold * 0.7 if PreQC=3
- filter: Background Check
filter variables:
- name: specificHumidity
threshold: 5.6
action:
name: reject
where:
- variable: PreQC/specificHumidity
is_in: [3]
defer to post: true

# Duplicate factor
- filter: Perform Action
filter variables:
Expand Down
Loading