Skip to content
Snippets Groups Projects
Commit b038e693 authored by Erin (Josh) Rigler's avatar Erin (Josh) Rigler
Browse files

Changes to Adjustedalgorithm_test module

It was necessary to explicitly set inchannels and outchannels when
instantiating the AdjustedAlgorithm class in unit tests after other
changes in this MR were made to remove the hard-coded default
inchannels and outchannels.
parent 24fa5d71
No related branches found
No related tags found
1 merge request!328Changes to AdjustedAlgorithm and AdjustedMatrix classes (and unit tests)
...@@ -54,7 +54,9 @@ def test_process_XYZF_AdjustedMatrix(): ...@@ -54,7 +54,9 @@ def test_process_XYZF_AdjustedMatrix():
[0, 0, 0, 1], [0, 0, 0, 1],
], ],
pier_correction=-22, pier_correction=-22,
) ),
inchannels=["H", "E", "Z", "F"],
outchannels=["X", "Y", "Z", "F"],
) )
# load boulder Jan 16 files from /etc/ directory # load boulder Jan 16 files from /etc/ directory
...@@ -114,7 +116,11 @@ def test_process_XYZF_statefile(): ...@@ -114,7 +116,11 @@ def test_process_XYZF_statefile():
Uses statefile to generate AdjustedMatrix Uses statefile to generate AdjustedMatrix
""" """
# load adjusted data transform matrix and pier correction # load adjusted data transform matrix and pier correction
a = AdjustedAlgorithm(statefile="etc/adjusted/adjbou_state_.json") a = AdjustedAlgorithm(
statefile="etc/adjusted/adjbou_state_.json",
inchannels=["H", "E", "Z", "F"],
outchannels=["X", "Y", "Z", "F"],
)
# load boulder Jan 16 files from /etc/ directory # load boulder Jan 16 files from /etc/ directory
with open("etc/adjusted/BOU201601vmin.min") as f: with open("etc/adjusted/BOU201601vmin.min") as f:
...@@ -167,11 +173,12 @@ def test_process_no_statefile(): ...@@ -167,11 +173,12 @@ def test_process_no_statefile():
Uses default AdjustedMatrix with identity transform Uses default AdjustedMatrix with identity transform
""" """
# initialize adjusted algorithm with no statefile # initialize adjusted algorithm with no statefile
a = AdjustedAlgorithm() a = AdjustedAlgorithm(inchannels=["H", "E", "Z", "F"])
# load boulder Jan 16 files from /etc/ directory # load boulder Jan 16 files from /etc/ directory
with open("etc/adjusted/BOU201601vmin.min") as f: with open("etc/adjusted/BOU201601vmin.min") as f:
raw = i2.IAGA2002Factory().parse_string(f.read()) raw = i2.IAGA2002Factory().parse_string(f.read())
# process hezf (raw) channels with identity transform # process hezf (raw) channels with identity transform
print(a.matrix)
adjusted = a.process(raw) adjusted = a.process(raw)
for i in range(len(adjusted)): for i in range(len(adjusted)):
assert_array_equal(adjusted[i].data, raw[i].data) assert_array_equal(adjusted[i].data, raw[i].data)
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