Skip to content
Snippets Groups Projects

Update intervals for Timeseries factories

1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -181,11 +181,11 @@ class RawInputClient:
nsamp = DAYMINUTES
timeoffset = 60
samplerate = 1.0 / 60
elif interval == "hourly":
elif interval == "hour":
nsamp = MAXINPUTSIZE
timeoffset = 3600
samplerate = 1.0 / 3600
elif interval == "daily":
elif interval == "day":
nsamp = MAXINPUTSIZE
timeoffset = 86400
samplerate = 1.0 / 86400
Loading