From be7dbcfab674cad524383b168dfc27ea088564b9 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Fri, 20 Nov 2020 14:57:07 -0600 Subject: [PATCH] snapshot... --- modules/util/gfs_reader.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/util/gfs_reader.py b/modules/util/gfs_reader.py index 0bc0785c..b4107744 100644 --- a/modules/util/gfs_reader.py +++ b/modules/util/gfs_reader.py @@ -71,6 +71,7 @@ def get_bounding_gfs_files(timestamp): farr = np.array(filelist) farr = farr[sidxs] ftimes = tarr[sidxs] + idxs = np.arange(len(filelist)) above = ftimes >= timestamp if not above.any(): @@ -82,7 +83,7 @@ def get_bounding_gfs_files(timestamp): return None, None, None, None tL = ftimes[below].max() - iL = np.searchsorted(ftimes, tL, 'left') + iL = idxs[below].max() iR = iL + 1 fList = farr.tolist() -- GitLab