Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Rugged
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Orekit
Rugged
Commits
0375c385
Commit
0375c385
authored
10 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
Added access to transforms at Rugged API level.
parent
6f44b586
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/src/main/java/org/orekit/rugged/api/Rugged.java
+30
-0
30 additions, 0 deletions
core/src/main/java/org/orekit/rugged/api/Rugged.java
with
30 additions
and
0 deletions
core/src/main/java/org/orekit/rugged/api/Rugged.java
+
30
−
0
View file @
0375c385
...
@@ -645,6 +645,36 @@ public class Rugged {
...
@@ -645,6 +645,36 @@ public class Rugged {
}
}
/** Get transform from spacecraft to inertial frame.
* @param date date of the transform
* @return transform from spacecraft to inertial frame
* @exception RuggedException if spacecraft position or attitude cannot be computed at date
*/
public
Transform
getScToInertial
(
final
AbsoluteDate
date
)
throws
RuggedException
{
return
scToBody
.
getScToInertial
(
date
);
}
/** Get transform from inertial frame to observed body frame.
* @param date date of the transform
* @return transform from inertial frame to observed body frame
* @exception RuggedException if frames cannot be computed at date
*/
public
Transform
getInertialToBody
(
final
AbsoluteDate
date
)
throws
RuggedException
{
return
scToBody
.
getInertialToBody
(
date
);
}
/** Get transform from observed body frame to inertial frame.
* @param date date of the transform
* @return transform from observed body frame to inertial frame
* @exception RuggedException if frames cannot be computed at date
*/
public
Transform
getBodyToInertial
(
final
AbsoluteDate
date
)
throws
RuggedException
{
return
scToBody
.
getBodyToInertial
(
date
);
}
/** Get a sensor.
/** Get a sensor.
* @param sensorName sensor name
* @param sensorName sensor name
* @return selected sensor
* @return selected sensor
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment