From 1e54d0e52e2ad7eccc59c64817dd5c402d5d3527 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 3 Jul 2023 10:02:56 -0500 Subject: [PATCH] snapshot... --- modules/aeolus/datasource.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/aeolus/datasource.py b/modules/aeolus/datasource.py index ce0891e7..3dbcf702 100644 --- a/modules/aeolus/datasource.py +++ b/modules/aeolus/datasource.py @@ -149,8 +149,9 @@ class Files: fname = self.flist[self._current_index] t_start = self.ftimes[self._current_index, 0] t_stop = self.ftimes[self._current_index, 1] + dto = self.dto_s[self._current_index] self._current_index += 1 - return fname, t_start, t_stop + return fname, t_start, t_stop, dto self._current_index = 0 raise StopIteration -- GitLab