-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #120 from nyx-space/33-high-fidelity-rotation-info…
…rmation-binary-pck-conversion Add rotation computation using planetary data and PCK/BPC files
- Loading branch information
Showing
81 changed files
with
8,356 additions
and
798 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
|
||
# Summary | ||
|
||
**Summarize the proposed changes** | ||
|
||
## Architectural Changes | ||
|
||
<!-- List any architectural changes made in this pull request, including any changes to the directory structure, file organization, or dependencies. --> | ||
|
||
No change | ||
|
||
## New Features | ||
|
||
<!-- List any new features added in this pull request, including any new tools or functionality. --> | ||
|
||
No change | ||
|
||
## Improvements | ||
|
||
<!-- List any improvements made in this pull request, including any performance optimizations, bug fixes, or other enhancements. --> | ||
|
||
No change | ||
|
||
## Bug Fixes | ||
|
||
<!-- List any bug fixes made in this pull request, including any issues that were resolved. --> | ||
|
||
No change | ||
|
||
## Testing and validation | ||
|
||
<!-- Please provide information on how the changes in this pull request were tested, including any new tests that were added or existing tests that were modified. --> | ||
|
||
**Detail the changes in tests, including new tests and validations** | ||
|
||
## Documentation | ||
|
||
<!-- Detail documentation changes if this pull request primarily deals with documentation. --> | ||
|
||
This PR does not primarily deal with documentation changes. | ||
|
||
<!-- Thank you for contributing to ANISE! --> |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "cargo", | ||
"command": "test", | ||
"args": [ | ||
"validate_bpc_", | ||
"--", | ||
"--nocapture", | ||
"--include-ignored", | ||
"--test-threads", | ||
"1", | ||
], | ||
"problemMatcher": [ | ||
"$rustc" | ||
], | ||
"group": "none", | ||
"label": "ANISE: BPC validation" | ||
}, | ||
{ | ||
"type": "cargo", | ||
"command": "test", | ||
"args": [ | ||
"validate_hermite_type13_", | ||
"--features", | ||
"spkezr_validation", | ||
"--release", | ||
"--", | ||
"--nocapture", | ||
"--include-ignored", | ||
"--test-threads", | ||
"1", | ||
], | ||
"problemMatcher": [ | ||
"$rustc" | ||
], | ||
"group": "none", | ||
"label": "ANISE: SPK Hermite validation" | ||
}, | ||
{ | ||
"type": "cargo", | ||
"command": "test", | ||
"args": [ | ||
"validate_jplde", | ||
"--features", | ||
"spkezr_validation", | ||
"--release", | ||
"--", | ||
"--nocapture", | ||
"--include-ignored", | ||
"--test-threads", | ||
"1", | ||
], | ||
"problemMatcher": [ | ||
"$rustc" | ||
], | ||
"group": "none", | ||
"label": "ANISE: SPK Chebyshev validation" | ||
} | ||
] | ||
} |
This file contains 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
Oops, something went wrong.