Conversation
c93bb77 to
b57179a
Compare
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
Coverage Report for CI Build 25672560778Coverage decreased (-1.3%) to 97.793%Details
Uncovered Changes
Coverage RegressionsNo coverage regressions found. Coverage Stats
💛 - Coveralls |
aeae2b8 to
8e16826
Compare
ee70e4d to
6bf2246
Compare
6fe3a89 to
df0d417
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
C99 API
Added
novas_fetch_eop()-- to obtain cubic spline interpolated EOP from IERS for given Julian Date.novas_fetch_eop_unix()-- to obtain cubic spline interpolated EOP from IERS for a given UNIX time.novas_set_eop_url()/novas_get_eop_url()-- to use alternative (e.g. mirrored) URLs for IERS EOP series, or to check what URLs are currently configured.novas_cleanup_eop()-- to free up resources used for obtaining EOP data from IERS.novas_set_auto_fetch_eop()andnovas_is_auto_fetch_eop()-- To control and check whether automatic fetching of EOP values from IERS is allowed if needed.novas_set_leap_list()-- to use a localleap-seconds.listdata file (at least until it's expired).novas_leap_lookup()-- to look up leap seconds for a given UNIX time.Changed
novas_set_time()and related functions, andnovas_make_frame()changed to fetch EOP values from IERS if the arguments for these are NAN and fetching is allowed.C++11 API
Added
EOP::fetch_for_jd(),EOP::fetch_for_mjd(),EOP::fetch_for(), andEOP::fetch_current()methods.Changed
Timeconstructors will fetch EOP as needed (if allowed) ifdUT1is undefined (NAN), and the EOP parameter is now optional as a result.GeodeticObserverare now optional, and invalid EOP does not invalidate the observer so long as automatic fetching of EOP is allowed.Framewill fetch polar offsets from IERS if the geodetic observer does not provide these, and fetching is allowed.