Skip to content

Commit

Permalink
switch back periods fro t, p, rh t 2 hours in persistence_qc
Browse files Browse the repository at this point in the history
  • Loading branch information
BaptisteVandecrux committed May 13, 2024
1 parent 00666bb commit 0ad2d31
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pypromice/qc/persistence.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@

# period is given in hours, 2 persistent 10 min values will be flagged if period < 0.333
DEFAULT_VARIABLE_THRESHOLDS = {
"t": {"max_diff": 0.0001, "period": 0.3},
"p": {"max_diff": 0.0001, "period": 0.3},
"t": {"max_diff": 0.0001, "period": 2},
"p": {"max_diff": 0.0001, "period": 2},
'gps_lat_lon':{"max_diff": 0.000001, "period": 6}, # gets special handling to remove simultaneously constant gps_lat and gps_lon
'gps_alt':{"max_diff": 0.0001, "period": 6},
't_rad':{"max_diff": 0.0001, "period": 0.3},
"rh": {"max_diff": 0.0001, "period": 0.3}, # gets special handling to allow constant 100%
't_rad':{"max_diff": 0.0001, "period": 2},
"rh": {"max_diff": 0.0001, "period": 2}, # gets special handling to allow constant 100%
"wspd": {"max_diff": 0.0001, "period": 6},
}

Expand Down

0 comments on commit 0ad2d31

Please sign in to comment.