diff --git a/modules/aeolus/aeolus_amv.py b/modules/aeolus/aeolus_amv.py index 4312fa0693dbdcbd59b7d29dd901f0132b63db37..7fcab634706728374c14f55d90640412e2fd6e00 100644 --- a/modules/aeolus/aeolus_amv.py +++ b/modules/aeolus/aeolus_amv.py @@ -596,6 +596,7 @@ def analyze2(amvs, bfs, raob_match, bfs_gfs, amv_prod): # Comparison to Level of Best Fit (LBF) GFS ------------------------------------------------------------------ # ------------------------------------------------------------------------------------------------------------ + bfs_raob = bfs bfs = bfs_gfs vld_bf = bfs[:, 3] == 0 keep_idxs = vld_bf @@ -738,6 +739,7 @@ def analyze2(amvs, bfs, raob_match, bfs_gfs, amv_prod): # Comparison to Level of Best Fits (LBF) GFS to RAOB ------------------------------------------------------------------ # ------------------------------------------------------------------------------------------------------------ + bfs = bfs_raob vld_bf = bfs[:, 3] == 0 vld_bf_gfs = bfs_gfs[:, 3] == 0 keep_idxs = np.logical_and(vld_bf, vld_bf_gfs)