Skip to content
Snippets Groups Projects
Commit dd7086c5 authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Work In Progress on duvenhage algorithm.

parent 3d91cec1
No related branches found
No related tags found
No related merge requests found
...@@ -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
}
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment