From c488d3ad74aef0f91931f7179334f27068db756e Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Sat, 4 Sep 2021 10:33:55 -0500 Subject: [PATCH] snapshot... --- modules/aeolus/datasource.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/aeolus/datasource.py b/modules/aeolus/datasource.py index 1263fdc3..c512ffb6 100644 --- a/modules/aeolus/datasource.py +++ b/modules/aeolus/datasource.py @@ -143,8 +143,9 @@ class CLAVRx_VIIRS(Files): def get_datetime(self, pathname): filename = os.path.split(pathname)[1] toks = filename.split('.') - so = re.search('\\d{11}', toks[4]) - dt_str = so.group() + # so = re.search('\\d{11}', toks[4]) + # dt_str = so.group() + dt_str = toks[1] + toks[2] dto = datetime.datetime.strptime(dt_str, '%Y%j%H%M').replace(tzinfo=timezone.utc) return dto -- GitLab