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
dd7086c5
Commit
dd7086c5
authored
11 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
Work In Progress on duvenhage algorithm.
parent
3d91cec1
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
rugged-core/src/main/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithm.java
+34
-14
34 additions, 14 deletions
.../org/orekit/rugged/core/duvenhage/DuvenhageAlgorithm.java
with
34 additions
and
14 deletions
rugged-core/src/main/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithm.java
+
34
−
14
View file @
dd7086c5
...
@@ -100,27 +100,47 @@ public class DuvenhageAlgorithm implements IntersectionAlgorithm {
...
@@ -100,27 +100,47 @@ public class DuvenhageAlgorithm implements IntersectionAlgorithm {
// find where line-of-sight exit tile
// find where line-of-sight exit tile
final
LimitPoint
exit
=
findExit
(
tile
,
ellipsoid
,
position
,
los
);
final
LimitPoint
exit
=
findExit
(
tile
,
ellipsoid
,
position
,
los
);
final
Deque
<
GeodeticPoint
>
splitPointsQueue
=
new
ArrayDeque
<
GeodeticPoint
>();
final
Deque
<
GeodeticPoint
>
splitPointsQueue
=
new
ArrayDeque
<
GeodeticPoint
>();
splitPointsQueue
.
push
(
exit
.
getPoint
());
splitPointsQueue
.
addFirst
(
exit
.
getPoint
());
while
(!
splitPointsQueue
.
isEmpty
())
{
while
(!
splitPointsQueue
.
isEmpty
())
{
final
GeodeticPoint
next
=
splitPointsQueue
.
pop
();
final
GeodeticPoint
next
=
splitPointsQueue
.
removeFirst
();
final
int
nextLatIndex
=
tile
.
getLatitudeIndex
(
next
.
getLatitude
());
final
int
nextLatIndex
=
tile
.
getLatitudeIndex
(
next
.
getLatitude
());
final
int
nextLonIndex
=
tile
.
getLontitudeIndex
(
next
.
getLongitude
());
final
int
nextLonIndex
=
tile
.
getLontitudeIndex
(
next
.
getLongitude
());
if
(
currentLatIndex
==
nextLatIndex
&&
currentLonIndex
==
nextLonIndex
)
{
// we have narrowed the search down to a single Digital Elevation Model pixel
if
(
next
.
getAltitude
()
<=
tile
.
getElevationAtIndices
(
nextLatIndex
,
nextLonIndex
)
||
next
.
getAltitude
()
<=
tile
.
getElevationAtIndices
(
nextLatIndex
,
nextLonIndex
+
1
)
||
next
.
getAltitude
()
<=
tile
.
getElevationAtIndices
(
nextLatIndex
+
1
,
nextLonIndex
)
||
next
.
getAltitude
()
<=
tile
.
getElevationAtIndices
(
nextLatIndex
+
1
,
nextLonIndex
+
1
))
{
// TODO: compute intersection
throw
RuggedException
.
createInternalError
(
null
);
}
else
{
// no intersection on this pixel, we can proceed to next part of the line-of-sight
current
=
next
;
}
// find the largest level in the min/max kd-tree were entry and exit share a sub-tile
int
level
=
tile
.
getMergeLevel
(
currentLatIndex
,
currentLonIndex
,
nextLatIndex
,
nextLonIndex
);
if
(
level
<
0
)
{
// TODO: push intermediate points at sub-tiles boundaries on the queue
throw
RuggedException
.
createInternalError
(
null
);
}
if
(
next
.
getAltitude
()
>=
tile
.
getMaxElevation
(
nextLatIndex
,
nextLonIndex
,
level
))
{
// the line segment is fully above Digital Elevation Model
// we can safely reject it and proceed to next part of the line-of-sight
current
=
next
;
}
else
{
}
else
{
// TODO: split line-of-sight
// find the largest level in the min/max kd-tree at which entry and exit share a sub-tile
int
level
=
tile
.
getMergeLevel
(
currentLatIndex
,
currentLonIndex
,
nextLatIndex
,
nextLonIndex
);
if
(
level
<
0
)
{
// TODO: push intermediate points at sub-tiles boundaries on the queue
throw
RuggedException
.
createInternalError
(
null
);
}
else
{
if
(
next
.
getAltitude
()
>=
tile
.
getMaxElevation
(
nextLatIndex
,
nextLonIndex
,
level
))
{
// the line-of-sight segment is fully above Digital Elevation Model
// we can safely reject it and proceed to next part of the line-of-sight
current
=
next
;
}
else
{
// the line-of-sight segment has at least some undecided parts which may
// intersect the Digital Elevation Model, we need to refine the
// search by using a finer-grained level in the min/max kd-tree
// TODO: split line-of-sight
}
}
}
}
}
}
...
...
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