From db9b6bda145cf29995ba8d8045382bb3a2b4e167 Mon Sep 17 00:00:00 2001 From: Hal Simpson <hasimpson@usgs.gov> Date: Fri, 12 Feb 2016 00:36:58 -0700 Subject: [PATCH] Added some debug checkprint I'm using in production. Changed the starttime to subtract 2200 seconds, seems to work better --- geomagio/imfv283/GOESIMFV283Factory.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/geomagio/imfv283/GOESIMFV283Factory.py b/geomagio/imfv283/GOESIMFV283Factory.py index 9529d2dcf..58d2ab6d9 100644 --- a/geomagio/imfv283/GOESIMFV283Factory.py +++ b/geomagio/imfv283/GOESIMFV283Factory.py @@ -77,6 +77,10 @@ class GOESIMFV283Factory(IMFV283Factory): self._post_process(timeseries) if observatory is not None: timeseries = timeseries.select(station=observatory) + + #DEBUG + print timeseries + return timeseries def _retrieve_goes_messages(self, starttime, endtime, observatory): @@ -154,7 +158,7 @@ class GOESIMFV283Factory(IMFV283Factory): ASCENDING_TIME: Do Not sort messages into ascending time. RT_SETTLE_DELAY: Do wait to prevent duplicate messages. """ - start = starttime - 1800 + start = starttime - 2200 end = endtime + 1800 criteria_file = self.directory + '/' + self.criteria_file_name -- GitLab