From b319bb5ae054a0a2f72f26897aae6f04a5cd1a2c Mon Sep 17 00:00:00 2001 From: anthonyreinhart Date: Thu, 26 Jan 2012 17:27:26 -0600 Subject: [PATCH 1/2] Fixes for MGAUS missing data Added more qc values to remove bad points from the MGAUS soundings used for VORTEX2 data --- sharppy/sharptab/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharppy/sharptab/constants.py b/sharppy/sharptab/constants.py index 7d7fe67..59891f0 100644 --- a/sharppy/sharptab/constants.py +++ b/sharppy/sharptab/constants.py @@ -88,5 +88,5 @@ def QC(val): 1 if value is good 0 if value is bad ''' - if val < -998.0 or val > 2.0e5: return 0 + if val < -998.0 or val > 2.0e5 or val == 999.0 or val == 9999.0 or val == 999.000 or val == 9999.000 or val == 99999.0: return 0 return 1 From 286c877eac79c2b44f16ecedb9db48c39b7517aa Mon Sep 17 00:00:00 2001 From: anthonyreinhart Date: Thu, 26 Jan 2012 17:32:15 -0600 Subject: [PATCH 2/2] changed ignore list --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e2c9619..86fe6ad 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,6 @@ __git_version__.py *.pyc dist/* build/* -*egg-info/* \ No newline at end of file +*egg-info/* +.* +run_sharppy.py \ No newline at end of file