Skip to content
Snippets Groups Projects
Commit aeee2006 authored by Cain, Payton David's avatar Cain, Payton David
Browse files

Match interval names between algorithms and RawInputClient

parent 55c37dea
No related branches found
No related tags found
2 merge requests!146Release CMO metadata to production,!31Update intervals for Timeseries factories
This commit is part of merge request !31. Comments created here will be created in the context of that merge request.
...@@ -181,11 +181,11 @@ class RawInputClient: ...@@ -181,11 +181,11 @@ class RawInputClient:
nsamp = DAYMINUTES nsamp = DAYMINUTES
timeoffset = 60 timeoffset = 60
samplerate = 1.0 / 60 samplerate = 1.0 / 60
elif interval == "hourly": elif interval == "hour":
nsamp = MAXINPUTSIZE nsamp = MAXINPUTSIZE
timeoffset = 3600 timeoffset = 3600
samplerate = 1.0 / 3600 samplerate = 1.0 / 3600
elif interval == "daily": elif interval == "day":
nsamp = MAXINPUTSIZE nsamp = MAXINPUTSIZE
timeoffset = 86400 timeoffset = 86400
samplerate = 1.0 / 86400 samplerate = 1.0 / 86400
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment