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
edc88755
Commit
edc88755
authored
10 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
Improved tile loading class diagram.
parent
7bb133a4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
design/dem-loading-class-diagram.puml
+25
-10
25 additions, 10 deletions
design/dem-loading-class-diagram.puml
with
25 additions
and
10 deletions
design/dem-loading-class-diagram.puml
+
25
−
10
View file @
edc88755
...
@@ -35,30 +35,45 @@
...
@@ -35,30 +35,45 @@
interface TileUpdater {
interface TileUpdater {
+updateTile(φ, λ, UpdatableTile)
+updateTile(φ, λ, UpdatableTile)
}
}
Updat
ableTile <-- TileUpdater
: updates
Tile
Updat
er --> UpdatableTile
: updates
}
}
package raster #DDEBD8 {
package raster #DDEBD8 {
interface Tile
class SpecializedTile
interface "TileFactory<T extends Tile>" as TileFactory_T_ {
interface "TileFactory<T extends Tile>" as TileFactory_T_ {
+T createTile()
+T createTile()
}
}
class "TilesCache<T extends Tile>" as TilesCache_T_ {
class "TilesCache<T extends Tile>" as TilesCache_T_ {
+ T getTile(φ, λ)
+ T getTile(φ, λ)
}
}
Tile --|> UpdatableTile
interface Tile {
Tile <|-- SpecializedTile
+ double interpolateElevation(φ, λ)
SpecializedTile "*" <--o "1" TilesCache_T_
}
TileUpdater "1" <--o "1" TilesCache_T_ : triggers
UpdatableTile <|.. Tile
TileFactory_T_ "1" <--o "1" TilesCache_T_ : triggers
Tile <|-- SimpleTile
TileFactory_T_ --> SpecializedTile : creates
TilesCache_T_ "1" o--> "*" Tile
TilesCache_T_ "1" o--> "1" TileUpdater : triggers
TilesCache_T_ "1" o--> "1" TileFactory_T_ : triggers
}
package intersection.duvenhage #DDEBD8 {
TileFactory_T_ <|-- MinMaxTreeTileFactory
SimpleTile <|-- MinMaxTreeTile
MinMaxTreeTileFactory -left-> MinMaxTreeTile : creates
note left
tile extended with Duvenhage
specific min/max kd-tree
end note
}
}
}
}
package specific.interface #ECEBD8 {
package mission.specific #C4D2C5 {
class MissionSpecificDEM #D5E0D5/E2EBE2
TileUpdater <|-- MissionSpecificDEM
TileUpdater <|-- MissionSpecificDEM
note top #E2EBE2
user provides DEM loading
by implementing TileUpdater
end note
}
}
@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