From e0f9ddb8f3dfdbc1e5d0a65a87d06f09e3eae068 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Sat, 17 Oct 2020 12:28:44 -0500
Subject: [PATCH] snapshot...

---
 modules/amv/intercompare.py | 13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/modules/amv/intercompare.py b/modules/amv/intercompare.py
index 96ed24e5..7c2f13a7 100644
--- a/modules/amv/intercompare.py
+++ b/modules/amv/intercompare.py
@@ -1042,13 +1042,10 @@ def best_fit(amv_spd, amv_dir, amv_prs, amv_lat, amv_lon, fcst_spd, fcst_dir, fc
 
 
 def best_fit_altitude(amv_spd, amv_dir, amv_alt, amv_lat, amv_lon, fcst_spd, fcst_dir, fcst_alt,
-                      alt_top=25000.0, alt_bot=0.0):
+                      alt_top=25000.0, alt_bot=0.0, bf_half_width=500.0, constraint_half_width=400.0):
     verbose = False
     fcst_num_levels = fcst_spd.shape[0]
 
-    alt_diff = 1000.0
-    alt_diff_test = 500.0
-
     flag = 3
     bf_tup = (np.nan, np.nan, np.nan, flag)
     if amv_alt > alt_top:
@@ -1057,8 +1054,8 @@ def best_fit_altitude(amv_spd, amv_dir, amv_alt, amv_lat, amv_lon, fcst_spd, fcs
         return bf_tup
 
     # Calculate the height +/- alt_diff from the AMV height
-    alt_max = min((amv_alt + alt_diff), alt_top)
-    alt_min = max((amv_lat - alt_diff), alt_bot)
+    alt_max = min((amv_alt + bf_half_width), alt_top)
+    alt_min = max((amv_lat - bf_half_width), alt_bot)
 
     # 1d array of indices to consider for best fit height
     kk = np.where((fcst_alt > alt_min) & (fcst_alt < alt_max))
@@ -1135,8 +1132,8 @@ def best_fit_altitude(amv_spd, amv_dir, amv_alt, amv_lat, amv_lon, fcst_spd, fcs
         good_constraint = 0
         flag = 2
 
-    mm = np.where(fcst_alt > (sat_wind_best_fit_alt + alt_diff_test))[0]
-    nn = np.where(fcst_alt < (sat_wind_best_fit_alt - alt_diff_test))[0]
+    mm = np.where(fcst_alt > (sat_wind_best_fit_alt + constraint_half_width))[0]
+    nn = np.where(fcst_alt < (sat_wind_best_fit_alt - constraint_half_width))[0]
 
     if (np.sum(vec_diff[mm] < (vec_diff + 2.0)) + np.sum(vec_diff[nn] < (vec_diff + 2.0))) > 0:
         good_constraint = 0
-- 
GitLab