From 706e8eef7cea093d54e068702a67c3636833d044 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Tue, 5 Jul 2022 16:33:55 -0500
Subject: [PATCH] minor...

---
 modules/amv/intercompare.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/amv/intercompare.py b/modules/amv/intercompare.py
index f976fb0f..5c393a3e 100644
--- a/modules/amv/intercompare.py
+++ b/modules/amv/intercompare.py
@@ -988,7 +988,7 @@ def best_fit(amv_spd, amv_dir, amv_prs, amv_lat, amv_lon, fcst_spd, fcst_dir, fc
     PressMin = max((amv_prs-PressDiff), TopPress)
 
 # 1d array of indicies to consider for best fit location
-    kk = np.where((fcst_prs<PressMax) & (fcst_prs>PressMin))
+    kk = np.where((fcst_prs < PressMax) & (fcst_prs > PressMin))
     if len(kk[0]) == 0:
         if verbose:
             print('AMV location lat,lon,prs ({0},{1},{2}) failed to find fcst prs around AMV'.format(amv_lat,amv_lon,amv_prs))
-- 
GitLab