"Vector 1-second values are computed from 0.1-second values using the INTERMAGNET blackman filter centered on the second. Scalar 1-second values are computed from 0.1-second values using the INTERMAGNET blackman filter centered on the second. "
"Vector 1-minute values are computed from 1-second values using the INTERMAGNET gaussian filter centered on the minute. Scalar 1-minute values are computed from 1-second values using the INTERMAGNET gaussian filter centered on the minute. "
],
},
{# one minute to one hour filter
"name":"One Hour",
"data_interval":"hour",
"data_interval_type":"filtered 1-hour",
"input_sample_period":60.0,
"output_sample_period":3600.0,
"window":sps.windows.boxcar(60),
"type":"average",
"filter_comments":[
"Vector 1-hour values are computed from 1-minute values using a boxcar filter centered on the nearest half-hour. Scalar 1-hour values are computed from 1-minute values using a boxcar filter centered on the nearest half-hour. "
],
},
{# one minute to one hour filter
"name":"One Day",
"data_interval":"day",
"data_interval_type":"filtered 1-Day",
"input_sample_period":60.0,
"output_sample_period":86400,
"window":sps.windows.boxcar(1440),
"type":"average",
"filter_comments":[
"Vector 1-day values are computed from 1-minute values using a boxcar filter centered on the nearest half-day. Scalar 1-day values are computed from 1-minute values using a boxcar filter centered on the nearest half-day. "
],
},
]
...
...
@@ -129,6 +149,13 @@ class FilterAlgorithm(Algorithm):