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
8f4b3b04
Commit
8f4b3b04
authored
11 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
Changed private method arguments order for easier understanding.
parent
91da39ce
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
+20
-20
20 additions, 20 deletions
.../org/orekit/rugged/core/duvenhage/DuvenhageAlgorithm.java
with
20 additions
and
20 deletions
rugged-core/src/main/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithm.java
+
20
−
20
View file @
8f4b3b04
...
...
@@ -129,8 +129,8 @@ public class DuvenhageAlgorithm implements IntersectionAlgorithm {
// intersecting the boundary between level 0 sub-tiles
lineOfSightQueue
.
addAll
(
crossingPoints
(
ellipsoid
,
position
,
los
,
tile
,
0
,
nex
tLatIndex
,
nex
tLonIndex
,
curren
tLatIndex
,
curren
tLonIndex
));
curren
tLatIndex
,
curren
tLonIndex
,
nex
tLatIndex
,
nex
tLonIndex
));
}
else
{
if
(
next
.
getAltitude
()
>=
tile
.
getMaxElevation
(
nextLatIndex
,
nextLonIndex
,
level
))
{
// the line-of-sight segment is fully above Digital Elevation Model
...
...
@@ -149,8 +149,8 @@ public class DuvenhageAlgorithm implements IntersectionAlgorithm {
// in the tree
lineOfSightQueue
.
addAll
(
crossingPoints
(
ellipsoid
,
position
,
los
,
tile
,
level
,
nex
tLatIndex
,
nex
tLonIndex
,
curren
tLatIndex
,
curren
tLonIndex
));
curren
tLatIndex
,
curren
tLonIndex
,
nex
tLatIndex
,
nex
tLonIndex
));
// the current point remains the same
...
...
@@ -189,46 +189,46 @@ public class DuvenhageAlgorithm implements IntersectionAlgorithm {
/** Find the crossing points between sub-tiles.
* <p>
* When we go deeper in the min/max kd-tree, we get closer to individual pixels,
* or un-merge the merged sub-tiles. This un-merging implies finding the boundar
y
* or un-merge the merged sub-tiles. This un-merging implies finding the boundar
ies
* between sub-tiles that are merged at level l and not merged at level l+1.
* Th
is
boundar
y
is a
n
iso-latitude if the merge is a row merging and
is an
* iso-longitude if the merge is a column merging.
* Th
ese
boundari
e
s a
re
iso-latitude if the merge is a row
s
merging and
are
* iso-longitude if the merge is a column
s
merging.
* </p>
* @param ellipsoid reference ellipsoid
* @param position pixel position in ellipsoid frame
* @param los pixel line-of-sight in ellipsoid frame
* @param tile Digital Elevation Model tile
* @param level merged level
* @param
nex
tLatitude latitude index of
nex
t point (closer to
Earth
)
* @param
nex
tLongitude longitude index of
nex
t point (closer to
Earth
)
* @param
curren
tLatitude latitude index of
curren
t point (closer to
sat
elli
te
)
* @param
curren
tLongitude longitude index of
curren
t point (closer to
sat
elli
te
)
* @return point corresponding to line-of-sight
crossing the longitude/latitude
*
limit between the un-merged sub-tiles at level-1
* @param
curren
tLatitude latitude index of
curren
t point (closer to
observer
)
* @param
curren
tLongitude longitude index of
curren
t point (closer to
observer
)
* @param
nex
tLatitude latitude index of
nex
t point (closer to elli
psoid
)
* @param
nex
tLongitude longitude index of
nex
t point (closer to elli
psoid
)
* @return point
s
corresponding to line-of-sight
sub-tiles crossings, in
*
<em>reversed</em> line-of-sight order
* @exception RuggedException if intersection point cannot be computed
* @exception OrekitException if intersection point cannot be converted to geodetic coordinates
*/
private
List
<
GeodeticPoint
>
crossingPoints
(
final
ExtendedEllipsoid
ellipsoid
,
final
Vector3D
position
,
final
Vector3D
los
,
final
MinMaxTreeTile
tile
,
final
int
level
,
final
int
nex
tLatitude
,
final
int
nex
tLongitude
,
final
int
curren
tLatitude
,
final
int
curren
tLongitude
)
final
int
curren
tLatitude
,
final
int
curren
tLongitude
,
final
int
nex
tLatitude
,
final
int
nex
tLongitude
)
throws
RuggedException
,
OrekitException
{
final
List
<
GeodeticPoint
>
crossings
=
new
ArrayList
<
GeodeticPoint
>();
if
(
tile
.
isColumnMerging
(
level
+
1
))
{
// sub-tiles at current level come from column merging at deeper level
for
(
final
int
longitudeIndex
:
tile
.
getCrossedBoundaryColumns
(
nex
tLongitude
,
curren
tLongitude
,
level
))
{
for
(
final
int
longitudeIndex
:
tile
.
getCrossedBoundaryColumns
(
curren
tLongitude
,
nex
tLongitude
,
level
+
1
))
{
final
double
crossingLongitude
=
tile
.
getLongitudeAtIndex
(
longitudeIndex
);
final
Vector3D
crossingPoint
=
ellipsoid
.
pointAtLongitude
(
position
,
los
,
crossingLongitude
);
crossings
.
add
(
ellipsoid
.
transform
(
crossingPoint
,
ellipsoid
.
getBodyFrame
(),
null
));
crossings
.
add
(
0
,
ellipsoid
.
transform
(
crossingPoint
,
ellipsoid
.
getBodyFrame
(),
null
));
}
}
else
{
// sub-tiles at current level come from row merging at deeper level
for
(
final
int
latitudeIndex
:
tile
.
getCrossedBoundaryRows
(
nex
tLatitude
,
curren
tLatitude
,
level
))
{
for
(
final
int
latitudeIndex
:
tile
.
getCrossedBoundaryRows
(
curren
tLatitude
,
nex
tLatitude
,
level
+
1
))
{
final
double
crossingLatitude
=
tile
.
getLatitudeAtIndex
(
latitudeIndex
);
final
Vector3D
crossingPoint
=
ellipsoid
.
pointAtLatitude
(
position
,
los
,
crossingLatitude
);
crossings
.
add
(
ellipsoid
.
transform
(
crossingPoint
,
ellipsoid
.
getBodyFrame
(),
null
));
final
Vector3D
crossingPoint
=
ellipsoid
.
pointAtLatitude
(
position
,
los
,
crossingLatitude
);
crossings
.
add
(
0
,
ellipsoid
.
transform
(
crossingPoint
,
ellipsoid
.
getBodyFrame
(),
null
));
}
}
...
...
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