Skip to content

Commit ae094df

Browse files
committed
test positioning
1 parent 6bdcf74 commit ae094df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_positioning.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def run_station_position(self, length):
3333
copyfile(os.path.join(examples_directory, 'cors_station_positions'), os.path.join(cache_directory, 'cors_station_positions'))
3434

3535
station_name = 'sc01'
36-
time = GPSTime.from_datetime(datetime(2020, 1, 11))
36+
time = GPSTime.from_datetime(datetime(2022, 1, 11))
3737
slac_rinex_obs_file = download_cors_station(time, station_name, dog.cache_dir)
3838
obs_data = RINEXFile(slac_rinex_obs_file)
3939
sc01_exact_position = get_station_position('sc01')
@@ -58,7 +58,7 @@ def run_station_position(self, length):
5858
ests = np.array(ests)
5959

6060
mean_fix = np.mean(ests[:, :3], axis=0)
61-
np.testing.assert_allclose(mean_fix, sc01_exact_position, rtol=0, atol=1)
61+
np.testing.assert_allclose(mean_fix, sc01_exact_position, rtol=0, atol=2)
6262

6363

6464
if __name__ == "__main__":

0 commit comments

Comments
 (0)