-
Notifications
You must be signed in to change notification settings - Fork 8
Vectorize row-wise applies #234
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
e24bc88
b94bc40
d57a8c8
2c2f36c
78d1313
8956d60
c65ef4a
326cf63
bbcd9f9
235deaf
1497467
05606af
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,7 +11,7 @@ | |
| from prx.precise_corrections.sp3 import evaluate as sp3_evaluate | ||
| from prx.rinex_nav import evaluate as rinex_nav_evaluate | ||
| from prx import constants, converters | ||
| from prx.util import week_and_seconds_2_timedelta | ||
| from prx.util import week_and_seconds_2_timedelta, disk_cache | ||
| import shutil | ||
| import pytest | ||
| import itertools | ||
|
|
@@ -108,6 +108,7 @@ def input_for_test_2023(tmp_path_factory): | |
|
|
||
| def test_parse_nav_file(input_for_test): | ||
| path_to_rnx3_nav_file = converters.anything_to_rinex_3(input_for_test["nav"]) | ||
| disk_cache.clear() | ||
|
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was not actually calling the parser if the nav file was cached. |
||
| df = parse_rinex_nav_file(path_to_rnx3_nav_file) | ||
| assert not df.empty | ||
|
|
||
|
|
||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have a
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. good call, done! |
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function is actually only ever called with a timescale string, so removed the code for handling Series of timescales.