Skip to content
Snippets Groups Projects
Commit 47dcc699 authored by Taya Snijder's avatar Taya Snijder
Browse files

ready for testing

parent 2c912484
No related branches found
No related tags found
1 merge request!229Resolve L2SS-554 "Delay pointing unit tests"
...@@ -22,10 +22,6 @@ class TestAttributeTypes(base.TestCase): ...@@ -22,10 +22,6 @@ class TestAttributeTypes(base.TestCase):
d = delay_calculator(reference_itrf) d = delay_calculator(reference_itrf)
def test_set_measure_time(self): def test_set_measure_time(self):
"""
"""
# # create a frame tied to the reference position # # create a frame tied to the reference position
reference_itrf = [3826577.066, 461022.948, 5064892.786] # CS002LBA, in ITRF2005 epoch 2012.5 reference_itrf = [3826577.066, 461022.948, 5064892.786] # CS002LBA, in ITRF2005 epoch 2012.5
d = delay_calculator(reference_itrf) d = delay_calculator(reference_itrf)
...@@ -35,25 +31,6 @@ class TestAttributeTypes(base.TestCase): ...@@ -35,25 +31,6 @@ class TestAttributeTypes(base.TestCase):
d.set_measure_time(timestamp) d.set_measure_time(timestamp)
def test_azul(self):
# # create a frame tied to the reference position
reference_itrf = [3826577.066, 461022.948, 5064892.786] # CS002LBA, in ITRF2005 epoch 2012.5
d = delay_calculator(reference_itrf)
# # set the timestamp to solve for
timestamp = datetime.datetime(2021, 1, 1, 0, 0, 5)
d.set_measure_time(timestamp)
# compute the delays for an antennas w.r.t. the reference position
antenna_itrf = [[3826923.546, 460915.441, 5064643.489]] # CS001LBA, in ITRF2005 epoch 2012.5
# # obtain the direction vector for a specific pointing
direction = "AZUL", "0deg", "0deg"
# calculate the delays based on the set reference position, the set time and now the set direction and antenna positions.
delays = d.convert(direction, antenna_itrf)
def test_sun(self): def test_sun(self):
# # create a frame tied to the reference position # # create a frame tied to the reference position
reference_itrf = [3826577.066, 461022.948, 5064892.786] # CS002LBA, in ITRF2005 epoch 2012.5 reference_itrf = [3826577.066, 461022.948, 5064892.786] # CS002LBA, in ITRF2005 epoch 2012.5
...@@ -79,7 +56,7 @@ class TestAttributeTypes(base.TestCase): ...@@ -79,7 +56,7 @@ class TestAttributeTypes(base.TestCase):
print(f"time: {i:2}:28,\tdirection: {dir}") print(f"time: {i:2}:28,\tdirection: {dir}")
self.assertTrue() self.assertTrue(0.98 <= sqrt(pow(dir[0],2) + pow(dir[1],2) + pow(dir[2],2)) <= 1.02)
def test_identical_location(self): def test_identical_location(self):
# # create a frame tied to the reference position # # create a frame tied to the reference position
......
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