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

Merge pull request #46 from hasimpson-usgs/xy

Added X and Y to edge channel codes.
parents 3a10e423 b022f165
No related branches found
No related tags found
No related merge requests found
......@@ -348,6 +348,10 @@ class EdgeFactory(TimeseriesFactory):
edge_channel = edge_interval_code + 'VZ'
elif channel == 'G':
edge_channel = edge_interval_code + 'SG'
elif channel == 'X':
edge_channel = edge_interval_code + 'VX'
elif channel == 'Y':
edge_channel = edge_interval_code + 'VY'
else:
raise TimeseriesFactoryException(
'Unexpected channel code "%s"' % 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