Skip to content
Snippets Groups Projects
Commit 7fea7947 authored by Jeremy M Fee's avatar Jeremy M Fee
Browse files

Update docstring for EdgeFactory constructor.

parent 94558c18
No related branches found
No related tags found
No related merge requests found
......@@ -34,9 +34,9 @@ class EdgeFactory(TimeseriesFactory):
observatory: str
the observatory code for the desired observatory.
channels: array
an array of channels {H, D, E, F, Z, MGD, MSD, HGD}
any channel name will get passed through. H, D, E, F, Z
will be converted according to interval and type.
an array of channels {H, D, E, F, Z, MGD, MSD, HGD}.
Known since channel names are mapped based on interval and type,
others are passed through, see #_get_edge_channel().
type: str
the data type {variation, quasi-definitive, definitive}
interval: str
......@@ -355,12 +355,6 @@ class EdgeFactory(TimeseriesFactory):
edge_channel = edge_interval_code + 'VX'
elif channel == 'Y':
edge_channel = edge_interval_code + 'VY'
elif channel == 'MSD':
edge_channel = 'MSD'
elif channel == 'MGD':
edge_channel = 'MGD'
elif channel == 'HGD':
edge_channel = 'HGD'
else:
edge_channel = channel
return edge_channel
......
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