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
c2ddfe78
Commit
c2ddfe78
authored
10 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
Finalized direct localization diagrams.
parent
9fe075cd
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
design/direct-localization-class-diagram.puml
+2
-2
2 additions, 2 deletions
design/direct-localization-class-diagram.puml
design/direct-localization-sequence-diagram.puml
+50
-42
50 additions, 42 deletions
design/direct-localization-sequence-diagram.puml
with
52 additions
and
44 deletions
design/direct-localization-class-diagram.puml
+
2
−
2
View file @
c2ddfe78
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
+intersection(ellipsoid, position, los)
+intersection(ellipsoid, position, los)
+refineIntersection(ellipsoid, position, los, closeGuess)
+refineIntersection(ellipsoid, position, los, closeGuess)
}
}
Tile <-- IntersectionAlgorithm :
compute elevation
Tile <-- IntersectionAlgorithm :
evaluate DEM
}
}
package utils #DDEBD8 {
package utils #DDEBD8 {
...
@@ -51,7 +51,7 @@
...
@@ -51,7 +51,7 @@
+pointOnGround(position, los)
+pointOnGround(position, los)
}
}
class SpacecraftToObservedBody
class SpacecraftToObservedBody
IntersectionAlgorithm --> ExtendedEllipsoid :
find DEM tiles boundarie
s
IntersectionAlgorithm --> ExtendedEllipsoid :
compute grid points crossing
s
}
}
package api #DDEBD8 {
package api #DDEBD8 {
...
...
This diff is collapsed.
Click to expand it.
design/direct-localization-sequence-diagram.puml
+
50
−
42
View file @
c2ddfe78
...
@@ -31,53 +31,61 @@
...
@@ -31,53 +31,61 @@
hide footbox
hide footbox
participant "Application" as A
participant "UserMain" as A
participant "Interface" as I
participant "Rugged" as R
participant "Rugged" as R
participant "Algorithm" as G
participant "LineSensor" as LS
participant "Orekit" as O
participant "SpacecraftToObservedBody" as S
participant "ExtendedEllipsoid" as E
participant "IntersectionAlgorithm" as G
participant "Tile" as T
activate A
activate A
A -> I : directLocalization(name, number)
A -> R : directLocalization(name, number)
activate I
activate R
I -> R : directLocalization(name, number)
R -> LS : apply time stamping model
R -> S : get transforms at line date
R -> R : loop over line pixels pₖ
activate R
activate R
R -> R : apply time stamping model
R -> R : fix aberration of light
R -> R : apply combined transform provider at date
R -> E : approximate point on ground
R -> R : loop over line pixels pₖ
R -> R : fix speed of light delay in transforms
activate R
R -> G : intersection(ellipsoid, line-of-sight)
R -> O : intersection(ellipsoid, line-of-sight)
activate G
R -> R : fix speed of light delay in transforms
G -> E : grid points crossings
activate R
G -> T : elevation(φₖ, λₖ)
deactivate R
activate T
R -> G : intersection(ellipsoid, line-of-sight)
T -> A : DEM callback
activate G
A --> T : DEM raw data cell
G -> O : conversions
T --> G : h(φₖ, λₖ)
G -> R : elevation(φₖ, λₖ)
deactivate T
activate R
G -> E : grid points crossings
R -> I : DEM callback
G -> T : elevation(φₖ, λₖ)
I --> R : DEM raw data cell
activate T
R --> G : h(φₖ, λₖ)
T --> G : h(φₖ, λₖ)
deactivate R
deactivate T
G -> O : conversions
G -> E : grid points crossings
G -> R : elevation(φₖ, λₖ)
G -> T : elevation(φₖ, λₖ)
activate R
activate T
R --> G : h(φₖ, λₖ)
T --> G : h(φₖ, λₖ)
deactivate R
deactivate T
G -> O : conversions
G -> T : pixel intersection(los)
G -> R : elevation(φₖ, λₖ)
activate T
activate R
T --> G : φₖ, λₖ, hₖ
R --> G : h(φₖ, λₖ)
deactivate T
deactivate R
G --> R : φₖ, λₖ, hₖ
G -> O : conversions
deactivate G
G --> R : φₖ, λₖ, hₖ
R -> R : refine speed of light delay in transforms
deactivate G
R -> G : refine intersection(ellipsoid, line-of-sight)
R --> R : list(φₖ, λₖ, hₖ)
activate G
deactivate R
G -> T : refine pixel intersection(los)
R --> I : list(φₖ, λₖ, hₖ)
activate T
T --> G : φₖ, λₖ, hₖ
deactivate T
deactivate G
R --> R : array(φₖ, λₖ, hₖ)
deactivate R
deactivate R
I
--> A :
list
(φₖ, λₖ, hₖ)
R
--> A :
array
(φₖ, λₖ, hₖ)
deactivate
I
deactivate
R
deactivate A
deactivate A
@enduml
@enduml
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