From 6fd429d70649860ce8fded4198a5462b59cb9723 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 7 Jun 2021 11:57:57 -0500 Subject: [PATCH] minor --- modules/aeolus/datasource.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/modules/aeolus/datasource.py b/modules/aeolus/datasource.py index 74c72b7f..b47331ec 100644 --- a/modules/aeolus/datasource.py +++ b/modules/aeolus/datasource.py @@ -43,10 +43,12 @@ class Files: return self.flist[k], self.ftimes[k, 0], k - def get_file(self, timestamp): + def get_file(self, timestamp, window=None): + if window is None: + window = self.span_seconds diff = self.ftimes[:, 0] - timestamp midx = np.argmin(np.abs(diff)) - if np.abs(self.ftimes[midx, 0] - timestamp) < self.span_seconds: + if np.abs(self.ftimes[midx, 0] - timestamp) < window: return self.flist[midx], self.ftimes[midx, 0], midx else: return None, None, None @@ -151,10 +153,12 @@ class AMVFiles: return self.flist[k], self.ftimes[k, 0], k - def get_file(self, timestamp): + def get_file(self, timestamp, window=None): + if window is None: + window = self.span_seconds diff = self.ftimes[:, 0] - timestamp midx = np.argmin(np.abs(diff)) - if np.abs(self.ftimes[midx, 0] - timestamp) < self.span_seconds: + if np.abs(self.ftimes[midx, 0] - timestamp) < window: return self.flist[midx], self.ftimes[midx, 0], midx else: return None, None, None -- GitLab