-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor!: rename plural to singular (#200)
* refactor!: rename from plural to singular to align with the rest of the repo * refactor!: finish refactoring remaining * chore: suggestions to propagate the ephemerides->ephemeris change (#201) * refactor: rename moar * refactor: update test * Apply suggestions from code review Co-authored-by: kyle-cochran <kyle.ray.cochran@gmail.com> * refactor: suggestions for naming MR (#202) * refactor: suggestions for naming MR * fix: hardcoded IERS remote path must reflect what is in OSTk Data * fix: last failing test --------- Co-authored-by: kyle-cochran <kyle.ray.cochran@gmail.com>
- Loading branch information
1 parent
977dfe6
commit 200528d
Showing
328 changed files
with
1,245 additions
and
1,275 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
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
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
4 changes: 2 additions & 2 deletions
4
...Py/Coordinate/Frame/Providers/Dynamic.cpp → ...sPy/Coordinate/Frame/Provider/Dynamic.cpp
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
8 changes: 4 additions & 4 deletions
8
...sicsPy/Coordinate/Frame/Providers/IAU.cpp → ...ysicsPy/Coordinate/Frame/Provider/IAU.cpp
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
/// Apache License 2.0 | ||
|
||
#include <OpenSpaceToolkitPhysicsPy/Coordinate/Frame/Providers/IAU/Theory.cpp> | ||
#include <OpenSpaceToolkitPhysicsPy/Coordinate/Frame/Provider/IAU/Theory.cpp> | ||
|
||
inline void OpenSpaceToolkitPhysicsPy_Coordinate_Frame_Providers_IAU(pybind11::module& aModule) | ||
inline void OpenSpaceToolkitPhysicsPy_Coordinate_Frame_Provider_IAU(pybind11::module& aModule) | ||
{ | ||
// Create "IAU" python submodule | ||
auto IAU = aModule.def_submodule("iau"); | ||
|
||
// Add __path__ attribute for "IAU" submodule | ||
IAU.attr("__path__") = "ostk.physics.coordinate.frame.providers.iau"; | ||
IAU.attr("__path__") = "ostk.physics.coordinate.frame.provider.iau"; | ||
|
||
// Add objects to python "IAU" submodules | ||
OpenSpaceToolkitPhysicsPy_Coordinate_Frame_Providers_IAU_Theory(IAU); | ||
OpenSpaceToolkitPhysicsPy_Coordinate_Frame_Provider_IAU_Theory(IAU); | ||
} |
6 changes: 3 additions & 3 deletions
6
...Coordinate/Frame/Providers/IAU/Theory.cpp → .../Coordinate/Frame/Provider/IAU/Theory.cpp
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
19 changes: 19 additions & 0 deletions
19
bindings/python/src/OpenSpaceToolkitPhysicsPy/Coordinate/Frame/Provider/IERS.cpp
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,19 @@ | ||
/// Apache License 2.0 | ||
|
||
#include <OpenSpaceToolkitPhysicsPy/Coordinate/Frame/Provider/IERS/BulletinA.cpp> | ||
#include <OpenSpaceToolkitPhysicsPy/Coordinate/Frame/Provider/IERS/Finals2000A.cpp> | ||
#include <OpenSpaceToolkitPhysicsPy/Coordinate/Frame/Provider/IERS/Manager.cpp> | ||
|
||
inline void OpenSpaceToolkitPhysicsPy_Coordinate_Frame_Provider_IERS(pybind11::module& aModule) | ||
{ | ||
// Create "iers" python submodule | ||
auto iers = aModule.def_submodule("iers"); | ||
|
||
// Add __path__ attribute for "iers" submodule | ||
iers.attr("__path__") = "ostk.physics.coordinate.frame.provider.iers"; | ||
|
||
// Add objects to python "iers" submodules | ||
OpenSpaceToolkitPhysicsPy_Coordinate_Frame_Provider_IERS_Manager(iers); | ||
OpenSpaceToolkitPhysicsPy_Coordinate_Frame_Provider_IERS_BulletinA(iers); | ||
OpenSpaceToolkitPhysicsPy_Coordinate_Frame_Provider_IERS_Finals2000A(iers); | ||
} |
4 changes: 2 additions & 2 deletions
4
...dinate/Frame/Providers/IERS/BulletinA.cpp → ...rdinate/Frame/Provider/IERS/BulletinA.cpp
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
4 changes: 2 additions & 2 deletions
4
...nate/Frame/Providers/IERS/Finals2000A.cpp → ...inate/Frame/Provider/IERS/Finals2000A.cpp
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
4 changes: 2 additions & 2 deletions
4
...ordinate/Frame/Providers/IERS/Manager.cpp → ...oordinate/Frame/Provider/IERS/Manager.cpp
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
4 changes: 2 additions & 2 deletions
4
...sPy/Coordinate/Frame/Providers/Static.cpp → ...csPy/Coordinate/Frame/Provider/Static.cpp
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
21 changes: 0 additions & 21 deletions
21
bindings/python/src/OpenSpaceToolkitPhysicsPy/Coordinate/Frame/Providers.cpp
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
bindings/python/src/OpenSpaceToolkitPhysicsPy/Coordinate/Frame/Providers/IERS.cpp
This file was deleted.
Oops, something went wrong.
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
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
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
Oops, something went wrong.