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
c88d305b
Commit
c88d305b
authored
3 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
Updated Rugged to latests official Orekit version.
parent
c153976c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+1
-1
1 addition, 1 deletion
pom.xml
src/tutorials/java/fr/cs/examples/refiningPleiades/models/OrbitModel.java
+12
-12
12 additions, 12 deletions
...va/fr/cs/examples/refiningPleiades/models/OrbitModel.java
with
13 additions
and
13 deletions
pom.xml
+
1
−
1
View file @
c88d305b
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
<!-- COTS version -->
<!-- COTS version -->
<rugged.orekit.version>
11.0.
1
</rugged.orekit.version>
<rugged.orekit.version>
11.0.
2
</rugged.orekit.version>
<rugged.junit.version>
4.13.2
</rugged.junit.version>
<rugged.junit.version>
4.13.2
</rugged.junit.version>
<!-- Compilers and Tools version -->
<!-- Compilers and Tools version -->
...
...
This diff is collapsed.
Click to expand it.
src/tutorials/java/fr/cs/examples/refiningPleiades/models/OrbitModel.java
+
12
−
12
View file @
c88d305b
...
@@ -248,12 +248,12 @@ public class OrbitModel {
...
@@ -248,12 +248,12 @@ public class OrbitModel {
propagator
.
propagate
(
minDate
);
propagator
.
propagate
(
minDate
);
final
List
<
TimeStampedPVCoordinates
>
list
=
new
ArrayList
<
TimeStampedPVCoordinates
>();
final
List
<
TimeStampedPVCoordinates
>
list
=
new
ArrayList
<
TimeStampedPVCoordinates
>();
propagator
.
s
etM
asterMode
(
step
,
propagator
.
g
etM
ultiplexer
().
add
(
step
,
(
currentState
,
isLast
)
->
currentState
->
list
.
add
(
new
TimeStampedPVCoordinates
(
currentState
.
getDate
(),
list
.
add
(
new
TimeStampedPVCoordinates
(
currentState
.
getDate
(),
currentState
.
getPVCoordinates
().
getPosition
(),
currentState
.
getPVCoordinates
().
getPosition
(),
currentState
.
getPVCoordinates
().
getVelocity
(),
currentState
.
getPVCoordinates
().
getVelocity
(),
Vector3D
.
ZERO
)));
Vector3D
.
ZERO
)));
propagator
.
propagate
(
maxDate
);
propagator
.
propagate
(
maxDate
);
return
list
;
return
list
;
...
@@ -269,12 +269,12 @@ public class OrbitModel {
...
@@ -269,12 +269,12 @@ public class OrbitModel {
propagator
.
setAttitudeProvider
(
createAttitudeProvider
(
earth
,
orbit
));
propagator
.
setAttitudeProvider
(
createAttitudeProvider
(
earth
,
orbit
));
propagator
.
propagate
(
minDate
);
propagator
.
propagate
(
minDate
);
final
List
<
TimeStampedAngularCoordinates
>
list
=
new
ArrayList
<>();
final
List
<
TimeStampedAngularCoordinates
>
list
=
new
ArrayList
<>();
propagator
.
s
etM
asterMode
(
step
,
propagator
.
g
etM
ultiplexer
().
add
(
step
,
(
currentState
,
isLast
)
->
currentState
->
list
.
add
(
new
TimeStampedAngularCoordinates
(
currentState
.
getDate
(),
list
.
add
(
new
TimeStampedAngularCoordinates
(
currentState
.
getDate
(),
currentState
.
getAttitude
().
getRotation
(),
currentState
.
getAttitude
().
getRotation
(),
Vector3D
.
ZERO
,
Vector3D
.
ZERO
,
Vector3D
.
ZERO
)));
Vector3D
.
ZERO
)));
propagator
.
propagate
(
maxDate
);
propagator
.
propagate
(
maxDate
);
return
list
;
return
list
;
...
...
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