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
bbcd65e5
Commit
bbcd65e5
authored
6 years ago
by
Guylaine Prat
Browse files
Options
Downloads
Patches
Plain Diff
Enable null in dump of direct or inverse location results
parent
742d1f9c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/org/orekit/rugged/errors/Dump.java
+4
-0
4 additions, 0 deletions
src/main/java/org/orekit/rugged/errors/Dump.java
src/main/java/org/orekit/rugged/errors/DumpReplayer.java
+33
-12
33 additions, 12 deletions
src/main/java/org/orekit/rugged/errors/DumpReplayer.java
with
37 additions
and
12 deletions
src/main/java/org/orekit/rugged/errors/Dump.java
+
4
−
0
View file @
bbcd65e5
...
...
@@ -170,6 +170,8 @@ class Dump {
writer
.
format
(
Locale
.
US
,
"direct location result: latitude %22.15e longitude %22.15e elevation %22.15e%n"
,
gp
.
getLatitude
(),
gp
.
getLongitude
(),
gp
.
getAltitude
());
}
else
{
writer
.
format
(
Locale
.
US
,
"direct location result: NULL"
);
}
}
...
...
@@ -203,6 +205,8 @@ class Dump {
writer
.
format
(
Locale
.
US
,
"inverse location result: lineNumber %22.15e pixelNumber %22.15e%n"
,
pixel
.
getLineNumber
(),
pixel
.
getPixelNumber
());
}
else
{
writer
.
format
(
Locale
.
US
,
"inverse location result: NULL"
);
}
}
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/orekit/rugged/errors/DumpReplayer.java
+
33
−
12
View file @
bbcd65e5
...
...
@@ -221,6 +221,9 @@ public class DumpReplayer {
/** Keyword for target direction. */
private
static
final
String
TARGET_DIRECTION
=
"targetDirection"
;
/** Keyword for null result. */
private
static
final
String
NULL_RESULT
=
"NULL"
;
/** Constant elevation for constant elevation algorithm. */
private
double
constantElevation
;
...
...
@@ -595,15 +598,24 @@ public class DumpReplayer {
/** {@inheritDoc} */
@Override
public
void
parse
(
final
int
l
,
final
File
file
,
final
String
line
,
final
String
[]
fields
,
final
DumpReplayer
global
)
{
if
(
fields
.
length
<
6
||
!
fields
[
0
].
equals
(
LATITUDE
)
||
!
fields
[
2
].
equals
(
LONGITUDE
)
||
!
fields
[
4
].
equals
(
ELEVATION
))
{
if
(
fields
.
length
==
1
)
{
if
(
fields
[
0
].
equals
(
NULL_RESULT
))
{
final
GeodeticPoint
gp
=
null
;
final
DumpedCall
last
=
global
.
calls
.
get
(
global
.
calls
.
size
()
-
1
);
last
.
expected
=
gp
;
}
else
{
throw
new
RuggedException
(
RuggedMessages
.
CANNOT_PARSE_LINE
,
l
,
file
,
line
);
}
}
else
if
(
fields
.
length
<
6
||
!
fields
[
0
].
equals
(
LATITUDE
)
||
!
fields
[
2
].
equals
(
LONGITUDE
)
||
!
fields
[
4
].
equals
(
ELEVATION
))
{
throw
new
RuggedException
(
RuggedMessages
.
CANNOT_PARSE_LINE
,
l
,
file
,
line
);
}
else
{
final
GeodeticPoint
gp
=
new
GeodeticPoint
(
Double
.
parseDouble
(
fields
[
1
]),
Double
.
parseDouble
(
fields
[
3
]),
Double
.
parseDouble
(
fields
[
5
]));
final
DumpedCall
last
=
global
.
calls
.
get
(
global
.
calls
.
size
()
-
1
);
last
.
expected
=
gp
;
}
final
GeodeticPoint
gp
=
new
GeodeticPoint
(
Double
.
parseDouble
(
fields
[
1
]),
Double
.
parseDouble
(
fields
[
3
]),
Double
.
parseDouble
(
fields
[
5
]));
final
DumpedCall
last
=
global
.
calls
.
get
(
global
.
calls
.
size
()
-
1
);
last
.
expected
=
gp
;
}
},
...
...
@@ -806,13 +818,22 @@ public class DumpReplayer {
/** {@inheritDoc} */
@Override
public
void
parse
(
final
int
l
,
final
File
file
,
final
String
line
,
final
String
[]
fields
,
final
DumpReplayer
global
)
{
if
(
fields
.
length
<
4
||
!
fields
[
0
].
equals
(
LINE_NUMBER
)
||
!
fields
[
2
].
equals
(
PIXEL_NUMBER
))
{
if
(
fields
.
length
==
1
)
{
if
(
fields
[
0
].
equals
(
NULL_RESULT
))
{
final
SensorPixel
sp
=
null
;
final
DumpedCall
last
=
global
.
calls
.
get
(
global
.
calls
.
size
()
-
1
);
last
.
expected
=
sp
;
}
else
{
throw
new
RuggedException
(
RuggedMessages
.
CANNOT_PARSE_LINE
,
l
,
file
,
line
);
}
}
else
if
(
fields
.
length
<
4
||
!
fields
[
0
].
equals
(
LINE_NUMBER
)
||
!
fields
[
2
].
equals
(
PIXEL_NUMBER
))
{
throw
new
RuggedException
(
RuggedMessages
.
CANNOT_PARSE_LINE
,
l
,
file
,
line
);
}
else
{
final
SensorPixel
sp
=
new
SensorPixel
(
Double
.
parseDouble
(
fields
[
1
]),
Double
.
parseDouble
(
fields
[
3
]));
final
DumpedCall
last
=
global
.
calls
.
get
(
global
.
calls
.
size
()
-
1
);
last
.
expected
=
sp
;
}
final
SensorPixel
sp
=
new
SensorPixel
(
Double
.
parseDouble
(
fields
[
1
]),
Double
.
parseDouble
(
fields
[
3
]));
final
DumpedCall
last
=
global
.
calls
.
get
(
global
.
calls
.
size
()
-
1
);
last
.
expected
=
sp
;
}
},
...
...
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